-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
342 lines (322 loc) · 9.25 KB
/
eslint.config.js
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
const js = require("@eslint/js");
const typescriptPlugin = require("@typescript-eslint/eslint-plugin");
const parser = require("@typescript-eslint/parser");
const importPlugin = require("eslint-plugin-import");
const jestPlugin = require("eslint-plugin-jest");
const a11yPlugin = require("eslint-plugin-jsx-a11y");
const reactPlugin = require("eslint-plugin-react");
const reactHooksPlugin = require("eslint-plugin-react-hooks");
const sonarjsPlugin = require("eslint-plugin-sonarjs");
const globals = require("globals");
function makeMicroMatchPath(path, extensions) {
const dict = {
js: ["js", "cjs", "mjs"],
ts: ["ts", "cts", "mts"],
jsx: ["tsx"],
};
const exts = Array.from(new Set(extensions.map((ext) => dict[ext]).flat()));
const first = exts[0];
if (!first) throw new Error("did not match extensions");
const extensionPattern = exts.length > 1 ? `{${exts.join(",")}}` : first;
return `${path}.${extensionPattern}`;
}
/**
* Base configuration without rules
*/
const eslintBaseConfig = {
ignores: [
".git/**",
"**/artifacts/**",
"**/assets/**",
"**/build/**",
"**/coverage/**",
"**/dist/**",
"**/node_modules/**",
"**/public/**",
"**/static/**",
],
linterOptions: {
reportUnusedDisableDirectives: true,
},
};
/**
* Shared rules between js and ts
*/
const commonJsTsRulesConfig = {
files: [makeMicroMatchPath("src/**/*", ["js", "ts"])],
rules: {
"spaced-comment": ["warn", "always"],
"constructor-super": "error",
"no-console": "error",
"no-restricted-syntax": [
"error",
"ForInStatement",
{
selector: "TSEnumDeclaration",
message:
"In modern TypeScript, you may not need an enum when an object with `as const` could suffice.",
},
],
},
};
/**
* ESLint's recommended rules for js files
*/
const jsRecommendedRulesConfig = {
files: [makeMicroMatchPath("src/**/*", ["js"])],
rules: js.configs.recommended.rules,
};
/**
* Set of strict rules for typescript
*/
const typescriptRulesConfig = {
files: [makeMicroMatchPath("**/*", ["ts", "jsx"])],
plugins: {
"@typescript-eslint": typescriptPlugin,
},
languageOptions: {
parser,
parserOptions: {
ecmaFeatures: { modules: true, jsx: true },
project: "./tsconfig.json",
jsxPragma: null, // for @typescript/eslint-parser
},
globals: globals.browser,
},
rules: {
...typescriptPlugin.configs["eslint-recommended"].rules,
...typescriptPlugin.configs.recommended.rules,
...typescriptPlugin.configs["recommended-requiring-type-checking"].rules,
"@typescript-eslint/prefer-ts-expect-error": "warn",
"@typescript-eslint/unified-signatures": "warn",
"@typescript-eslint/no-dynamic-delete": "warn",
"@typescript-eslint/consistent-type-definitions": ["warn", "type"],
"@typescript-eslint/naming-convention": [
"error",
{
selector: "variable",
types: ["boolean"],
format: ["PascalCase"],
prefix: ["is", "should", "has", "can", "did", "will"],
},
{
selector: "variable",
format: ["camelCase", "UPPER_CASE"],
},
{
selector: "variable",
modifiers: ["destructured"],
format: null,
},
],
"no-implied-eval": "off",
"@typescript-eslint/no-implied-eval": ["error"],
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-expressions": ["error"],
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": ["error"],
"no-invalid-this": "off",
"@typescript-eslint/no-invalid-this": ["error"],
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
"no-return-await": "off",
"@typescript-eslint/return-await": "error",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
args: "all",
ignoreRestSiblings: true,
vars: "all",
argsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
},
],
"@typescript-eslint/no-namespace": [
"error",
{
allowDeclarations: true,
allowDefinitionFiles: true,
},
],
"@typescript-eslint/restrict-template-expressions": [
"error",
{
allowNumber: true,
allowBoolean: true,
},
],
"@typescript-eslint/array-type": "error",
"@typescript-eslint/class-literal-property-style": "error",
"dot-notation": "off",
"@typescript-eslint/dot-notation": "error",
"@typescript-eslint/no-base-to-string": "error",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-invalid-void-type": "error",
"@typescript-eslint/no-meaningless-void-operator": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-non-null-asserted-nullish-coalescing": "error",
"no-throw-literal": "off",
"@typescript-eslint/no-throw-literal": "error",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
"@typescript-eslint/no-unnecessary-type-arguments": "error",
"@typescript-eslint/non-nullable-type-assertion-style": "error",
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/prefer-function-type": "error",
"@typescript-eslint/prefer-includes": "error",
"@typescript-eslint/prefer-nullish-coalescing": "error",
"@typescript-eslint/prefer-optional-chain": "error",
"@typescript-eslint/prefer-reduce-type-parameter": "error",
"@typescript-eslint/prefer-return-this-type": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/switch-exhaustiveness-check": "error",
"@typescript-eslint/no-unnecessary-condition": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/consistent-type-assertions": [
"error",
{
assertionStyle: "as",
objectLiteralTypeAssertions: "never",
},
],
"@typescript-eslint/explicit-function-return-type": [
"error",
{
allowExpressions: true,
allowTypedFunctionExpressions: true,
allowHigherOrderFunctions: true,
allowConciseArrowFunctionExpressionsStartingWithVoid: true,
},
],
},
};
/**
* Set of rules for react, react hooks and jsx
*/
const reactRulesConfig = {
files: [makeMicroMatchPath("**/*", ["ts", "jsx"])],
plugins: {
react: reactPlugin,
"react-hooks": reactHooksPlugin,
},
settings: {
react: {
version: "detect",
},
},
rules: {
...reactPlugin.configs.recommended.rules,
...reactPlugin.configs["jsx-runtime"].rules,
...reactHooksPlugin.configs.recommended.rules,
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"react/display-name": "warn",
},
};
/**
* Set of rules for sonarjs
*/
const sonarjsRulesConfig = {
files: [makeMicroMatchPath("**/*", ["js", "ts", "jsx"])],
plugins: {
sonarjs: sonarjsPlugin,
},
rules: {
...sonarjsPlugin.configs.recommended.rules,
"sonarjs/elseif-without-else": "error",
"sonarjs/no-inverted-boolean-check": "error",
},
};
/**
* Set of rules for import
*/
const importRulesConfig = {
files: [makeMicroMatchPath("**/*", ["js", "ts", "jsx"])],
plugins: {
import: importPlugin,
},
rules: {
...importPlugin.configs.rules,
"import/no-unresolved": "off", // check done by typescript
"import/order": [
"warn",
{
"newlines-between": "always",
alphabetize: { order: "asc", caseInsensitive: true },
},
],
"import/no-default-export": "warn",
},
};
/**
* Set of rules improving user's accessibility
*/
const a11yJsxRulesConfig = {
files: [makeMicroMatchPath("src/**/*", ["jsx"])],
ignores: [makeMicroMatchPath("src/**/*.spec", ["jsx"])],
plugins: {
"jsx-a11y": a11yPlugin,
},
rules: a11yPlugin.configs.recommended.rules,
};
/**
* Override for configuration files in root catalog
*/
const configFilesConfigOverride = {
files: [makeMicroMatchPath("*", ["ts", "js"])],
rules: {
"import/no-default-export": "off",
},
};
/**
* Override for utils file
*/
const utilsConfigOverride = {
files: [makeMicroMatchPath("src/**/utils/**/*", ["ts"])],
rules: {
"@typescript-eslint/no-explicit-any": "off",
},
};
/**
* Override for test files
*/
const specConfigOverride = {
files: [makeMicroMatchPath("src/**/*.spec", ["ts", "jsx"])],
plugins: {
jest: jestPlugin,
},
languageOptions: {
globals: { ...globals.browser, ...globals.jest },
},
rules: {
// has to be disabled in order to use chai ie. `expect().to.be.true`
"@typescript-eslint/no-unused-expressions": "off",
},
};
/**
* Override for TS ambient module files
*/
const ambientModulesConfigOverride = {
files: [makeMicroMatchPath("src/**/*.d", ["ts"])],
rules: {
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-unused-vars": "off",
},
};
const rules = [
a11yJsxRulesConfig,
commonJsTsRulesConfig,
importRulesConfig,
jsRecommendedRulesConfig,
reactRulesConfig,
sonarjsRulesConfig,
typescriptRulesConfig,
];
const overrides = [
ambientModulesConfigOverride,
specConfigOverride,
utilsConfigOverride,
configFilesConfigOverride,
];
module.exports = [eslintBaseConfig].concat(rules).concat(overrides);