@@ -109,7 +109,7 @@ rules:
109
109
import/no-extraneous-dependencies : [2]
110
110
import/no-import-module-exports : [0]
111
111
import/no-internal-modules : [0]
112
- import/no-mutable-exports : [2 ]
112
+ import/no-mutable-exports : [0 ]
113
113
import/no-named-as-default-member : [0]
114
114
import/no-named-as-default : [2]
115
115
import/no-named-default : [0]
@@ -121,7 +121,7 @@ rules:
121
121
import/no-restricted-paths : [0]
122
122
import/no-self-import : [2]
123
123
import/no-unassigned-import : [0]
124
- import/no-unresolved : [2, {commonjs: true}]
124
+ import/no-unresolved : [2, {commonjs: true, ignore: ["\\?.+$"] }]
125
125
import/no-unused-modules : [2, {unusedExports: true}]
126
126
import/no-useless-path-segments : [2, {commonjs: true}]
127
127
import/no-webpack-loader-syntax : [2]
@@ -211,7 +211,7 @@ rules:
211
211
no-compare-neg-zero : [2]
212
212
no-cond-assign : [2, except-parens]
213
213
no-confusing-arrow : [0]
214
- no-console : [1, {allow: [info, warn, error]}]
214
+ no-console : [1, {allow: [debug, info, warn, error]}]
215
215
no-const-assign : [2]
216
216
no-constant-binary-expression : [2]
217
217
no-constant-condition : [0]
@@ -321,7 +321,7 @@ rules:
321
321
no-unused-labels : [2]
322
322
no-unused-private-class-members : [2]
323
323
no-unused-vars : [2, {args: all, argsIgnorePattern: ^_, varsIgnorePattern: ^_, caughtErrorsIgnorePattern: ^_, destructuredArrayIgnorePattern: ^_, ignoreRestSiblings: false}]
324
- no-use-before-define : [2, nofunc ]
324
+ no-use-before-define : [2, {functions: false, classes: true, variables: true, allowNamedExports: true} ]
325
325
no-useless-backreference : [0]
326
326
no-useless-call : [2]
327
327
no-useless-catch : [2]
@@ -347,7 +347,7 @@ rules:
347
347
padded-blocks : [2, never]
348
348
padding-line-between-statements : [0]
349
349
prefer-arrow-callback : [2, {allowNamedFunctions: true, allowUnboundThis: true}]
350
- prefer-const : [2, {destructuring: all}]
350
+ prefer-const : [2, {destructuring: all, ignoreReadBeforeAssign: true }]
351
351
prefer-destructuring : [0]
352
352
prefer-exponentiation-operator : [2]
353
353
prefer-named-capture-group : [0]
@@ -449,7 +449,7 @@ rules:
449
449
unicorn/no-new-array : [0]
450
450
unicorn/no-new-buffer : [0]
451
451
unicorn/no-null : [0]
452
- unicorn/no-object-as-default-parameter : [2 ]
452
+ unicorn/no-object-as-default-parameter : [0 ]
453
453
unicorn/no-process-exit : [0]
454
454
unicorn/no-reduce : [2]
455
455
unicorn/no-static-only-class : [2]
@@ -475,7 +475,7 @@ rules:
475
475
unicorn/prefer-array-index-of : [2]
476
476
unicorn/prefer-array-some : [2]
477
477
unicorn/prefer-at : [0]
478
- unicorn/prefer-code-point : [2 ]
478
+ unicorn/prefer-code-point : [0 ]
479
479
unicorn/prefer-dataset : [2]
480
480
unicorn/prefer-date-now : [2]
481
481
unicorn/prefer-default-parameters : [0]
0 commit comments