-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
.eslintrc.cjs
349 lines (345 loc) · 13.2 KB
/
.eslintrc.cjs
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
343
344
345
346
347
348
349
const path = require('path');
const thisDir = path.resolve(__dirname);
module.exports = {
parser: '@typescript-eslint/parser',
root: true,
extends: [
'eslint:recommended',
'plugin:jsdoc/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:import/typescript',
],
parserOptions: {
ecmaVersion: 2020,
project: path.join(thisDir, 'tsconfig.eslint.json'),
sourceType: 'module',
tsconfigRootDir: thisDir,
extraFileExtensions: ['.cjs']
},
env: {
es6: true,
},
globals: {
MutationObserver: 'readonly',
SharedArrayBuffer: 'readonly',
Atomics: 'readonly',
BigInt: 'readonly',
BigInt64Array: 'readonly',
BigUint64Array: 'readonly',
},
plugins: ['@typescript-eslint', 'import', 'jsdoc'],
reportUnusedDisableDirectives: true,
rules: {
// Opinionated overrides of the default recommended rules:
'@typescript-eslint/indent': 'off', // Disabled until typescript-eslint properly fixes indentation (see https://github.com/typescript-eslint/typescript-eslint/issues/1232) - there are recurring issues and breaking changes, and this rule usually isn't violated due to autoformatting anyway.
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-inferrable-types': 'off', // Turn no-inferrable-types off in order to make the code consistent in its use of type decorations.
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'security/detect-object-injection': 'off',
'no-dupe-class-members': 'off',
// Opinionated non default rules:
'@typescript-eslint/ban-ts-comment': 'warn',
// '@typescript-eslint/explicit-member-accessibility': 'error',
'@typescript-eslint/explicit-member-accessibility': [
'error',
{
overrides: {
constructors: 'no-public',
},
},
],
'@typescript-eslint/await-thenable': 'error',
'@typescript-eslint/adjacent-overload-signatures': 'error',
'@typescript-eslint/array-type': 'error',
'@typescript-eslint/ban-types': [
'error',
{
extendDefaults: false,
types: {
// '{}': 'Avoid using the `{}` type. Prefer a specific lookup type, like `Record<string, unknown>`, or use `object` (lowercase) when referring simply to non-primitives.',
Function:
'Avoid using the `Function` type. Prefer a specific function type, like `() => void`, or use `Constructable` / `Class<TProto, TStatic>` when referring to a constructor function.',
Boolean: { message: 'Use boolean instead', fixWith: 'boolean' },
Number: { message: 'Use number instead', fixWith: 'number' },
String: { message: 'Use string instead', fixWith: 'string' },
Object: {
message: 'Use Record<string, unknown> instead',
fixWith: 'Record<string, unknown>',
},
Symbol: { message: 'Use symbol instead', fixWith: 'symbol' },
},
},
],
// '@typescript-eslint/brace-style': [ 'error', '1tbs', { allowSingleLine: true }, ],
'@typescript-eslint/brace-style': 'off',
'@typescript-eslint/consistent-type-assertions': [
'error',
{ assertionStyle: 'as', objectLiteralTypeAssertions: 'never' },
],
'@typescript-eslint/func-call-spacing': ['error', 'never'],
'@typescript-eslint/member-delimiter-style': 'error',
'@typescript-eslint/member-ordering': [
'error',
{ default: ['signature', 'field'] },
],
'@typescript-eslint/no-dynamic-delete': 'error',
'@typescript-eslint/no-empty-function': [
'error',
{ allow: ['protected-constructors', 'private-constructors'] },
],
'@typescript-eslint/no-extra-non-null-assertion': 'error',
'@typescript-eslint/no-extraneous-class': 'off',
'@typescript-eslint/no-floating-promises': 'error',
'@typescript-eslint/no-for-in-array': 'error',
'@typescript-eslint/no-misused-new': 'error',
'@typescript-eslint/no-misused-promises': 'error',
'@typescript-eslint/no-namespace': 'error',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-require-imports': 'error',
'@typescript-eslint/no-unnecessary-qualifier': 'error',
'@typescript-eslint/no-unnecessary-type-arguments': 'error',
'@typescript-eslint/no-unused-expressions': 'error',
'@typescript-eslint/no-useless-constructor': 'error',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/prefer-function-type': 'error',
'@typescript-eslint/prefer-includes': 'error',
'@typescript-eslint/prefer-readonly': 'error',
'@typescript-eslint/prefer-regexp-exec': 'error',
'@typescript-eslint/prefer-string-starts-ends-with': 'error',
'@typescript-eslint/return-await': 'error',
'@typescript-eslint/semi': 'error',
'@typescript-eslint/space-before-function-paren': [
'error',
{
anonymous: 'always',
named: 'never',
asyncArrow: 'always',
},
],
'@typescript-eslint/triple-slash-reference': [
'error',
{ path: 'never', types: 'always', lib: 'never' },
],
'@typescript-eslint/type-annotation-spacing': 'error',
'import/default': 'error',
'import/export': 'error',
'import/extensions': [
'error',
'never',
{ css: 'always', html: 'always', scss: 'always' },
],
'import/no-absolute-path': 'error',
'import/no-duplicates': 'error',
// 'import/no-extraneous-dependencies': ['error', {
// devDependencies: [
// 'examples/**',
// 'scripts/**',
// 'test/**',
// 'gulpfile.js'
// ],
// optionalDependencies: false,
// peerDependencies: false
// }],
'import/no-mutable-exports': 'error',
'import/no-self-import': 'error',
'import/no-useless-path-segments': ['error'],
'import/order': [
'error',
{
alphabetize: {
order:
'asc' /* sort in ascending order. Options: ['ignore', 'asc', 'desc'] */,
caseInsensitive: true /* ignore case. Options: [true, false] */,
},
groups: [
['builtin'],
['external'],
['internal'],
['parent', 'sibling', 'index', 'object'],
],
'newlines-between': 'always',
},
],
'import/no-deprecated': 'off', // this rule is extremely slow (takes 95% of the time of the full lint operation) so we disable it for that reason only
'jsdoc/check-alignment': 'error',
// 'jsdoc/check-indentation': 'error',
'jsdoc/check-tag-names': [
'error',
{
definedTags: ['chainable', 'internal'],
},
],
'jsdoc/check-syntax': 'error',
'jsdoc/newline-after-description': 'error',
'jsdoc/require-hyphen-before-param-description': ['error', 'always'],
'array-callback-return': 'error',
'eol-last': ['error', 'always'],
'func-call-spacing': 'off', // See @typescript-eslint/func-call-spacing
'function-call-argument-newline': ['error', 'consistent'],
'grouped-accessor-pairs': ['error', 'getBeforeSet'],
// 'max-lines-per-function': ['error', 200],
'new-parens': ['error', 'always'],
'no-caller': 'error',
'no-case-declarations': 'error',
'no-constant-condition': 'error',
'no-dupe-else-if': 'error',
'no-eval': 'error',
'no-extra-bind': 'error',
'no-extra-semi': 'error',
'no-import-assign': 'error',
'no-multiple-empty-lines': ['error', { max: 1 }],
'no-new-func': 'error',
'no-new-wrappers': 'error',
'no-octal-escape': 'error',
'no-prototype-builtins': 'error',
'no-restricted-properties': [
'error',
{
property: 'substr',
message:
'"substr" is considered a legacy function and should be avoided when possible. Use "substring" instead.',
},
],
'no-restricted-syntax': [
'error',
{
selector:
"MemberExpression[object.name='document'][property.name='cookies']",
message: 'Usage of document.cookies is forbidden.',
},
{
selector:
"MemberExpression[object.name='document'][property.name='domain']",
message: 'Usage of document.domain is forbidden.',
},
{
selector:
"MemberExpression[object.name='document'][property.name='write']",
message: 'Usage of document.write is forbidden.',
},
{
selector: "CallExpression[callee.name='execScript']",
message: 'Usage of execScript is forbidden.',
},
],
'no-return-await': 'error',
'no-sequences': 'error',
'no-setter-return': 'error',
'no-template-curly-in-string': 'error',
'no-throw-literal': 'error',
'no-undef-init': 'error',
'no-unused-expressions': 'off', // See @typescript-eslint/no-unused-expressions
'no-useless-catch': 'error',
'no-useless-escape': 'error',
'no-trailing-spaces': 'error',
'no-var': 'error',
'prefer-const': 'error',
'prefer-exponentiation-operator': 'error',
'prefer-object-spread': 'error',
'prefer-regex-literals': 'error',
'prefer-rest-params': 'error',
'prefer-spread': 'error',
'prefer-template': 'error',
'quote-props': ['error', 'consistent'],
quotes: ['off'],
radix: 'error',
'sort-keys': ['off'],
'space-before-function-paren': 'off', // See @typescript-eslint/space-before-function-paren
'space-in-parens': 'error',
'spaced-comment': [
'error',
'always',
{
line: { markers: ['/'], exceptions: ['-', '+'] },
block: { markers: ['!'], exceptions: ['*'], balanced: true },
},
],
// Things we maybe need to fix some day, so are marked as warnings for now:
'@typescript-eslint/no-unsafe-assignment': 'warn',
'@typescript-eslint/no-unsafe-member-access': 'warn',
'@typescript-eslint/no-unsafe-call': 'warn',
'@typescript-eslint/no-unsafe-return': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-this-alias': 'warn',
'@typescript-eslint/no-unnecessary-condition': 'off', // Only false positives seen so far
'@typescript-eslint/no-unnecessary-type-assertion': 'warn',
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-unused-vars-experimental': 'off', // Off for now, crashes eslint
'@typescript-eslint/prefer-nullish-coalescing': [
'warn',
{ forceSuggestionFixer: true },
],
'@typescript-eslint/prefer-optional-chain': 'warn',
'@typescript-eslint/promise-function-async': 'off',
'@typescript-eslint/require-await': 'off',
// '@typescript-eslint/quotes': ['warn', 'backtick', { avoidEscape: true }],
'@typescript-eslint/require-array-sort-compare': 'warn',
'@typescript-eslint/restrict-plus-operands': [
'warn',
{ checkCompoundAssignments: true },
],
'@typescript-eslint/restrict-template-expressions': [
'warn',
{ allowNumber: true, allowBoolean: true, allowNullable: false },
],
'@typescript-eslint/strict-boolean-expressions': 'warn',
'@typescript-eslint/typedef': [
'warn',
{ arrowParameter: false, parameter: false, variableDeclaration: false },
],
'@typescript-eslint/unbound-method': 'off', // Only false positives seen so far
'jsdoc/check-examples': 'off',
'jsdoc/check-param-names': 'off',
'jsdoc/match-description': 'off',
'jsdoc/no-types': 'off',
'jsdoc/require-description': 'off',
'jsdoc/require-example': 'off',
'jsdoc/require-jsdoc': 'off',
'jsdoc/require-param': 'off',
'jsdoc/require-param-type': 'off',
'jsdoc/require-returns': 'off',
'jsdoc/require-returns-type': 'off',
'default-param-last': ['warn'],
eqeqeq: ['warn', 'smart'],
'no-await-in-loop': 'warn',
'no-cond-assign': 'warn',
// 'no-console': 'warn',
'no-constructor-return': 'warn',
'no-extra-boolean-cast': 'warn',
'no-fallthrough': 'warn',
'no-inner-declarations': 'warn',
'no-shadow': 'off', // using @typescript-eslint/no-shadow instead
'no-useless-computed-key': ['warn', { enforceForClassMembers: true }],
'no-undef': 'off', // let typescript take care of this instead
'require-atomic-updates': 'warn',
// Off for now as they create way to much noise
'@typescript-eslint/quotes': ['warn', 'single'],
},
overrides: [
{
// Specific overrides for JS files as some TS rules don't make sense there.
files: ['**/*.js'],
rules: {
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'@typescript-eslint/typedef': 'off',
},
},
{
// Specific overrides for TS files within examples, scripts and tests as some rules don't make sense there.
files: ['examples/**', 'scripts/**', 'test/**'],
rules: {
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-var-requires': 'off',
'import/no-extraneous-dependencies': 'off',
},
},
],
};