-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
145 lines (145 loc) · 3.51 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint", "import", "typescript-sort-keys"],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"react/react-in-jsx-scope": "off",
"import/no-unresolved": "error",
"sort-imports": [
"warn",
{
"ignoreCase": true,
"ignoreDeclarationSort": true,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"],
"allowSeparatedGroups": true
}
],
"no-console": "warn",
"quotes": ["error", "single"],
"typescript-sort-keys/interface": "warn",
"typescript-sort-keys/string-enum": "warn",
"@typescript-eslint/ban-types": [
"error",
{
"extendDefaults": true,
"types": {
"{}": false
}
}
],
"import/order": [
"warn",
{
"pathGroupsExcludedImportTypes": ["react"],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
},
"groups": ["builtin", "external", ["sibling", "parent", "internal", "index"], "object"],
"pathGroups": [
{
"pattern": "react",
"group": "external",
"position": "before"
},
{
"pattern": "hooks/**",
"group": "internal",
"position": "before"
},
{
"pattern": "./utils",
"group": "internal",
"position": "before"
},
{
"pattern": "./assets",
"group": "internal",
"position": "before"
},
{
"pattern": "./types",
"group": "internal",
"position": "before"
},
{
"pattern": "./styles",
"group": "internal",
"position": "after"
},
{
"pattern": "assets/**",
"group": "internal",
"position": "after"
},
{
"pattern": "pages/**",
"group": "internal",
"position": "after"
},
{
"pattern": "components/**",
"group": "internal",
"position": "before"
},
{
"pattern": "styles/**",
"group": "internal",
"position": "before"
},
{
"pattern": "*.scss",
"group": "internal",
"position": "before"
},
{
"pattern": "*.css",
"group": "internal",
"position": "before"
}
],
"warnOnUnassignedImports": true
}
]
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"rules": {
"@typescript-eslint/explicit-function-return-type": ["error"]
}
}
],
"settings": {
"react": {
"version": "detect"
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": { "node": { "paths": ["./", "./src"] } }
}
}