@@ -150,6 +150,7 @@ const styleRules = {
150
150
'unicorn/prefer-logical-operator-over-ternary' : 'off' ,
151
151
'unicorn/prefer-modern-dom-apis' : 'off' ,
152
152
'unicorn/prefer-reflect-apply' : 'off' ,
153
+ 'vitest/prefer-each' : 'off' ,
153
154
} ;
154
155
155
156
const conditionalFixRules = {
@@ -170,13 +171,16 @@ const conditionalFixRules = {
170
171
'@typescript-eslint/prefer-function-type' : 'off' ,
171
172
'unicorn/explicit-length-check' : 'off' ,
172
173
'unicorn/no-nested-ternary' : 'off' ,
174
+ 'unicorn/no-null' : 'off' ,
173
175
'unicorn/no-single-promise-in-promise-methods' : 'off' ,
174
176
'unicorn/no-unnecessary-await' : 'off' ,
175
177
'unicorn/no-useless-fallback-in-spread' : 'off' ,
176
178
'unicorn/no-useless-spread' : 'off' ,
179
+ 'unicorn/prefer-array-flat' : 'off' ,
177
180
'unicorn/prefer-dom-node-text-content' : 'off' ,
178
181
'unicorn/prefer-query-selector' : 'off' ,
179
182
'unicorn/prefer-spread' : 'off' ,
183
+ 'unicorn/require-array-join-separator' : 'off' ,
180
184
} ;
181
185
182
186
const dangerousFixRules = {
@@ -349,8 +353,10 @@ const fixRules = {
349
353
'jsx-a11y/aria-unsupported-elements' : 'off' ,
350
354
'jsx-a11y/no-aria-hidden-on-focusable' : 'off' ,
351
355
'jsx-a11y/no-autofocus' : 'off' ,
356
+ 'jsx-a11y/no-redundant-roles' : 'off' ,
352
357
'promise/no-new-statics' : 'off' ,
353
358
'react/jsx-boolean-value' : 'off' ,
359
+ 'react/jsx-props-no-spread-multi' : 'off' ,
354
360
'@typescript-eslint/array-type' : 'off' ,
355
361
'@typescript-eslint/ban-tslint-comment' : 'off' ,
356
362
'@typescript-eslint/consistent-type-definitions' : 'off' ,
@@ -365,23 +371,27 @@ const fixRules = {
365
371
'unicorn/no-hex-escape' : 'off' ,
366
372
'unicorn/no-instanceof-array' : 'off' ,
367
373
'unicorn/no-length-as-slice-end' : 'off' ,
368
- 'unicorn/no-null' : 'off' ,
369
374
'unicorn/no-useless-promise-resolve-reject' : 'off' ,
370
375
'unicorn/no-useless-undefined' : 'off' ,
371
376
'unicorn/no-zero-fractions' : 'off' ,
372
377
'unicorn/number-literal-case' : 'off' ,
373
378
'unicorn/numeric-separators-style' : 'off' ,
374
379
'unicorn/prefer-array-flat-map' : 'off' ,
380
+ 'unicorn/prefer-array-some' : 'off' ,
375
381
'unicorn/prefer-code-point' : 'off' ,
376
382
'unicorn/prefer-dom-node-append' : 'off' ,
377
383
'unicorn/prefer-node-protocol' : 'off' ,
378
384
'unicorn/prefer-optional-catch-binding' : 'off' ,
379
385
'unicorn/prefer-prototype-methods' : 'off' ,
386
+ 'unicorn/prefer-regexp-test' : 'off' ,
387
+ 'unicorn/prefer-set-size' : 'off' ,
380
388
'unicorn/prefer-string-replace-all' : 'off' ,
389
+ 'unicorn/prefer-string-slice' : 'off' ,
381
390
'unicorn/prefer-string-starts-ends-with' : 'off' ,
382
391
'unicorn/prefer-string-trim-start-end' : 'off' ,
383
392
'unicorn/require-number-to-fixed-digits-argument' : 'off' ,
384
393
'unicorn/switch-case-braces' : 'off' ,
394
+ 'unicorn/text-encoding-identifier-case' : 'off' ,
385
395
'vitest/no-import-node-test' : 'off' ,
386
396
'vitest/prefer-to-be-falsy' : 'off' ,
387
397
'vitest/prefer-to-be-truthy' : 'off' ,
@@ -392,22 +402,14 @@ const pendingRules = {
392
402
'no-extra-boolean-cast' : 'off' ,
393
403
'no-fallthrough' : 'off' ,
394
404
'no-var' : 'off' ,
395
- 'jsx-a11y/no-redundant-roles' : 'off' ,
396
405
'jsx-a11y/scope' : 'off' ,
397
406
'jsx-a11y/tabindex-no-positive' : 'off' ,
398
- 'react/jsx-props-no-spread-multi' : 'off' ,
399
407
'unicorn/consistent-function-scoping' : 'off' ,
400
- 'unicorn/prefer-array-flat' : 'off' ,
401
- 'unicorn/prefer-array-some' : 'off' ,
402
408
'unicorn/prefer-date-now' : 'off' ,
403
409
'unicorn/prefer-modern-math-apis' : 'off' ,
404
410
'unicorn/prefer-native-coercion-functions' : 'off' ,
405
- 'unicorn/prefer-regexp-test' : 'off' ,
406
- 'unicorn/prefer-set-size' : 'off' ,
407
- 'unicorn/prefer-string-slice' : 'off' ,
411
+ 'unicorn/prefer-structured-clone' : 'off' ,
408
412
'unicorn/prefer-type-error' : 'off' ,
409
- 'unicorn/require-array-join-separator' : 'off' ,
410
- 'unicorn/text-encoding-identifier-case' : 'off' ,
411
413
'unicorn/throw-new-error' : 'off' ,
412
414
} ;
413
415
0 commit comments