eslint-config-setup 0.4.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,6 +16,7 @@
16
16
  "rules": {
17
17
  "constructor-super": "error",
18
18
  "for-direction": "error",
19
+ "getter-return": "error",
19
20
  "no-async-promise-executor": "error",
20
21
  "no-case-declarations": "error",
21
22
  "no-class-assign": "error",
@@ -55,6 +56,7 @@
55
56
  "no-sparse-arrays": "error",
56
57
  "no-this-before-super": "error",
57
58
  "no-unassigned-vars": "error",
59
+ "no-unreachable": "error",
58
60
  "no-unsafe-finally": "error",
59
61
  "no-unsafe-negation": "error",
60
62
  "no-unsafe-optional-chaining": "error",
@@ -117,6 +119,7 @@
117
119
  "no-proto": "error",
118
120
  "no-iterator": "error",
119
121
  "no-script-url": "error",
122
+ "no-implicit-globals": "error",
120
123
  "eqeqeq": [
121
124
  "error",
122
125
  "smart"
@@ -143,6 +146,12 @@
143
146
  "always"
144
147
  ],
145
148
  "no-multi-str": "error",
149
+ "prefer-regex-literals": [
150
+ "error",
151
+ {
152
+ "disallowRedundantWrapping": true
153
+ }
154
+ ],
146
155
  "complexity": [
147
156
  "error",
148
157
  10
@@ -211,6 +220,7 @@
211
220
  ],
212
221
  "import/no-mutable-exports": "error",
213
222
  "import/first": "error",
223
+ "import/newline-after-import": "error",
214
224
  "import/no-named-as-default": "error",
215
225
  "import/no-named-as-default-member": "error",
216
226
  "import/no-empty-named-blocks": "error",
@@ -272,7 +282,10 @@
272
282
  "camelCase": true,
273
283
  "pascalCase": true,
274
284
  "kebabCase": true
275
- }
285
+ },
286
+ "ignore": [
287
+ "__tests__"
288
+ ]
276
289
  }
277
290
  ],
278
291
  "unicorn/no-array-reduce": "warn",
@@ -309,6 +322,12 @@
309
322
  "unicorn/no-unreadable-array-destructuring": "error",
310
323
  "unicorn/no-zero-fractions": "error",
311
324
  "unicorn/numeric-separators-style": "error",
325
+ "unicorn/prefer-export-from": [
326
+ "error",
327
+ {
328
+ "checkUsedVariables": false
329
+ }
330
+ ],
312
331
  "unicorn/prefer-native-coercion-functions": "error",
313
332
  "unicorn/prefer-regexp-test": "error",
314
333
  "unicorn/prefer-spread": "error",
@@ -331,6 +350,8 @@
331
350
  "jsdoc/require-property-description": "error",
332
351
  "jsdoc/require-property-name": "error",
333
352
  "jsdoc/require-returns-description": "warn",
353
+ "jsdoc/require-throws-type": "error",
354
+ "jsdoc/require-yields-type": "error",
334
355
  "node/no-exports-assign": "error",
335
356
  "node/no-path-concat": "error",
336
357
  "node/handle-callback-err": "error"
@@ -345,6 +366,7 @@
345
366
  ],
346
367
  "rules": {
347
368
  "constructor-super": "off",
369
+ "getter-return": "off",
348
370
  "no-class-assign": "off",
349
371
  "no-const-assign": "off",
350
372
  "no-dupe-class-members": "off",
@@ -356,6 +378,7 @@
356
378
  "no-redeclare": "off",
357
379
  "no-setter-return": "off",
358
380
  "no-this-before-super": "off",
381
+ "no-unreachable": "off",
359
382
  "no-unsafe-negation": "off",
360
383
  "no-with": "off",
361
384
  "prefer-const": [
@@ -365,6 +388,7 @@
365
388
  }
366
389
  ],
367
390
  "no-array-constructor": "error",
391
+ "no-implied-eval": "off",
368
392
  "no-unused-expressions": "error",
369
393
  "no-unused-vars": [
370
394
  "error",
@@ -460,7 +484,11 @@
460
484
  ],
461
485
  "typescript/no-import-type-side-effects": "error",
462
486
  "typescript/no-useless-empty-export": "error",
463
- "typescript/no-unnecessary-parameter-property-assignment": "error"
487
+ "typescript/no-unnecessary-parameter-property-assignment": "error",
488
+ "typescript/method-signature-style": [
489
+ "error",
490
+ "property"
491
+ ]
464
492
  },
465
493
  "plugins": [
466
494
  "typescript"
@@ -14,6 +14,7 @@
14
14
  "rules": {
15
15
  "constructor-super": "error",
16
16
  "for-direction": "error",
17
+ "getter-return": "error",
17
18
  "no-async-promise-executor": "error",
18
19
  "no-case-declarations": "error",
19
20
  "no-class-assign": "error",
@@ -53,6 +54,7 @@
53
54
  "no-sparse-arrays": "error",
54
55
  "no-this-before-super": "error",
55
56
  "no-unassigned-vars": "error",
57
+ "no-unreachable": "error",
56
58
  "no-unsafe-finally": "error",
57
59
  "no-unsafe-negation": "error",
58
60
  "no-unsafe-optional-chaining": "error",
@@ -115,6 +117,7 @@
115
117
  "no-proto": "error",
116
118
  "no-iterator": "error",
117
119
  "no-script-url": "error",
120
+ "no-implicit-globals": "error",
118
121
  "eqeqeq": [
119
122
  "error",
120
123
  "smart"
@@ -141,6 +144,12 @@
141
144
  "always"
142
145
  ],
143
146
  "no-multi-str": "error",
147
+ "prefer-regex-literals": [
148
+ "error",
149
+ {
150
+ "disallowRedundantWrapping": true
151
+ }
152
+ ],
144
153
  "complexity": [
145
154
  "error",
146
155
  10
@@ -209,6 +218,7 @@
209
218
  ],
210
219
  "import/no-mutable-exports": "error",
211
220
  "import/first": "error",
221
+ "import/newline-after-import": "error",
212
222
  "import/no-named-as-default": "error",
213
223
  "import/no-named-as-default-member": "error",
214
224
  "import/no-empty-named-blocks": "error",
@@ -270,7 +280,10 @@
270
280
  "camelCase": true,
271
281
  "pascalCase": true,
272
282
  "kebabCase": true
273
- }
283
+ },
284
+ "ignore": [
285
+ "__tests__"
286
+ ]
274
287
  }
275
288
  ],
276
289
  "unicorn/no-array-reduce": "warn",
@@ -307,6 +320,12 @@
307
320
  "unicorn/no-unreadable-array-destructuring": "error",
308
321
  "unicorn/no-zero-fractions": "error",
309
322
  "unicorn/numeric-separators-style": "error",
323
+ "unicorn/prefer-export-from": [
324
+ "error",
325
+ {
326
+ "checkUsedVariables": false
327
+ }
328
+ ],
310
329
  "unicorn/prefer-native-coercion-functions": "error",
311
330
  "unicorn/prefer-regexp-test": "error",
312
331
  "unicorn/prefer-spread": "error",
@@ -328,7 +347,9 @@
328
347
  "jsdoc/require-property": "error",
329
348
  "jsdoc/require-property-description": "error",
330
349
  "jsdoc/require-property-name": "error",
331
- "jsdoc/require-returns-description": "warn"
350
+ "jsdoc/require-returns-description": "warn",
351
+ "jsdoc/require-throws-type": "error",
352
+ "jsdoc/require-yields-type": "error"
332
353
  },
333
354
  "overrides": [
334
355
  {
@@ -340,6 +361,7 @@
340
361
  ],
341
362
  "rules": {
342
363
  "constructor-super": "off",
364
+ "getter-return": "off",
343
365
  "no-class-assign": "off",
344
366
  "no-const-assign": "off",
345
367
  "no-dupe-class-members": "off",
@@ -351,6 +373,7 @@
351
373
  "no-redeclare": "off",
352
374
  "no-setter-return": "off",
353
375
  "no-this-before-super": "off",
376
+ "no-unreachable": "off",
354
377
  "no-unsafe-negation": "off",
355
378
  "no-with": "off",
356
379
  "prefer-const": [
@@ -360,6 +383,7 @@
360
383
  }
361
384
  ],
362
385
  "no-array-constructor": "error",
386
+ "no-implied-eval": "off",
363
387
  "no-unused-expressions": "error",
364
388
  "no-unused-vars": [
365
389
  "error",
@@ -455,7 +479,11 @@
455
479
  ],
456
480
  "typescript/no-import-type-side-effects": "error",
457
481
  "typescript/no-useless-empty-export": "error",
458
- "typescript/no-unnecessary-parameter-property-assignment": "error"
482
+ "typescript/no-unnecessary-parameter-property-assignment": "error",
483
+ "typescript/method-signature-style": [
484
+ "error",
485
+ "property"
486
+ ]
459
487
  },
460
488
  "plugins": [
461
489
  "typescript"
@@ -19,6 +19,7 @@
19
19
  "rules": {
20
20
  "constructor-super": "error",
21
21
  "for-direction": "error",
22
+ "getter-return": "error",
22
23
  "no-async-promise-executor": "error",
23
24
  "no-case-declarations": "error",
24
25
  "no-class-assign": "error",
@@ -58,6 +59,7 @@
58
59
  "no-sparse-arrays": "error",
59
60
  "no-this-before-super": "error",
60
61
  "no-unassigned-vars": "error",
62
+ "no-unreachable": "error",
61
63
  "no-unsafe-finally": "error",
62
64
  "no-unsafe-negation": "error",
63
65
  "no-unsafe-optional-chaining": "error",
@@ -120,6 +122,7 @@
120
122
  "no-proto": "error",
121
123
  "no-iterator": "error",
122
124
  "no-script-url": "error",
125
+ "no-implicit-globals": "error",
123
126
  "eqeqeq": [
124
127
  "error",
125
128
  "smart"
@@ -146,6 +149,12 @@
146
149
  "always"
147
150
  ],
148
151
  "no-multi-str": "error",
152
+ "prefer-regex-literals": [
153
+ "error",
154
+ {
155
+ "disallowRedundantWrapping": true
156
+ }
157
+ ],
149
158
  "complexity": [
150
159
  "error",
151
160
  10
@@ -214,6 +223,7 @@
214
223
  ],
215
224
  "import/no-mutable-exports": "error",
216
225
  "import/first": "error",
226
+ "import/newline-after-import": "error",
217
227
  "import/no-named-as-default": "error",
218
228
  "import/no-named-as-default-member": "error",
219
229
  "import/no-empty-named-blocks": "error",
@@ -275,7 +285,10 @@
275
285
  "camelCase": true,
276
286
  "pascalCase": true,
277
287
  "kebabCase": true
278
- }
288
+ },
289
+ "ignore": [
290
+ "__tests__"
291
+ ]
279
292
  }
280
293
  ],
281
294
  "unicorn/no-array-reduce": "warn",
@@ -312,6 +325,12 @@
312
325
  "unicorn/no-unreadable-array-destructuring": "error",
313
326
  "unicorn/no-zero-fractions": "error",
314
327
  "unicorn/numeric-separators-style": "error",
328
+ "unicorn/prefer-export-from": [
329
+ "error",
330
+ {
331
+ "checkUsedVariables": false
332
+ }
333
+ ],
315
334
  "unicorn/prefer-native-coercion-functions": "error",
316
335
  "unicorn/prefer-regexp-test": "error",
317
336
  "unicorn/prefer-spread": "error",
@@ -334,19 +353,20 @@
334
353
  "jsdoc/require-property-description": "error",
335
354
  "jsdoc/require-property-name": "error",
336
355
  "jsdoc/require-returns-description": "warn",
356
+ "jsdoc/require-throws-type": "error",
357
+ "jsdoc/require-yields-type": "error",
337
358
  "node/no-exports-assign": "error",
338
359
  "node/no-path-concat": "error",
339
360
  "node/handle-callback-err": "error",
340
- "react/exhaustive-deps": "warn",
341
361
  "react/no-array-index-key": "warn",
342
362
  "react/no-clone-element": "warn",
343
363
  "react/no-direct-mutation-state": "error",
344
364
  "react/forward-ref-uses-ref": "warn",
345
365
  "react/jsx-key": "error",
346
- "react/no-redundant-should-component-update": "error",
366
+ "react/no-unstable-nested-components": "error",
347
367
  "react/no-did-mount-set-state": "warn",
368
+ "react/no-did-update-set-state": "warn",
348
369
  "react/no-will-update-set-state": "warn",
349
- "react/rules-of-hooks": "error",
350
370
  "react/hook-use-state": "warn",
351
371
  "react/no-children-prop": "error",
352
372
  "react/jsx-no-comment-textnodes": "warn",
@@ -358,6 +378,7 @@
358
378
  "react/jsx-no-script-url": "warn",
359
379
  "react/void-dom-elements-no-children": "error",
360
380
  "react/jsx-no-constructed-context-values": "warn",
381
+ "react/no-object-type-as-default-prop": "warn",
361
382
  "react/jsx-no-useless-fragment": "warn",
362
383
  "react/button-has-type": "warn",
363
384
  "react/iframe-missing-sandbox": "warn",
@@ -393,6 +414,8 @@
393
414
  "ignoreNonDOM": true
394
415
  }
395
416
  ],
417
+ "react/rules-of-hooks": "error",
418
+ "react/exhaustive-deps": "warn",
396
419
  "react/only-export-components": [
397
420
  "warn",
398
421
  {
@@ -410,6 +433,7 @@
410
433
  ],
411
434
  "rules": {
412
435
  "constructor-super": "off",
436
+ "getter-return": "off",
413
437
  "no-class-assign": "off",
414
438
  "no-const-assign": "off",
415
439
  "no-dupe-class-members": "off",
@@ -421,6 +445,7 @@
421
445
  "no-redeclare": "off",
422
446
  "no-setter-return": "off",
423
447
  "no-this-before-super": "off",
448
+ "no-unreachable": "off",
424
449
  "no-unsafe-negation": "off",
425
450
  "no-with": "off",
426
451
  "prefer-const": [
@@ -430,6 +455,7 @@
430
455
  }
431
456
  ],
432
457
  "no-array-constructor": "error",
458
+ "no-implied-eval": "off",
433
459
  "no-unused-expressions": "error",
434
460
  "no-unused-vars": [
435
461
  "error",
@@ -525,7 +551,11 @@
525
551
  ],
526
552
  "typescript/no-import-type-side-effects": "error",
527
553
  "typescript/no-useless-empty-export": "error",
528
- "typescript/no-unnecessary-parameter-property-assignment": "error"
554
+ "typescript/no-unnecessary-parameter-property-assignment": "error",
555
+ "typescript/method-signature-style": [
556
+ "error",
557
+ "property"
558
+ ]
529
559
  },
530
560
  "plugins": [
531
561
  "typescript"
@@ -14,6 +14,7 @@
14
14
  "rules": {
15
15
  "constructor-super": "error",
16
16
  "for-direction": "error",
17
+ "getter-return": "error",
17
18
  "no-async-promise-executor": "error",
18
19
  "no-case-declarations": "error",
19
20
  "no-class-assign": "error",
@@ -53,6 +54,7 @@
53
54
  "no-sparse-arrays": "error",
54
55
  "no-this-before-super": "error",
55
56
  "no-unassigned-vars": "error",
57
+ "no-unreachable": "error",
56
58
  "no-unsafe-finally": "error",
57
59
  "no-unsafe-negation": "error",
58
60
  "no-unsafe-optional-chaining": "error",
@@ -115,6 +117,7 @@
115
117
  "no-proto": "error",
116
118
  "no-iterator": "error",
117
119
  "no-script-url": "error",
120
+ "no-implicit-globals": "error",
118
121
  "eqeqeq": [
119
122
  "error",
120
123
  "smart"
@@ -141,6 +144,12 @@
141
144
  "always"
142
145
  ],
143
146
  "no-multi-str": "error",
147
+ "prefer-regex-literals": [
148
+ "error",
149
+ {
150
+ "disallowRedundantWrapping": true
151
+ }
152
+ ],
144
153
  "complexity": [
145
154
  "error",
146
155
  10
@@ -218,7 +227,22 @@
218
227
  "no-multi-assign": "error",
219
228
  "no-implicit-coercion": "error",
220
229
  "arrow-body-style": "error",
230
+ "prefer-arrow-callback": [
231
+ "error",
232
+ {
233
+ "allowNamedFunctions": true
234
+ }
235
+ ],
236
+ "logical-assignment-operators": [
237
+ "error",
238
+ "always",
239
+ {
240
+ "enforceForIfStatements": true
241
+ }
242
+ ],
221
243
  "prefer-exponentiation-operator": "error",
244
+ "prefer-named-capture-group": "error",
245
+ "require-unicode-regexp": "error",
222
246
  "no-warning-comments": "warn",
223
247
  "no-await-in-loop": "error",
224
248
  "import/no-duplicates": "error",
@@ -231,6 +255,7 @@
231
255
  ],
232
256
  "import/no-mutable-exports": "error",
233
257
  "import/first": "error",
258
+ "import/newline-after-import": "error",
234
259
  "import/no-named-as-default": "error",
235
260
  "import/no-named-as-default-member": "error",
236
261
  "import/no-empty-named-blocks": "error",
@@ -292,7 +317,10 @@
292
317
  "camelCase": true,
293
318
  "pascalCase": true,
294
319
  "kebabCase": true
295
- }
320
+ },
321
+ "ignore": [
322
+ "__tests__"
323
+ ]
296
324
  }
297
325
  ],
298
326
  "unicorn/no-array-reduce": "error",
@@ -329,6 +357,12 @@
329
357
  "unicorn/no-unreadable-array-destructuring": "error",
330
358
  "unicorn/no-zero-fractions": "error",
331
359
  "unicorn/numeric-separators-style": "error",
360
+ "unicorn/prefer-export-from": [
361
+ "error",
362
+ {
363
+ "checkUsedVariables": false
364
+ }
365
+ ],
332
366
  "unicorn/prefer-native-coercion-functions": "error",
333
367
  "unicorn/prefer-regexp-test": "error",
334
368
  "unicorn/prefer-spread": "error",
@@ -339,7 +373,6 @@
339
373
  "unicorn/prefer-date-now": "error",
340
374
  "unicorn/text-encoding-identifier-case": "error",
341
375
  "unicorn/prefer-import-meta-properties": "error",
342
- "unicorn/no-array-for-each": "error",
343
376
  "unicorn/prefer-ternary": [
344
377
  "error",
345
378
  "only-single-line"
@@ -365,7 +398,9 @@
365
398
  "jsdoc/require-property-description": "error",
366
399
  "jsdoc/require-property-name": "error",
367
400
  "jsdoc/require-returns": "error",
368
- "jsdoc/require-returns-description": "warn"
401
+ "jsdoc/require-returns-description": "warn",
402
+ "jsdoc/require-throws-type": "error",
403
+ "jsdoc/require-yields-type": "error"
369
404
  },
370
405
  "overrides": [
371
406
  {
@@ -377,6 +412,7 @@
377
412
  ],
378
413
  "rules": {
379
414
  "constructor-super": "off",
415
+ "getter-return": "off",
380
416
  "no-class-assign": "off",
381
417
  "no-const-assign": "off",
382
418
  "no-dupe-class-members": "off",
@@ -388,6 +424,7 @@
388
424
  "no-redeclare": "off",
389
425
  "no-setter-return": "off",
390
426
  "no-this-before-super": "off",
427
+ "no-unreachable": "off",
391
428
  "no-unsafe-negation": "off",
392
429
  "no-with": "off",
393
430
  "prefer-const": [
@@ -397,6 +434,7 @@
397
434
  }
398
435
  ],
399
436
  "no-array-constructor": "error",
437
+ "no-implied-eval": "off",
400
438
  "no-unused-expressions": "error",
401
439
  "no-unused-vars": [
402
440
  "error",
@@ -507,6 +545,10 @@
507
545
  "typescript/no-import-type-side-effects": "error",
508
546
  "typescript/no-useless-empty-export": "error",
509
547
  "typescript/no-unnecessary-parameter-property-assignment": "error",
548
+ "typescript/method-signature-style": [
549
+ "error",
550
+ "property"
551
+ ],
510
552
  "typescript/explicit-function-return-type": [
511
553
  "error",
512
554
  {
@@ -16,6 +16,7 @@
16
16
  "rules": {
17
17
  "constructor-super": "error",
18
18
  "for-direction": "error",
19
+ "getter-return": "error",
19
20
  "no-async-promise-executor": "error",
20
21
  "no-case-declarations": "error",
21
22
  "no-class-assign": "error",
@@ -55,6 +56,7 @@
55
56
  "no-sparse-arrays": "error",
56
57
  "no-this-before-super": "error",
57
58
  "no-unassigned-vars": "error",
59
+ "no-unreachable": "error",
58
60
  "no-unsafe-finally": "error",
59
61
  "no-unsafe-negation": "error",
60
62
  "no-unsafe-optional-chaining": "error",
@@ -117,6 +119,7 @@
117
119
  "no-proto": "error",
118
120
  "no-iterator": "error",
119
121
  "no-script-url": "error",
122
+ "no-implicit-globals": "error",
120
123
  "eqeqeq": [
121
124
  "error",
122
125
  "smart"
@@ -143,6 +146,12 @@
143
146
  "always"
144
147
  ],
145
148
  "no-multi-str": "error",
149
+ "prefer-regex-literals": [
150
+ "error",
151
+ {
152
+ "disallowRedundantWrapping": true
153
+ }
154
+ ],
146
155
  "complexity": [
147
156
  "error",
148
157
  10
@@ -220,7 +229,22 @@
220
229
  "no-multi-assign": "error",
221
230
  "no-implicit-coercion": "error",
222
231
  "arrow-body-style": "error",
232
+ "prefer-arrow-callback": [
233
+ "error",
234
+ {
235
+ "allowNamedFunctions": true
236
+ }
237
+ ],
238
+ "logical-assignment-operators": [
239
+ "error",
240
+ "always",
241
+ {
242
+ "enforceForIfStatements": true
243
+ }
244
+ ],
223
245
  "prefer-exponentiation-operator": "error",
246
+ "prefer-named-capture-group": "error",
247
+ "require-unicode-regexp": "error",
224
248
  "no-warning-comments": "warn",
225
249
  "no-await-in-loop": "error",
226
250
  "import/no-duplicates": "error",
@@ -233,6 +257,7 @@
233
257
  ],
234
258
  "import/no-mutable-exports": "error",
235
259
  "import/first": "error",
260
+ "import/newline-after-import": "error",
236
261
  "import/no-named-as-default": "error",
237
262
  "import/no-named-as-default-member": "error",
238
263
  "import/no-empty-named-blocks": "error",
@@ -294,7 +319,10 @@
294
319
  "camelCase": true,
295
320
  "pascalCase": true,
296
321
  "kebabCase": true
297
- }
322
+ },
323
+ "ignore": [
324
+ "__tests__"
325
+ ]
298
326
  }
299
327
  ],
300
328
  "unicorn/no-array-reduce": "error",
@@ -331,6 +359,12 @@
331
359
  "unicorn/no-unreadable-array-destructuring": "error",
332
360
  "unicorn/no-zero-fractions": "error",
333
361
  "unicorn/numeric-separators-style": "error",
362
+ "unicorn/prefer-export-from": [
363
+ "error",
364
+ {
365
+ "checkUsedVariables": false
366
+ }
367
+ ],
334
368
  "unicorn/prefer-native-coercion-functions": "error",
335
369
  "unicorn/prefer-regexp-test": "error",
336
370
  "unicorn/prefer-spread": "error",
@@ -341,7 +375,6 @@
341
375
  "unicorn/prefer-date-now": "error",
342
376
  "unicorn/text-encoding-identifier-case": "error",
343
377
  "unicorn/prefer-import-meta-properties": "error",
344
- "unicorn/no-array-for-each": "error",
345
378
  "unicorn/prefer-ternary": [
346
379
  "error",
347
380
  "only-single-line"
@@ -368,6 +401,8 @@
368
401
  "jsdoc/require-property-name": "error",
369
402
  "jsdoc/require-returns": "error",
370
403
  "jsdoc/require-returns-description": "warn",
404
+ "jsdoc/require-throws-type": "error",
405
+ "jsdoc/require-yields-type": "error",
371
406
  "node/no-exports-assign": "error",
372
407
  "node/no-path-concat": "error",
373
408
  "node/handle-callback-err": "error"
@@ -382,6 +417,7 @@
382
417
  ],
383
418
  "rules": {
384
419
  "constructor-super": "off",
420
+ "getter-return": "off",
385
421
  "no-class-assign": "off",
386
422
  "no-const-assign": "off",
387
423
  "no-dupe-class-members": "off",
@@ -393,6 +429,7 @@
393
429
  "no-redeclare": "off",
394
430
  "no-setter-return": "off",
395
431
  "no-this-before-super": "off",
432
+ "no-unreachable": "off",
396
433
  "no-unsafe-negation": "off",
397
434
  "no-with": "off",
398
435
  "prefer-const": [
@@ -402,6 +439,7 @@
402
439
  }
403
440
  ],
404
441
  "no-array-constructor": "error",
442
+ "no-implied-eval": "off",
405
443
  "no-unused-expressions": "error",
406
444
  "no-unused-vars": [
407
445
  "error",
@@ -512,6 +550,10 @@
512
550
  "typescript/no-import-type-side-effects": "error",
513
551
  "typescript/no-useless-empty-export": "error",
514
552
  "typescript/no-unnecessary-parameter-property-assignment": "error",
553
+ "typescript/method-signature-style": [
554
+ "error",
555
+ "property"
556
+ ],
515
557
  "typescript/explicit-function-return-type": [
516
558
  "error",
517
559
  {