oxlint-react-compiler-experimental 0.0.7 → 0.1.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.
- package/configuration_schema.json +2712 -218
- package/dist/bindings.js +28 -27
- package/dist/cli.js +3 -3
- package/dist/globals.js +13 -0
- package/dist/index.d.ts +903 -19
- package/dist/index.js +11 -1
- package/dist/js_config.js +91 -26
- package/dist/lint.js +5139 -4051
- package/dist/oxlint.darwin-arm64.node +0 -0
- package/dist/oxlint.linux-arm64-gnu.node +0 -0
- package/dist/oxlint.linux-x64-gnu.node +0 -0
- package/dist/oxlint.win32-arm64-msvc.node +0 -0
- package/dist/oxlint.win32-x64-msvc.node +0 -0
- package/dist/plugins-dev.d.ts +2298 -2220
- package/dist/plugins-dev.js +18 -13
- package/dist/utils.js +1 -13
- package/package.json +16 -5
- package/dist/config.js +0 -16
package/dist/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ type ExternalPluginEntry = string | {
|
|
|
14
14
|
* - jsdoc
|
|
15
15
|
* - jest
|
|
16
16
|
* - vitest
|
|
17
|
-
* - jsx-a11y
|
|
17
|
+
* - jsx-a11y (includes jsx-a11y-x)
|
|
18
18
|
* - nextjs
|
|
19
19
|
* - react-perf
|
|
20
20
|
* - promise
|
|
@@ -32,12 +32,14 @@ type ExternalPluginEntry = string | {
|
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
34
34
|
* A set of glob patterns.
|
|
35
|
+
* Patterns are matched against paths relative to the configuration file's directory.
|
|
35
36
|
*/
|
|
36
37
|
type GlobSet = string[];
|
|
37
38
|
type LintPluginOptionsSchema = "eslint" | "react" | "unicorn" | "typescript" | "oxc" | "import" | "jsdoc" | "jest" | "vitest" | "jsx-a11y" | "nextjs" | "react-perf" | "react-compiler" | "promise" | "node" | "vue";
|
|
38
39
|
type LintPlugins = LintPluginOptionsSchema[];
|
|
39
|
-
type DummyRule = AllowWarnDeny | unknown[];
|
|
40
|
+
type DummyRule = AllowWarnDeny | [AllowWarnDeny, ...unknown[]];
|
|
40
41
|
type OxlintOverrides = OxlintOverride[];
|
|
42
|
+
type JestVersionSchema = number | string;
|
|
41
43
|
type TagNamePreference = string | {
|
|
42
44
|
message: string;
|
|
43
45
|
replacement: string;
|
|
@@ -145,7 +147,6 @@ type CustomComponent = string | {
|
|
|
145
147
|
* }
|
|
146
148
|
* }
|
|
147
149
|
* ]
|
|
148
|
-
* }
|
|
149
150
|
* });
|
|
150
151
|
* ```
|
|
151
152
|
*/
|
|
@@ -153,7 +154,7 @@ interface Oxlintrc$1 {
|
|
|
153
154
|
/**
|
|
154
155
|
* Schema URI for editor tooling.
|
|
155
156
|
*/
|
|
156
|
-
$schema?: string
|
|
157
|
+
$schema?: string;
|
|
157
158
|
categories?: RuleCategories;
|
|
158
159
|
/**
|
|
159
160
|
* Environments enable and disable collections of global variables.
|
|
@@ -180,7 +181,7 @@ interface Oxlintrc$1 {
|
|
|
180
181
|
* Read more about JS plugins in
|
|
181
182
|
* [the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).
|
|
182
183
|
*
|
|
183
|
-
* Note: JS plugins are
|
|
184
|
+
* Note: JS plugins are in alpha and not subject to semver.
|
|
184
185
|
*
|
|
185
186
|
* Examples:
|
|
186
187
|
*
|
|
@@ -197,6 +198,26 @@ interface Oxlintrc$1 {
|
|
|
197
198
|
* }
|
|
198
199
|
* ```
|
|
199
200
|
*
|
|
201
|
+
* Basic usage with a TypeScript plugin and a local plugin path.
|
|
202
|
+
*
|
|
203
|
+
* TypeScript plugin files are supported in the following environments:
|
|
204
|
+
* - Deno and Bun: TypeScript files are supported natively.
|
|
205
|
+
* - Node.js >=22.18.0 and Node.js ^20.19.0: TypeScript files are supported natively with built-in
|
|
206
|
+
* type-stripping enabled by default.
|
|
207
|
+
*
|
|
208
|
+
* For older Node.js versions, TypeScript plugins are not supported. Please use JavaScript plugins or upgrade your Node version.
|
|
209
|
+
*
|
|
210
|
+
* ```json
|
|
211
|
+
* {
|
|
212
|
+
* "jsPlugins": [
|
|
213
|
+
* "./custom-plugin.ts"
|
|
214
|
+
* ],
|
|
215
|
+
* "rules": {
|
|
216
|
+
* "custom/rule-name": "warn"
|
|
217
|
+
* }
|
|
218
|
+
* }
|
|
219
|
+
* ```
|
|
220
|
+
*
|
|
200
221
|
* Using a built-in Rust plugin alongside a JS plugin with the same name
|
|
201
222
|
* by giving the JS plugin an alias.
|
|
202
223
|
*
|
|
@@ -235,7 +256,7 @@ interface Oxlintrc$1 {
|
|
|
235
256
|
* NOTE: Setting the `plugins` field will overwrite the base set of plugins.
|
|
236
257
|
* The `plugins` array should reflect all of the plugins you want to use.
|
|
237
258
|
*/
|
|
238
|
-
plugins?: LintPlugins
|
|
259
|
+
plugins?: LintPlugins;
|
|
239
260
|
/**
|
|
240
261
|
* Example
|
|
241
262
|
*
|
|
@@ -299,8 +320,50 @@ interface RuleCategories {
|
|
|
299
320
|
* Predefine global variables.
|
|
300
321
|
*
|
|
301
322
|
* Environments specify what global variables are predefined.
|
|
302
|
-
*
|
|
303
|
-
*
|
|
323
|
+
* Available environments:
|
|
324
|
+
* - amd - require() and define() globals.
|
|
325
|
+
* - applescript - AppleScript globals.
|
|
326
|
+
* - astro - Astro globals.
|
|
327
|
+
* - atomtest - Atom test globals.
|
|
328
|
+
* - audioworklet - AudioWorklet globals.
|
|
329
|
+
* - browser - browser globals.
|
|
330
|
+
* - builtin - Latest ECMAScript globals, equivalent to es2026.
|
|
331
|
+
* - commonjs - CommonJS globals and scoping.
|
|
332
|
+
* - embertest - Ember test globals.
|
|
333
|
+
* - es2015 - ECMAScript 2015 globals.
|
|
334
|
+
* - es2016 - ECMAScript 2016 globals.
|
|
335
|
+
* - es2017 - ECMAScript 2017 globals.
|
|
336
|
+
* - es2018 - ECMAScript 2018 globals.
|
|
337
|
+
* - es2019 - ECMAScript 2019 globals.
|
|
338
|
+
* - es2020 - ECMAScript 2020 globals.
|
|
339
|
+
* - es2021 - ECMAScript 2021 globals.
|
|
340
|
+
* - es2022 - ECMAScript 2022 globals.
|
|
341
|
+
* - es2023 - ECMAScript 2023 globals.
|
|
342
|
+
* - es2024 - ECMAScript 2024 globals.
|
|
343
|
+
* - es2025 - ECMAScript 2025 globals.
|
|
344
|
+
* - es2026 - ECMAScript 2026 globals.
|
|
345
|
+
* - es6 - ECMAScript 6 globals except modules.
|
|
346
|
+
* - greasemonkey - GreaseMonkey globals.
|
|
347
|
+
* - jasmine - Jasmine globals.
|
|
348
|
+
* - jest - Jest globals.
|
|
349
|
+
* - jquery - jQuery globals.
|
|
350
|
+
* - meteor - Meteor globals.
|
|
351
|
+
* - mocha - Mocha globals.
|
|
352
|
+
* - mongo - MongoDB globals.
|
|
353
|
+
* - nashorn - Java 8 Nashorn globals.
|
|
354
|
+
* - node - Node.js globals and scoping.
|
|
355
|
+
* - phantomjs - PhantomJS globals.
|
|
356
|
+
* - prototypejs - Prototype.js globals.
|
|
357
|
+
* - protractor - Protractor globals.
|
|
358
|
+
* - qunit - QUnit globals.
|
|
359
|
+
* - serviceworker - Service Worker globals.
|
|
360
|
+
* - shared-node-browser - Node.js and Browser common globals.
|
|
361
|
+
* - shelljs - ShellJS globals.
|
|
362
|
+
* - svelte - Svelte globals.
|
|
363
|
+
* - vitest - Vitest globals.
|
|
364
|
+
* - vue - Vue globals.
|
|
365
|
+
* - webextensions - WebExtensions globals.
|
|
366
|
+
* - worker - Web Workers globals.
|
|
304
367
|
*/
|
|
305
368
|
interface OxlintEnv {
|
|
306
369
|
[k: string]: boolean;
|
|
@@ -342,13 +405,13 @@ interface OxlintOptions {
|
|
|
342
405
|
*
|
|
343
406
|
* Equivalent to passing `--deny-warnings` on the CLI.
|
|
344
407
|
*/
|
|
345
|
-
denyWarnings?: boolean
|
|
408
|
+
denyWarnings?: boolean;
|
|
346
409
|
/**
|
|
347
410
|
* Specify a warning threshold. Exits with an error status if warnings exceed this value.
|
|
348
411
|
*
|
|
349
412
|
* Equivalent to passing `--max-warnings` on the CLI.
|
|
350
413
|
*/
|
|
351
|
-
maxWarnings?: number
|
|
414
|
+
maxWarnings?: number;
|
|
352
415
|
/**
|
|
353
416
|
* Report unused disable directives (e.g. `// oxlint-disable-line` or `// eslint-disable-line`).
|
|
354
417
|
*
|
|
@@ -356,7 +419,15 @@ interface OxlintOptions {
|
|
|
356
419
|
* CLI flags take precedence over this value when both are set.
|
|
357
420
|
* Only supported in the root configuration file.
|
|
358
421
|
*/
|
|
359
|
-
reportUnusedDisableDirectives?: AllowWarnDeny
|
|
422
|
+
reportUnusedDisableDirectives?: AllowWarnDeny;
|
|
423
|
+
/**
|
|
424
|
+
* Whether oxlint should respect `eslint-disable*` and `eslint-enable*`
|
|
425
|
+
* directives in addition to its native `oxlint-*` directives.
|
|
426
|
+
*
|
|
427
|
+
* Defaults to `true`.
|
|
428
|
+
* Only supported in the root configuration file.
|
|
429
|
+
*/
|
|
430
|
+
respectEslintDisableDirectives?: boolean;
|
|
360
431
|
/**
|
|
361
432
|
* Enable rules that require type information.
|
|
362
433
|
*
|
|
@@ -364,7 +435,7 @@ interface OxlintOptions {
|
|
|
364
435
|
*
|
|
365
436
|
* Note that this requires the `oxlint-tsgolint` package to be installed.
|
|
366
437
|
*/
|
|
367
|
-
typeAware?: boolean
|
|
438
|
+
typeAware?: boolean;
|
|
368
439
|
/**
|
|
369
440
|
* Enable experimental type checking (includes TypeScript compiler diagnostics).
|
|
370
441
|
*
|
|
@@ -372,13 +443,13 @@ interface OxlintOptions {
|
|
|
372
443
|
*
|
|
373
444
|
* Note that this requires the `oxlint-tsgolint` package to be installed.
|
|
374
445
|
*/
|
|
375
|
-
typeCheck?: boolean
|
|
446
|
+
typeCheck?: boolean;
|
|
376
447
|
}
|
|
377
448
|
interface OxlintOverride {
|
|
378
449
|
/**
|
|
379
450
|
* Environments enable and disable collections of global variables.
|
|
380
451
|
*/
|
|
381
|
-
env?: OxlintEnv
|
|
452
|
+
env?: OxlintEnv;
|
|
382
453
|
/**
|
|
383
454
|
* A list of glob patterns to override.
|
|
384
455
|
*
|
|
@@ -389,27 +460,822 @@ interface OxlintOverride {
|
|
|
389
460
|
/**
|
|
390
461
|
* Enabled or disabled specific global variables.
|
|
391
462
|
*/
|
|
392
|
-
globals?: OxlintGlobals
|
|
463
|
+
globals?: OxlintGlobals;
|
|
393
464
|
/**
|
|
394
465
|
* JS plugins for this override, allows usage of ESLint plugins with Oxlint.
|
|
395
466
|
*
|
|
396
467
|
* Read more about JS plugins in
|
|
397
468
|
* [the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).
|
|
398
469
|
*
|
|
399
|
-
* Note: JS plugins are
|
|
470
|
+
* Note: JS plugins are in alpha and not subject to semver.
|
|
400
471
|
*/
|
|
401
472
|
jsPlugins?: null | ExternalPluginEntry[];
|
|
402
473
|
/**
|
|
403
474
|
* Optionally change what plugins are enabled for this override. When
|
|
404
475
|
* omitted, the base config's plugins are used.
|
|
405
476
|
*/
|
|
406
|
-
plugins?: LintPlugins
|
|
477
|
+
plugins?: LintPlugins;
|
|
407
478
|
rules?: DummyRuleMap;
|
|
408
479
|
}
|
|
409
480
|
/**
|
|
410
481
|
* See [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html)
|
|
411
482
|
*/
|
|
412
483
|
interface DummyRuleMap {
|
|
484
|
+
"accessor-pairs"?: DummyRule;
|
|
485
|
+
"array-callback-return"?: DummyRule;
|
|
486
|
+
"arrow-body-style"?: DummyRule;
|
|
487
|
+
"block-scoped-var"?: DummyRule;
|
|
488
|
+
"capitalized-comments"?: DummyRule;
|
|
489
|
+
"class-methods-use-this"?: DummyRule;
|
|
490
|
+
complexity?: DummyRule;
|
|
491
|
+
"constructor-super"?: DummyRule;
|
|
492
|
+
curly?: DummyRule;
|
|
493
|
+
"default-case"?: DummyRule;
|
|
494
|
+
"default-case-last"?: DummyRule;
|
|
495
|
+
"default-param-last"?: DummyRule;
|
|
496
|
+
eqeqeq?: DummyRule;
|
|
497
|
+
"for-direction"?: DummyRule;
|
|
498
|
+
"func-name-matching"?: DummyRule;
|
|
499
|
+
"func-names"?: DummyRule;
|
|
500
|
+
"func-style"?: DummyRule;
|
|
501
|
+
"getter-return"?: DummyRule;
|
|
502
|
+
"grouped-accessor-pairs"?: DummyRule;
|
|
503
|
+
"guard-for-in"?: DummyRule;
|
|
504
|
+
"id-length"?: DummyRule;
|
|
505
|
+
"import/consistent-type-specifier-style"?: DummyRule;
|
|
506
|
+
"import/default"?: DummyRule;
|
|
507
|
+
"import/export"?: DummyRule;
|
|
508
|
+
"import/exports-last"?: DummyRule;
|
|
509
|
+
"import/extensions"?: DummyRule;
|
|
510
|
+
"import/first"?: DummyRule;
|
|
511
|
+
"import/group-exports"?: DummyRule;
|
|
512
|
+
"import/max-dependencies"?: DummyRule;
|
|
513
|
+
"import/named"?: DummyRule;
|
|
514
|
+
"import/namespace"?: DummyRule;
|
|
515
|
+
"import/no-absolute-path"?: DummyRule;
|
|
516
|
+
"import/no-amd"?: DummyRule;
|
|
517
|
+
"import/no-anonymous-default-export"?: DummyRule;
|
|
518
|
+
"import/no-commonjs"?: DummyRule;
|
|
519
|
+
"import/no-cycle"?: DummyRule;
|
|
520
|
+
"import/no-default-export"?: DummyRule;
|
|
521
|
+
"import/no-duplicates"?: DummyRule;
|
|
522
|
+
"import/no-dynamic-require"?: DummyRule;
|
|
523
|
+
"import/no-empty-named-blocks"?: DummyRule;
|
|
524
|
+
"import/no-mutable-exports"?: DummyRule;
|
|
525
|
+
"import/no-named-as-default"?: DummyRule;
|
|
526
|
+
"import/no-named-as-default-member"?: DummyRule;
|
|
527
|
+
"import/no-named-default"?: DummyRule;
|
|
528
|
+
"import/no-named-export"?: DummyRule;
|
|
529
|
+
"import/no-namespace"?: DummyRule;
|
|
530
|
+
"import/no-nodejs-modules"?: DummyRule;
|
|
531
|
+
"import/no-relative-parent-imports"?: DummyRule;
|
|
532
|
+
"import/no-self-import"?: DummyRule;
|
|
533
|
+
"import/no-unassigned-import"?: DummyRule;
|
|
534
|
+
"import/no-webpack-loader-syntax"?: DummyRule;
|
|
535
|
+
"import/prefer-default-export"?: DummyRule;
|
|
536
|
+
"import/unambiguous"?: DummyRule;
|
|
537
|
+
"init-declarations"?: DummyRule;
|
|
538
|
+
"jest/consistent-test-it"?: DummyRule;
|
|
539
|
+
"jest/expect-expect"?: DummyRule;
|
|
540
|
+
"jest/max-expects"?: DummyRule;
|
|
541
|
+
"jest/max-nested-describe"?: DummyRule;
|
|
542
|
+
"jest/no-alias-methods"?: DummyRule;
|
|
543
|
+
"jest/no-commented-out-tests"?: DummyRule;
|
|
544
|
+
"jest/no-conditional-expect"?: DummyRule;
|
|
545
|
+
"jest/no-conditional-in-test"?: DummyRule;
|
|
546
|
+
"jest/no-confusing-set-timeout"?: DummyRule;
|
|
547
|
+
"jest/no-deprecated-functions"?: DummyRule;
|
|
548
|
+
"jest/no-disabled-tests"?: DummyRule;
|
|
549
|
+
"jest/no-done-callback"?: DummyRule;
|
|
550
|
+
"jest/no-duplicate-hooks"?: DummyRule;
|
|
551
|
+
"jest/no-export"?: DummyRule;
|
|
552
|
+
"jest/no-focused-tests"?: DummyRule;
|
|
553
|
+
"jest/no-hooks"?: DummyRule;
|
|
554
|
+
"jest/no-identical-title"?: DummyRule;
|
|
555
|
+
"jest/no-interpolation-in-snapshots"?: DummyRule;
|
|
556
|
+
"jest/no-jasmine-globals"?: DummyRule;
|
|
557
|
+
"jest/no-large-snapshots"?: DummyRule;
|
|
558
|
+
"jest/no-mocks-import"?: DummyRule;
|
|
559
|
+
"jest/no-restricted-jest-methods"?: DummyRule;
|
|
560
|
+
"jest/no-restricted-matchers"?: DummyRule;
|
|
561
|
+
"jest/no-standalone-expect"?: DummyRule;
|
|
562
|
+
"jest/no-test-prefixes"?: DummyRule;
|
|
563
|
+
"jest/no-test-return-statement"?: DummyRule;
|
|
564
|
+
"jest/no-unneeded-async-expect-function"?: DummyRule;
|
|
565
|
+
"jest/no-untyped-mock-factory"?: DummyRule;
|
|
566
|
+
"jest/padding-around-after-all-blocks"?: DummyRule;
|
|
567
|
+
"jest/padding-around-test-blocks"?: DummyRule;
|
|
568
|
+
"jest/prefer-called-with"?: DummyRule;
|
|
569
|
+
"jest/prefer-comparison-matcher"?: DummyRule;
|
|
570
|
+
"jest/prefer-each"?: DummyRule;
|
|
571
|
+
"jest/prefer-ending-with-an-expect"?: DummyRule;
|
|
572
|
+
"jest/prefer-equality-matcher"?: DummyRule;
|
|
573
|
+
"jest/prefer-expect-assertions"?: DummyRule;
|
|
574
|
+
"jest/prefer-expect-resolves"?: DummyRule;
|
|
575
|
+
"jest/prefer-hooks-in-order"?: DummyRule;
|
|
576
|
+
"jest/prefer-hooks-on-top"?: DummyRule;
|
|
577
|
+
"jest/prefer-importing-jest-globals"?: DummyRule;
|
|
578
|
+
"jest/prefer-jest-mocked"?: DummyRule;
|
|
579
|
+
"jest/prefer-lowercase-title"?: DummyRule;
|
|
580
|
+
"jest/prefer-mock-promise-shorthand"?: DummyRule;
|
|
581
|
+
"jest/prefer-mock-return-shorthand"?: DummyRule;
|
|
582
|
+
"jest/prefer-snapshot-hint"?: DummyRule;
|
|
583
|
+
"jest/prefer-spy-on"?: DummyRule;
|
|
584
|
+
"jest/prefer-strict-equal"?: DummyRule;
|
|
585
|
+
"jest/prefer-to-be"?: DummyRule;
|
|
586
|
+
"jest/prefer-to-contain"?: DummyRule;
|
|
587
|
+
"jest/prefer-to-have-been-called"?: DummyRule;
|
|
588
|
+
"jest/prefer-to-have-been-called-times"?: DummyRule;
|
|
589
|
+
"jest/prefer-to-have-length"?: DummyRule;
|
|
590
|
+
"jest/prefer-todo"?: DummyRule;
|
|
591
|
+
"jest/require-hook"?: DummyRule;
|
|
592
|
+
"jest/require-to-throw-message"?: DummyRule;
|
|
593
|
+
"jest/require-top-level-describe"?: DummyRule;
|
|
594
|
+
"jest/valid-describe-callback"?: DummyRule;
|
|
595
|
+
"jest/valid-expect"?: DummyRule;
|
|
596
|
+
"jest/valid-expect-in-promise"?: DummyRule;
|
|
597
|
+
"jest/valid-title"?: DummyRule;
|
|
598
|
+
"jsdoc/check-access"?: DummyRule;
|
|
599
|
+
"jsdoc/check-property-names"?: DummyRule;
|
|
600
|
+
"jsdoc/check-tag-names"?: DummyRule;
|
|
601
|
+
"jsdoc/empty-tags"?: DummyRule;
|
|
602
|
+
"jsdoc/implements-on-classes"?: DummyRule;
|
|
603
|
+
"jsdoc/no-defaults"?: DummyRule;
|
|
604
|
+
"jsdoc/require-param"?: DummyRule;
|
|
605
|
+
"jsdoc/require-param-description"?: DummyRule;
|
|
606
|
+
"jsdoc/require-param-name"?: DummyRule;
|
|
607
|
+
"jsdoc/require-param-type"?: DummyRule;
|
|
608
|
+
"jsdoc/require-property"?: DummyRule;
|
|
609
|
+
"jsdoc/require-property-description"?: DummyRule;
|
|
610
|
+
"jsdoc/require-property-name"?: DummyRule;
|
|
611
|
+
"jsdoc/require-property-type"?: DummyRule;
|
|
612
|
+
"jsdoc/require-returns"?: DummyRule;
|
|
613
|
+
"jsdoc/require-returns-description"?: DummyRule;
|
|
614
|
+
"jsdoc/require-returns-type"?: DummyRule;
|
|
615
|
+
"jsdoc/require-throws-description"?: DummyRule;
|
|
616
|
+
"jsdoc/require-throws-type"?: DummyRule;
|
|
617
|
+
"jsdoc/require-yields"?: DummyRule;
|
|
618
|
+
"jsdoc/require-yields-type"?: DummyRule;
|
|
619
|
+
"jsx-a11y/alt-text"?: DummyRule;
|
|
620
|
+
"jsx-a11y/anchor-ambiguous-text"?: DummyRule;
|
|
621
|
+
"jsx-a11y/anchor-has-content"?: DummyRule;
|
|
622
|
+
"jsx-a11y/anchor-is-valid"?: DummyRule;
|
|
623
|
+
"jsx-a11y/aria-activedescendant-has-tabindex"?: DummyRule;
|
|
624
|
+
"jsx-a11y/aria-props"?: DummyRule;
|
|
625
|
+
"jsx-a11y/aria-proptypes"?: DummyRule;
|
|
626
|
+
"jsx-a11y/aria-role"?: DummyRule;
|
|
627
|
+
"jsx-a11y/aria-unsupported-elements"?: DummyRule;
|
|
628
|
+
"jsx-a11y/autocomplete-valid"?: DummyRule;
|
|
629
|
+
"jsx-a11y/click-events-have-key-events"?: DummyRule;
|
|
630
|
+
"jsx-a11y/control-has-associated-label"?: DummyRule;
|
|
631
|
+
"jsx-a11y/heading-has-content"?: DummyRule;
|
|
632
|
+
"jsx-a11y/html-has-lang"?: DummyRule;
|
|
633
|
+
"jsx-a11y/iframe-has-title"?: DummyRule;
|
|
634
|
+
"jsx-a11y/img-redundant-alt"?: DummyRule;
|
|
635
|
+
"jsx-a11y/interactive-supports-focus"?: DummyRule;
|
|
636
|
+
"jsx-a11y/label-has-associated-control"?: DummyRule;
|
|
637
|
+
"jsx-a11y/lang"?: DummyRule;
|
|
638
|
+
"jsx-a11y/media-has-caption"?: DummyRule;
|
|
639
|
+
"jsx-a11y/mouse-events-have-key-events"?: DummyRule;
|
|
640
|
+
"jsx-a11y/no-access-key"?: DummyRule;
|
|
641
|
+
"jsx-a11y/no-aria-hidden-on-focusable"?: DummyRule;
|
|
642
|
+
"jsx-a11y/no-autofocus"?: DummyRule;
|
|
643
|
+
"jsx-a11y/no-distracting-elements"?: DummyRule;
|
|
644
|
+
"jsx-a11y/no-interactive-element-to-noninteractive-role"?: DummyRule;
|
|
645
|
+
"jsx-a11y/no-noninteractive-element-interactions"?: DummyRule;
|
|
646
|
+
"jsx-a11y/no-noninteractive-element-to-interactive-role"?: DummyRule;
|
|
647
|
+
"jsx-a11y/no-noninteractive-tabindex"?: DummyRule;
|
|
648
|
+
"jsx-a11y/no-redundant-roles"?: DummyRule;
|
|
649
|
+
"jsx-a11y/no-static-element-interactions"?: DummyRule;
|
|
650
|
+
"jsx-a11y/prefer-tag-over-role"?: DummyRule;
|
|
651
|
+
"jsx-a11y/role-has-required-aria-props"?: DummyRule;
|
|
652
|
+
"jsx-a11y/role-supports-aria-props"?: DummyRule;
|
|
653
|
+
"jsx-a11y/scope"?: DummyRule;
|
|
654
|
+
"jsx-a11y/tabindex-no-positive"?: DummyRule;
|
|
655
|
+
"logical-assignment-operators"?: DummyRule;
|
|
656
|
+
"max-classes-per-file"?: DummyRule;
|
|
657
|
+
"max-depth"?: DummyRule;
|
|
658
|
+
"max-lines"?: DummyRule;
|
|
659
|
+
"max-lines-per-function"?: DummyRule;
|
|
660
|
+
"max-nested-callbacks"?: DummyRule;
|
|
661
|
+
"max-params"?: DummyRule;
|
|
662
|
+
"max-statements"?: DummyRule;
|
|
663
|
+
"new-cap"?: DummyRule;
|
|
664
|
+
"nextjs/google-font-display"?: DummyRule;
|
|
665
|
+
"nextjs/google-font-preconnect"?: DummyRule;
|
|
666
|
+
"nextjs/inline-script-id"?: DummyRule;
|
|
667
|
+
"nextjs/next-script-for-ga"?: DummyRule;
|
|
668
|
+
"nextjs/no-assign-module-variable"?: DummyRule;
|
|
669
|
+
"nextjs/no-async-client-component"?: DummyRule;
|
|
670
|
+
"nextjs/no-before-interactive-script-outside-document"?: DummyRule;
|
|
671
|
+
"nextjs/no-css-tags"?: DummyRule;
|
|
672
|
+
"nextjs/no-document-import-in-page"?: DummyRule;
|
|
673
|
+
"nextjs/no-duplicate-head"?: DummyRule;
|
|
674
|
+
"nextjs/no-head-element"?: DummyRule;
|
|
675
|
+
"nextjs/no-head-import-in-document"?: DummyRule;
|
|
676
|
+
"nextjs/no-html-link-for-pages"?: DummyRule;
|
|
677
|
+
"nextjs/no-img-element"?: DummyRule;
|
|
678
|
+
"nextjs/no-page-custom-font"?: DummyRule;
|
|
679
|
+
"nextjs/no-script-component-in-head"?: DummyRule;
|
|
680
|
+
"nextjs/no-styled-jsx-in-document"?: DummyRule;
|
|
681
|
+
"nextjs/no-sync-scripts"?: DummyRule;
|
|
682
|
+
"nextjs/no-title-in-document-head"?: DummyRule;
|
|
683
|
+
"nextjs/no-typos"?: DummyRule;
|
|
684
|
+
"nextjs/no-unwanted-polyfillio"?: DummyRule;
|
|
685
|
+
"no-alert"?: DummyRule;
|
|
686
|
+
"no-array-constructor"?: DummyRule;
|
|
687
|
+
"no-async-promise-executor"?: DummyRule;
|
|
688
|
+
"no-await-in-loop"?: DummyRule;
|
|
689
|
+
"no-bitwise"?: DummyRule;
|
|
690
|
+
"no-caller"?: DummyRule;
|
|
691
|
+
"no-case-declarations"?: DummyRule;
|
|
692
|
+
"no-class-assign"?: DummyRule;
|
|
693
|
+
"no-compare-neg-zero"?: DummyRule;
|
|
694
|
+
"no-cond-assign"?: DummyRule;
|
|
695
|
+
"no-console"?: DummyRule;
|
|
696
|
+
"no-const-assign"?: DummyRule;
|
|
697
|
+
"no-constant-binary-expression"?: DummyRule;
|
|
698
|
+
"no-constant-condition"?: DummyRule;
|
|
699
|
+
"no-constructor-return"?: DummyRule;
|
|
700
|
+
"no-continue"?: DummyRule;
|
|
701
|
+
"no-control-regex"?: DummyRule;
|
|
702
|
+
"no-debugger"?: DummyRule;
|
|
703
|
+
"no-delete-var"?: DummyRule;
|
|
704
|
+
"no-div-regex"?: DummyRule;
|
|
705
|
+
"no-dupe-class-members"?: DummyRule;
|
|
706
|
+
"no-dupe-else-if"?: DummyRule;
|
|
707
|
+
"no-dupe-keys"?: DummyRule;
|
|
708
|
+
"no-duplicate-case"?: DummyRule;
|
|
709
|
+
"no-duplicate-imports"?: DummyRule;
|
|
710
|
+
"no-else-return"?: DummyRule;
|
|
711
|
+
"no-empty"?: DummyRule;
|
|
712
|
+
"no-empty-character-class"?: DummyRule;
|
|
713
|
+
"no-empty-function"?: DummyRule;
|
|
714
|
+
"no-empty-pattern"?: DummyRule;
|
|
715
|
+
"no-empty-static-block"?: DummyRule;
|
|
716
|
+
"no-eq-null"?: DummyRule;
|
|
717
|
+
"no-eval"?: DummyRule;
|
|
718
|
+
"no-ex-assign"?: DummyRule;
|
|
719
|
+
"no-extend-native"?: DummyRule;
|
|
720
|
+
"no-extra-bind"?: DummyRule;
|
|
721
|
+
"no-extra-boolean-cast"?: DummyRule;
|
|
722
|
+
"no-extra-label"?: DummyRule;
|
|
723
|
+
"no-fallthrough"?: DummyRule;
|
|
724
|
+
"no-func-assign"?: DummyRule;
|
|
725
|
+
"no-global-assign"?: DummyRule;
|
|
726
|
+
"no-implicit-coercion"?: DummyRule;
|
|
727
|
+
"no-implicit-globals"?: DummyRule;
|
|
728
|
+
"no-import-assign"?: DummyRule;
|
|
729
|
+
"no-inline-comments"?: DummyRule;
|
|
730
|
+
"no-inner-declarations"?: DummyRule;
|
|
731
|
+
"no-invalid-regexp"?: DummyRule;
|
|
732
|
+
"no-irregular-whitespace"?: DummyRule;
|
|
733
|
+
"no-iterator"?: DummyRule;
|
|
734
|
+
"no-label-var"?: DummyRule;
|
|
735
|
+
"no-labels"?: DummyRule;
|
|
736
|
+
"no-lone-blocks"?: DummyRule;
|
|
737
|
+
"no-lonely-if"?: DummyRule;
|
|
738
|
+
"no-loop-func"?: DummyRule;
|
|
739
|
+
"no-loss-of-precision"?: DummyRule;
|
|
740
|
+
"no-magic-numbers"?: DummyRule;
|
|
741
|
+
"no-misleading-character-class"?: DummyRule;
|
|
742
|
+
"no-multi-assign"?: DummyRule;
|
|
743
|
+
"no-multi-str"?: DummyRule;
|
|
744
|
+
"no-negated-condition"?: DummyRule;
|
|
745
|
+
"no-nested-ternary"?: DummyRule;
|
|
746
|
+
"no-new"?: DummyRule;
|
|
747
|
+
"no-new-func"?: DummyRule;
|
|
748
|
+
"no-new-native-nonconstructor"?: DummyRule;
|
|
749
|
+
"no-new-wrappers"?: DummyRule;
|
|
750
|
+
"no-nonoctal-decimal-escape"?: DummyRule;
|
|
751
|
+
"no-obj-calls"?: DummyRule;
|
|
752
|
+
"no-object-constructor"?: DummyRule;
|
|
753
|
+
"no-param-reassign"?: DummyRule;
|
|
754
|
+
"no-plusplus"?: DummyRule;
|
|
755
|
+
"no-promise-executor-return"?: DummyRule;
|
|
756
|
+
"no-proto"?: DummyRule;
|
|
757
|
+
"no-prototype-builtins"?: DummyRule;
|
|
758
|
+
"no-redeclare"?: DummyRule;
|
|
759
|
+
"no-regex-spaces"?: DummyRule;
|
|
760
|
+
"no-restricted-exports"?: DummyRule;
|
|
761
|
+
"no-restricted-globals"?: DummyRule;
|
|
762
|
+
"no-restricted-imports"?: DummyRule;
|
|
763
|
+
"no-restricted-properties"?: DummyRule;
|
|
764
|
+
"no-return-assign"?: DummyRule;
|
|
765
|
+
"no-script-url"?: DummyRule;
|
|
766
|
+
"no-self-assign"?: DummyRule;
|
|
767
|
+
"no-self-compare"?: DummyRule;
|
|
768
|
+
"no-sequences"?: DummyRule;
|
|
769
|
+
"no-setter-return"?: DummyRule;
|
|
770
|
+
"no-shadow"?: DummyRule;
|
|
771
|
+
"no-shadow-restricted-names"?: DummyRule;
|
|
772
|
+
"no-sparse-arrays"?: DummyRule;
|
|
773
|
+
"no-template-curly-in-string"?: DummyRule;
|
|
774
|
+
"no-ternary"?: DummyRule;
|
|
775
|
+
"no-this-before-super"?: DummyRule;
|
|
776
|
+
"no-throw-literal"?: DummyRule;
|
|
777
|
+
"no-unassigned-vars"?: DummyRule;
|
|
778
|
+
"no-undef"?: DummyRule;
|
|
779
|
+
"no-undefined"?: DummyRule;
|
|
780
|
+
"no-underscore-dangle"?: DummyRule;
|
|
781
|
+
"no-unexpected-multiline"?: DummyRule;
|
|
782
|
+
"no-unmodified-loop-condition"?: DummyRule;
|
|
783
|
+
"no-unneeded-ternary"?: DummyRule;
|
|
784
|
+
"no-unreachable"?: DummyRule;
|
|
785
|
+
"no-unsafe-finally"?: DummyRule;
|
|
786
|
+
"no-unsafe-negation"?: DummyRule;
|
|
787
|
+
"no-unsafe-optional-chaining"?: DummyRule;
|
|
788
|
+
"no-unused-expressions"?: DummyRule;
|
|
789
|
+
"no-unused-labels"?: DummyRule;
|
|
790
|
+
"no-unused-private-class-members"?: DummyRule;
|
|
791
|
+
"no-unused-vars"?: DummyRule;
|
|
792
|
+
"no-use-before-define"?: DummyRule;
|
|
793
|
+
"no-useless-assignment"?: DummyRule;
|
|
794
|
+
"no-useless-backreference"?: DummyRule;
|
|
795
|
+
"no-useless-call"?: DummyRule;
|
|
796
|
+
"no-useless-catch"?: DummyRule;
|
|
797
|
+
"no-useless-computed-key"?: DummyRule;
|
|
798
|
+
"no-useless-concat"?: DummyRule;
|
|
799
|
+
"no-useless-constructor"?: DummyRule;
|
|
800
|
+
"no-useless-escape"?: DummyRule;
|
|
801
|
+
"no-useless-rename"?: DummyRule;
|
|
802
|
+
"no-useless-return"?: DummyRule;
|
|
803
|
+
"no-var"?: DummyRule;
|
|
804
|
+
"no-void"?: DummyRule;
|
|
805
|
+
"no-warning-comments"?: DummyRule;
|
|
806
|
+
"no-with"?: DummyRule;
|
|
807
|
+
"node/global-require"?: DummyRule;
|
|
808
|
+
"node/handle-callback-err"?: DummyRule;
|
|
809
|
+
"node/no-exports-assign"?: DummyRule;
|
|
810
|
+
"node/no-new-require"?: DummyRule;
|
|
811
|
+
"node/no-path-concat"?: DummyRule;
|
|
812
|
+
"node/no-process-env"?: DummyRule;
|
|
813
|
+
"object-shorthand"?: DummyRule;
|
|
814
|
+
"operator-assignment"?: DummyRule;
|
|
815
|
+
"oxc/approx-constant"?: DummyRule;
|
|
816
|
+
"oxc/bad-array-method-on-arguments"?: DummyRule;
|
|
817
|
+
"oxc/bad-bitwise-operator"?: DummyRule;
|
|
818
|
+
"oxc/bad-char-at-comparison"?: DummyRule;
|
|
819
|
+
"oxc/bad-comparison-sequence"?: DummyRule;
|
|
820
|
+
"oxc/bad-min-max-func"?: DummyRule;
|
|
821
|
+
"oxc/bad-object-literal-comparison"?: DummyRule;
|
|
822
|
+
"oxc/bad-replace-all-arg"?: DummyRule;
|
|
823
|
+
"oxc/branches-sharing-code"?: DummyRule;
|
|
824
|
+
"oxc/const-comparisons"?: DummyRule;
|
|
825
|
+
"oxc/double-comparisons"?: DummyRule;
|
|
826
|
+
"oxc/erasing-op"?: DummyRule;
|
|
827
|
+
"oxc/misrefactored-assign-op"?: DummyRule;
|
|
828
|
+
"oxc/missing-throw"?: DummyRule;
|
|
829
|
+
"oxc/no-accumulating-spread"?: DummyRule;
|
|
830
|
+
"oxc/no-async-await"?: DummyRule;
|
|
831
|
+
"oxc/no-async-endpoint-handlers"?: DummyRule;
|
|
832
|
+
"oxc/no-barrel-file"?: DummyRule;
|
|
833
|
+
"oxc/no-const-enum"?: DummyRule;
|
|
834
|
+
"oxc/no-map-spread"?: DummyRule;
|
|
835
|
+
"oxc/no-optional-chaining"?: DummyRule;
|
|
836
|
+
"oxc/no-rest-spread-properties"?: DummyRule;
|
|
837
|
+
"oxc/no-this-in-exported-function"?: DummyRule;
|
|
838
|
+
"oxc/number-arg-out-of-range"?: DummyRule;
|
|
839
|
+
"oxc/only-used-in-recursion"?: DummyRule;
|
|
840
|
+
"oxc/uninvoked-array-callback"?: DummyRule;
|
|
841
|
+
"prefer-arrow-callback"?: DummyRule;
|
|
842
|
+
"prefer-const"?: DummyRule;
|
|
843
|
+
"prefer-destructuring"?: DummyRule;
|
|
844
|
+
"prefer-exponentiation-operator"?: DummyRule;
|
|
845
|
+
"prefer-numeric-literals"?: DummyRule;
|
|
846
|
+
"prefer-object-has-own"?: DummyRule;
|
|
847
|
+
"prefer-object-spread"?: DummyRule;
|
|
848
|
+
"prefer-promise-reject-errors"?: DummyRule;
|
|
849
|
+
"prefer-regex-literals"?: DummyRule;
|
|
850
|
+
"prefer-rest-params"?: DummyRule;
|
|
851
|
+
"prefer-spread"?: DummyRule;
|
|
852
|
+
"prefer-template"?: DummyRule;
|
|
853
|
+
"preserve-caught-error"?: DummyRule;
|
|
854
|
+
"promise/always-return"?: DummyRule;
|
|
855
|
+
"promise/avoid-new"?: DummyRule;
|
|
856
|
+
"promise/catch-or-return"?: DummyRule;
|
|
857
|
+
"promise/no-callback-in-promise"?: DummyRule;
|
|
858
|
+
"promise/no-multiple-resolved"?: DummyRule;
|
|
859
|
+
"promise/no-nesting"?: DummyRule;
|
|
860
|
+
"promise/no-new-statics"?: DummyRule;
|
|
861
|
+
"promise/no-promise-in-callback"?: DummyRule;
|
|
862
|
+
"promise/no-return-in-finally"?: DummyRule;
|
|
863
|
+
"promise/no-return-wrap"?: DummyRule;
|
|
864
|
+
"promise/param-names"?: DummyRule;
|
|
865
|
+
"promise/prefer-await-to-callbacks"?: DummyRule;
|
|
866
|
+
"promise/prefer-await-to-then"?: DummyRule;
|
|
867
|
+
"promise/prefer-catch"?: DummyRule;
|
|
868
|
+
"promise/spec-only"?: DummyRule;
|
|
869
|
+
"promise/valid-params"?: DummyRule;
|
|
870
|
+
radix?: DummyRule;
|
|
871
|
+
"react-perf/jsx-no-jsx-as-prop"?: DummyRule;
|
|
872
|
+
"react-perf/jsx-no-new-array-as-prop"?: DummyRule;
|
|
873
|
+
"react-perf/jsx-no-new-function-as-prop"?: DummyRule;
|
|
874
|
+
"react-perf/jsx-no-new-object-as-prop"?: DummyRule;
|
|
875
|
+
"react/button-has-type"?: DummyRule;
|
|
876
|
+
"react/checked-requires-onchange-or-readonly"?: DummyRule;
|
|
877
|
+
"react/display-name"?: DummyRule;
|
|
878
|
+
"react/exhaustive-deps"?: DummyRule;
|
|
879
|
+
"react/forbid-component-props"?: DummyRule;
|
|
880
|
+
"react/forbid-dom-props"?: DummyRule;
|
|
881
|
+
"react/forbid-elements"?: DummyRule;
|
|
882
|
+
"react/forward-ref-uses-ref"?: DummyRule;
|
|
883
|
+
"react/hook-use-state"?: DummyRule;
|
|
884
|
+
"react/iframe-missing-sandbox"?: DummyRule;
|
|
885
|
+
"react/jsx-boolean-value"?: DummyRule;
|
|
886
|
+
"react/jsx-curly-brace-presence"?: DummyRule;
|
|
887
|
+
"react/jsx-filename-extension"?: DummyRule;
|
|
888
|
+
"react/jsx-fragments"?: DummyRule;
|
|
889
|
+
"react/jsx-handler-names"?: DummyRule;
|
|
890
|
+
"react/jsx-key"?: DummyRule;
|
|
891
|
+
"react/jsx-max-depth"?: DummyRule;
|
|
892
|
+
"react/jsx-no-comment-textnodes"?: DummyRule;
|
|
893
|
+
"react/jsx-no-constructed-context-values"?: DummyRule;
|
|
894
|
+
"react/jsx-no-duplicate-props"?: DummyRule;
|
|
895
|
+
"react/jsx-no-script-url"?: DummyRule;
|
|
896
|
+
"react/jsx-no-target-blank"?: DummyRule;
|
|
897
|
+
"react/jsx-no-undef"?: DummyRule;
|
|
898
|
+
"react/jsx-no-useless-fragment"?: DummyRule;
|
|
899
|
+
"react/jsx-pascal-case"?: DummyRule;
|
|
900
|
+
"react/jsx-props-no-spread-multi"?: DummyRule;
|
|
901
|
+
"react/jsx-props-no-spreading"?: DummyRule;
|
|
902
|
+
"react/no-array-index-key"?: DummyRule;
|
|
903
|
+
"react/no-children-prop"?: DummyRule;
|
|
904
|
+
"react/no-clone-element"?: DummyRule;
|
|
905
|
+
"react/no-danger"?: DummyRule;
|
|
906
|
+
"react/no-danger-with-children"?: DummyRule;
|
|
907
|
+
"react/no-did-mount-set-state"?: DummyRule;
|
|
908
|
+
"react/no-did-update-set-state"?: DummyRule;
|
|
909
|
+
"react/no-direct-mutation-state"?: DummyRule;
|
|
910
|
+
"react/no-find-dom-node"?: DummyRule;
|
|
911
|
+
"react/no-is-mounted"?: DummyRule;
|
|
912
|
+
"react/no-multi-comp"?: DummyRule;
|
|
913
|
+
"react/no-namespace"?: DummyRule;
|
|
914
|
+
"react/no-react-children"?: DummyRule;
|
|
915
|
+
"react/no-redundant-should-component-update"?: DummyRule;
|
|
916
|
+
"react/no-render-return-value"?: DummyRule;
|
|
917
|
+
"react/no-set-state"?: DummyRule;
|
|
918
|
+
"react/no-string-refs"?: DummyRule;
|
|
919
|
+
"react/no-this-in-sfc"?: DummyRule;
|
|
920
|
+
"react/no-unescaped-entities"?: DummyRule;
|
|
921
|
+
"react/no-unknown-property"?: DummyRule;
|
|
922
|
+
"react/no-unsafe"?: DummyRule;
|
|
923
|
+
"react/no-will-update-set-state"?: DummyRule;
|
|
924
|
+
"react/only-export-components"?: DummyRule;
|
|
925
|
+
"react/prefer-es6-class"?: DummyRule;
|
|
926
|
+
"react/prefer-function-component"?: DummyRule;
|
|
927
|
+
"react/react-in-jsx-scope"?: DummyRule;
|
|
928
|
+
"react/require-render-return"?: DummyRule;
|
|
929
|
+
"react/rules-of-hooks"?: DummyRule;
|
|
930
|
+
"react/self-closing-comp"?: DummyRule;
|
|
931
|
+
"react/state-in-constructor"?: DummyRule;
|
|
932
|
+
"react/style-prop-object"?: DummyRule;
|
|
933
|
+
"react/void-dom-elements-no-children"?: DummyRule;
|
|
934
|
+
"require-await"?: DummyRule;
|
|
935
|
+
"require-unicode-regexp"?: DummyRule;
|
|
936
|
+
"require-yield"?: DummyRule;
|
|
937
|
+
"sort-imports"?: DummyRule;
|
|
938
|
+
"sort-keys"?: DummyRule;
|
|
939
|
+
"sort-vars"?: DummyRule;
|
|
940
|
+
"symbol-description"?: DummyRule;
|
|
941
|
+
"typescript/adjacent-overload-signatures"?: DummyRule;
|
|
942
|
+
"typescript/array-type"?: DummyRule;
|
|
943
|
+
"typescript/await-thenable"?: DummyRule;
|
|
944
|
+
"typescript/ban-ts-comment"?: DummyRule;
|
|
945
|
+
"typescript/ban-tslint-comment"?: DummyRule;
|
|
946
|
+
"typescript/ban-types"?: DummyRule;
|
|
947
|
+
"typescript/class-literal-property-style"?: DummyRule;
|
|
948
|
+
"typescript/consistent-generic-constructors"?: DummyRule;
|
|
949
|
+
"typescript/consistent-indexed-object-style"?: DummyRule;
|
|
950
|
+
"typescript/consistent-return"?: DummyRule;
|
|
951
|
+
"typescript/consistent-type-assertions"?: DummyRule;
|
|
952
|
+
"typescript/consistent-type-definitions"?: DummyRule;
|
|
953
|
+
"typescript/consistent-type-exports"?: DummyRule;
|
|
954
|
+
"typescript/consistent-type-imports"?: DummyRule;
|
|
955
|
+
"typescript/dot-notation"?: DummyRule;
|
|
956
|
+
"typescript/explicit-function-return-type"?: DummyRule;
|
|
957
|
+
"typescript/explicit-member-accessibility"?: DummyRule;
|
|
958
|
+
"typescript/explicit-module-boundary-types"?: DummyRule;
|
|
959
|
+
"typescript/no-array-delete"?: DummyRule;
|
|
960
|
+
"typescript/no-base-to-string"?: DummyRule;
|
|
961
|
+
"typescript/no-confusing-non-null-assertion"?: DummyRule;
|
|
962
|
+
"typescript/no-confusing-void-expression"?: DummyRule;
|
|
963
|
+
"typescript/no-deprecated"?: DummyRule;
|
|
964
|
+
"typescript/no-duplicate-enum-values"?: DummyRule;
|
|
965
|
+
"typescript/no-duplicate-type-constituents"?: DummyRule;
|
|
966
|
+
"typescript/no-dynamic-delete"?: DummyRule;
|
|
967
|
+
"typescript/no-empty-interface"?: DummyRule;
|
|
968
|
+
"typescript/no-empty-object-type"?: DummyRule;
|
|
969
|
+
"typescript/no-explicit-any"?: DummyRule;
|
|
970
|
+
"typescript/no-extra-non-null-assertion"?: DummyRule;
|
|
971
|
+
"typescript/no-extraneous-class"?: DummyRule;
|
|
972
|
+
"typescript/no-floating-promises"?: DummyRule;
|
|
973
|
+
"typescript/no-for-in-array"?: DummyRule;
|
|
974
|
+
"typescript/no-implied-eval"?: DummyRule;
|
|
975
|
+
"typescript/no-import-type-side-effects"?: DummyRule;
|
|
976
|
+
"typescript/no-inferrable-types"?: DummyRule;
|
|
977
|
+
"typescript/no-invalid-void-type"?: DummyRule;
|
|
978
|
+
"typescript/no-meaningless-void-operator"?: DummyRule;
|
|
979
|
+
"typescript/no-misused-new"?: DummyRule;
|
|
980
|
+
"typescript/no-misused-promises"?: DummyRule;
|
|
981
|
+
"typescript/no-misused-spread"?: DummyRule;
|
|
982
|
+
"typescript/no-mixed-enums"?: DummyRule;
|
|
983
|
+
"typescript/no-namespace"?: DummyRule;
|
|
984
|
+
"typescript/no-non-null-asserted-nullish-coalescing"?: DummyRule;
|
|
985
|
+
"typescript/no-non-null-asserted-optional-chain"?: DummyRule;
|
|
986
|
+
"typescript/no-non-null-assertion"?: DummyRule;
|
|
987
|
+
"typescript/no-redundant-type-constituents"?: DummyRule;
|
|
988
|
+
"typescript/no-require-imports"?: DummyRule;
|
|
989
|
+
"typescript/no-restricted-types"?: DummyRule;
|
|
990
|
+
"typescript/no-this-alias"?: DummyRule;
|
|
991
|
+
"typescript/no-unnecessary-boolean-literal-compare"?: DummyRule;
|
|
992
|
+
"typescript/no-unnecessary-condition"?: DummyRule;
|
|
993
|
+
"typescript/no-unnecessary-parameter-property-assignment"?: DummyRule;
|
|
994
|
+
"typescript/no-unnecessary-qualifier"?: DummyRule;
|
|
995
|
+
"typescript/no-unnecessary-template-expression"?: DummyRule;
|
|
996
|
+
"typescript/no-unnecessary-type-arguments"?: DummyRule;
|
|
997
|
+
"typescript/no-unnecessary-type-assertion"?: DummyRule;
|
|
998
|
+
"typescript/no-unnecessary-type-constraint"?: DummyRule;
|
|
999
|
+
"typescript/no-unnecessary-type-conversion"?: DummyRule;
|
|
1000
|
+
"typescript/no-unnecessary-type-parameters"?: DummyRule;
|
|
1001
|
+
"typescript/no-unsafe-argument"?: DummyRule;
|
|
1002
|
+
"typescript/no-unsafe-assignment"?: DummyRule;
|
|
1003
|
+
"typescript/no-unsafe-call"?: DummyRule;
|
|
1004
|
+
"typescript/no-unsafe-declaration-merging"?: DummyRule;
|
|
1005
|
+
"typescript/no-unsafe-enum-comparison"?: DummyRule;
|
|
1006
|
+
"typescript/no-unsafe-function-type"?: DummyRule;
|
|
1007
|
+
"typescript/no-unsafe-member-access"?: DummyRule;
|
|
1008
|
+
"typescript/no-unsafe-return"?: DummyRule;
|
|
1009
|
+
"typescript/no-unsafe-type-assertion"?: DummyRule;
|
|
1010
|
+
"typescript/no-unsafe-unary-minus"?: DummyRule;
|
|
1011
|
+
"typescript/no-useless-default-assignment"?: DummyRule;
|
|
1012
|
+
"typescript/no-useless-empty-export"?: DummyRule;
|
|
1013
|
+
"typescript/no-var-requires"?: DummyRule;
|
|
1014
|
+
"typescript/no-wrapper-object-types"?: DummyRule;
|
|
1015
|
+
"typescript/non-nullable-type-assertion-style"?: DummyRule;
|
|
1016
|
+
"typescript/only-throw-error"?: DummyRule;
|
|
1017
|
+
"typescript/parameter-properties"?: DummyRule;
|
|
1018
|
+
"typescript/prefer-as-const"?: DummyRule;
|
|
1019
|
+
"typescript/prefer-enum-initializers"?: DummyRule;
|
|
1020
|
+
"typescript/prefer-find"?: DummyRule;
|
|
1021
|
+
"typescript/prefer-for-of"?: DummyRule;
|
|
1022
|
+
"typescript/prefer-function-type"?: DummyRule;
|
|
1023
|
+
"typescript/prefer-includes"?: DummyRule;
|
|
1024
|
+
"typescript/prefer-literal-enum-member"?: DummyRule;
|
|
1025
|
+
"typescript/prefer-namespace-keyword"?: DummyRule;
|
|
1026
|
+
"typescript/prefer-nullish-coalescing"?: DummyRule;
|
|
1027
|
+
"typescript/prefer-optional-chain"?: DummyRule;
|
|
1028
|
+
"typescript/prefer-promise-reject-errors"?: DummyRule;
|
|
1029
|
+
"typescript/prefer-readonly"?: DummyRule;
|
|
1030
|
+
"typescript/prefer-readonly-parameter-types"?: DummyRule;
|
|
1031
|
+
"typescript/prefer-reduce-type-parameter"?: DummyRule;
|
|
1032
|
+
"typescript/prefer-regexp-exec"?: DummyRule;
|
|
1033
|
+
"typescript/prefer-return-this-type"?: DummyRule;
|
|
1034
|
+
"typescript/prefer-string-starts-ends-with"?: DummyRule;
|
|
1035
|
+
"typescript/prefer-ts-expect-error"?: DummyRule;
|
|
1036
|
+
"typescript/promise-function-async"?: DummyRule;
|
|
1037
|
+
"typescript/related-getter-setter-pairs"?: DummyRule;
|
|
1038
|
+
"typescript/require-array-sort-compare"?: DummyRule;
|
|
1039
|
+
"typescript/require-await"?: DummyRule;
|
|
1040
|
+
"typescript/restrict-plus-operands"?: DummyRule;
|
|
1041
|
+
"typescript/restrict-template-expressions"?: DummyRule;
|
|
1042
|
+
"typescript/return-await"?: DummyRule;
|
|
1043
|
+
"typescript/strict-boolean-expressions"?: DummyRule;
|
|
1044
|
+
"typescript/strict-void-return"?: DummyRule;
|
|
1045
|
+
"typescript/switch-exhaustiveness-check"?: DummyRule;
|
|
1046
|
+
"typescript/triple-slash-reference"?: DummyRule;
|
|
1047
|
+
"typescript/unbound-method"?: DummyRule;
|
|
1048
|
+
"typescript/unified-signatures"?: DummyRule;
|
|
1049
|
+
"typescript/use-unknown-in-catch-callback-variable"?: DummyRule;
|
|
1050
|
+
"unicode-bom"?: DummyRule;
|
|
1051
|
+
"unicorn/catch-error-name"?: DummyRule;
|
|
1052
|
+
"unicorn/consistent-assert"?: DummyRule;
|
|
1053
|
+
"unicorn/consistent-date-clone"?: DummyRule;
|
|
1054
|
+
"unicorn/consistent-empty-array-spread"?: DummyRule;
|
|
1055
|
+
"unicorn/consistent-existence-index-check"?: DummyRule;
|
|
1056
|
+
"unicorn/consistent-function-scoping"?: DummyRule;
|
|
1057
|
+
"unicorn/consistent-template-literal-escape"?: DummyRule;
|
|
1058
|
+
"unicorn/custom-error-definition"?: DummyRule;
|
|
1059
|
+
"unicorn/empty-brace-spaces"?: DummyRule;
|
|
1060
|
+
"unicorn/error-message"?: DummyRule;
|
|
1061
|
+
"unicorn/escape-case"?: DummyRule;
|
|
1062
|
+
"unicorn/explicit-length-check"?: DummyRule;
|
|
1063
|
+
"unicorn/filename-case"?: DummyRule;
|
|
1064
|
+
"unicorn/new-for-builtins"?: DummyRule;
|
|
1065
|
+
"unicorn/no-abusive-eslint-disable"?: DummyRule;
|
|
1066
|
+
"unicorn/no-accessor-recursion"?: DummyRule;
|
|
1067
|
+
"unicorn/no-anonymous-default-export"?: DummyRule;
|
|
1068
|
+
"unicorn/no-array-callback-reference"?: DummyRule;
|
|
1069
|
+
"unicorn/no-array-for-each"?: DummyRule;
|
|
1070
|
+
"unicorn/no-array-method-this-argument"?: DummyRule;
|
|
1071
|
+
"unicorn/no-array-reduce"?: DummyRule;
|
|
1072
|
+
"unicorn/no-array-reverse"?: DummyRule;
|
|
1073
|
+
"unicorn/no-array-sort"?: DummyRule;
|
|
1074
|
+
"unicorn/no-await-expression-member"?: DummyRule;
|
|
1075
|
+
"unicorn/no-await-in-promise-methods"?: DummyRule;
|
|
1076
|
+
"unicorn/no-console-spaces"?: DummyRule;
|
|
1077
|
+
"unicorn/no-document-cookie"?: DummyRule;
|
|
1078
|
+
"unicorn/no-empty-file"?: DummyRule;
|
|
1079
|
+
"unicorn/no-hex-escape"?: DummyRule;
|
|
1080
|
+
"unicorn/no-immediate-mutation"?: DummyRule;
|
|
1081
|
+
"unicorn/no-instanceof-array"?: DummyRule;
|
|
1082
|
+
"unicorn/no-instanceof-builtins"?: DummyRule;
|
|
1083
|
+
"unicorn/no-invalid-fetch-options"?: DummyRule;
|
|
1084
|
+
"unicorn/no-invalid-remove-event-listener"?: DummyRule;
|
|
1085
|
+
"unicorn/no-length-as-slice-end"?: DummyRule;
|
|
1086
|
+
"unicorn/no-lonely-if"?: DummyRule;
|
|
1087
|
+
"unicorn/no-magic-array-flat-depth"?: DummyRule;
|
|
1088
|
+
"unicorn/no-negated-condition"?: DummyRule;
|
|
1089
|
+
"unicorn/no-negation-in-equality-check"?: DummyRule;
|
|
1090
|
+
"unicorn/no-nested-ternary"?: DummyRule;
|
|
1091
|
+
"unicorn/no-new-array"?: DummyRule;
|
|
1092
|
+
"unicorn/no-new-buffer"?: DummyRule;
|
|
1093
|
+
"unicorn/no-null"?: DummyRule;
|
|
1094
|
+
"unicorn/no-object-as-default-parameter"?: DummyRule;
|
|
1095
|
+
"unicorn/no-process-exit"?: DummyRule;
|
|
1096
|
+
"unicorn/no-single-promise-in-promise-methods"?: DummyRule;
|
|
1097
|
+
"unicorn/no-static-only-class"?: DummyRule;
|
|
1098
|
+
"unicorn/no-thenable"?: DummyRule;
|
|
1099
|
+
"unicorn/no-this-assignment"?: DummyRule;
|
|
1100
|
+
"unicorn/no-typeof-undefined"?: DummyRule;
|
|
1101
|
+
"unicorn/no-unnecessary-array-flat-depth"?: DummyRule;
|
|
1102
|
+
"unicorn/no-unnecessary-array-splice-count"?: DummyRule;
|
|
1103
|
+
"unicorn/no-unnecessary-await"?: DummyRule;
|
|
1104
|
+
"unicorn/no-unnecessary-slice-end"?: DummyRule;
|
|
1105
|
+
"unicorn/no-unreadable-array-destructuring"?: DummyRule;
|
|
1106
|
+
"unicorn/no-unreadable-iife"?: DummyRule;
|
|
1107
|
+
"unicorn/no-useless-collection-argument"?: DummyRule;
|
|
1108
|
+
"unicorn/no-useless-error-capture-stack-trace"?: DummyRule;
|
|
1109
|
+
"unicorn/no-useless-fallback-in-spread"?: DummyRule;
|
|
1110
|
+
"unicorn/no-useless-iterator-to-array"?: DummyRule;
|
|
1111
|
+
"unicorn/no-useless-length-check"?: DummyRule;
|
|
1112
|
+
"unicorn/no-useless-promise-resolve-reject"?: DummyRule;
|
|
1113
|
+
"unicorn/no-useless-spread"?: DummyRule;
|
|
1114
|
+
"unicorn/no-useless-switch-case"?: DummyRule;
|
|
1115
|
+
"unicorn/no-useless-undefined"?: DummyRule;
|
|
1116
|
+
"unicorn/no-zero-fractions"?: DummyRule;
|
|
1117
|
+
"unicorn/number-literal-case"?: DummyRule;
|
|
1118
|
+
"unicorn/numeric-separators-style"?: DummyRule;
|
|
1119
|
+
"unicorn/prefer-add-event-listener"?: DummyRule;
|
|
1120
|
+
"unicorn/prefer-array-find"?: DummyRule;
|
|
1121
|
+
"unicorn/prefer-array-flat"?: DummyRule;
|
|
1122
|
+
"unicorn/prefer-array-flat-map"?: DummyRule;
|
|
1123
|
+
"unicorn/prefer-array-index-of"?: DummyRule;
|
|
1124
|
+
"unicorn/prefer-array-some"?: DummyRule;
|
|
1125
|
+
"unicorn/prefer-at"?: DummyRule;
|
|
1126
|
+
"unicorn/prefer-bigint-literals"?: DummyRule;
|
|
1127
|
+
"unicorn/prefer-blob-reading-methods"?: DummyRule;
|
|
1128
|
+
"unicorn/prefer-class-fields"?: DummyRule;
|
|
1129
|
+
"unicorn/prefer-classlist-toggle"?: DummyRule;
|
|
1130
|
+
"unicorn/prefer-code-point"?: DummyRule;
|
|
1131
|
+
"unicorn/prefer-date-now"?: DummyRule;
|
|
1132
|
+
"unicorn/prefer-default-parameters"?: DummyRule;
|
|
1133
|
+
"unicorn/prefer-dom-node-append"?: DummyRule;
|
|
1134
|
+
"unicorn/prefer-dom-node-dataset"?: DummyRule;
|
|
1135
|
+
"unicorn/prefer-dom-node-remove"?: DummyRule;
|
|
1136
|
+
"unicorn/prefer-dom-node-text-content"?: DummyRule;
|
|
1137
|
+
"unicorn/prefer-event-target"?: DummyRule;
|
|
1138
|
+
"unicorn/prefer-global-this"?: DummyRule;
|
|
1139
|
+
"unicorn/prefer-import-meta-properties"?: DummyRule;
|
|
1140
|
+
"unicorn/prefer-includes"?: DummyRule;
|
|
1141
|
+
"unicorn/prefer-keyboard-event-key"?: DummyRule;
|
|
1142
|
+
"unicorn/prefer-logical-operator-over-ternary"?: DummyRule;
|
|
1143
|
+
"unicorn/prefer-math-min-max"?: DummyRule;
|
|
1144
|
+
"unicorn/prefer-math-trunc"?: DummyRule;
|
|
1145
|
+
"unicorn/prefer-modern-dom-apis"?: DummyRule;
|
|
1146
|
+
"unicorn/prefer-modern-math-apis"?: DummyRule;
|
|
1147
|
+
"unicorn/prefer-module"?: DummyRule;
|
|
1148
|
+
"unicorn/prefer-native-coercion-functions"?: DummyRule;
|
|
1149
|
+
"unicorn/prefer-negative-index"?: DummyRule;
|
|
1150
|
+
"unicorn/prefer-node-protocol"?: DummyRule;
|
|
1151
|
+
"unicorn/prefer-number-properties"?: DummyRule;
|
|
1152
|
+
"unicorn/prefer-object-from-entries"?: DummyRule;
|
|
1153
|
+
"unicorn/prefer-optional-catch-binding"?: DummyRule;
|
|
1154
|
+
"unicorn/prefer-prototype-methods"?: DummyRule;
|
|
1155
|
+
"unicorn/prefer-query-selector"?: DummyRule;
|
|
1156
|
+
"unicorn/prefer-reflect-apply"?: DummyRule;
|
|
1157
|
+
"unicorn/prefer-regexp-test"?: DummyRule;
|
|
1158
|
+
"unicorn/prefer-response-static-json"?: DummyRule;
|
|
1159
|
+
"unicorn/prefer-set-has"?: DummyRule;
|
|
1160
|
+
"unicorn/prefer-set-size"?: DummyRule;
|
|
1161
|
+
"unicorn/prefer-spread"?: DummyRule;
|
|
1162
|
+
"unicorn/prefer-string-raw"?: DummyRule;
|
|
1163
|
+
"unicorn/prefer-string-replace-all"?: DummyRule;
|
|
1164
|
+
"unicorn/prefer-string-slice"?: DummyRule;
|
|
1165
|
+
"unicorn/prefer-string-starts-ends-with"?: DummyRule;
|
|
1166
|
+
"unicorn/prefer-string-trim-start-end"?: DummyRule;
|
|
1167
|
+
"unicorn/prefer-structured-clone"?: DummyRule;
|
|
1168
|
+
"unicorn/prefer-ternary"?: DummyRule;
|
|
1169
|
+
"unicorn/prefer-top-level-await"?: DummyRule;
|
|
1170
|
+
"unicorn/prefer-type-error"?: DummyRule;
|
|
1171
|
+
"unicorn/relative-url-style"?: DummyRule;
|
|
1172
|
+
"unicorn/require-array-join-separator"?: DummyRule;
|
|
1173
|
+
"unicorn/require-module-attributes"?: DummyRule;
|
|
1174
|
+
"unicorn/require-module-specifiers"?: DummyRule;
|
|
1175
|
+
"unicorn/require-number-to-fixed-digits-argument"?: DummyRule;
|
|
1176
|
+
"unicorn/require-post-message-target-origin"?: DummyRule;
|
|
1177
|
+
"unicorn/switch-case-braces"?: DummyRule;
|
|
1178
|
+
"unicorn/switch-case-break-position"?: DummyRule;
|
|
1179
|
+
"unicorn/text-encoding-identifier-case"?: DummyRule;
|
|
1180
|
+
"unicorn/throw-new-error"?: DummyRule;
|
|
1181
|
+
"use-isnan"?: DummyRule;
|
|
1182
|
+
"valid-typeof"?: DummyRule;
|
|
1183
|
+
"vars-on-top"?: DummyRule;
|
|
1184
|
+
"vitest/consistent-each-for"?: DummyRule;
|
|
1185
|
+
"vitest/consistent-test-filename"?: DummyRule;
|
|
1186
|
+
"vitest/consistent-test-it"?: DummyRule;
|
|
1187
|
+
"vitest/consistent-vitest-vi"?: DummyRule;
|
|
1188
|
+
"vitest/expect-expect"?: DummyRule;
|
|
1189
|
+
"vitest/hoisted-apis-on-top"?: DummyRule;
|
|
1190
|
+
"vitest/max-expects"?: DummyRule;
|
|
1191
|
+
"vitest/max-nested-describe"?: DummyRule;
|
|
1192
|
+
"vitest/no-alias-methods"?: DummyRule;
|
|
1193
|
+
"vitest/no-commented-out-tests"?: DummyRule;
|
|
1194
|
+
"vitest/no-conditional-expect"?: DummyRule;
|
|
1195
|
+
"vitest/no-conditional-in-test"?: DummyRule;
|
|
1196
|
+
"vitest/no-conditional-tests"?: DummyRule;
|
|
1197
|
+
"vitest/no-disabled-tests"?: DummyRule;
|
|
1198
|
+
"vitest/no-duplicate-hooks"?: DummyRule;
|
|
1199
|
+
"vitest/no-focused-tests"?: DummyRule;
|
|
1200
|
+
"vitest/no-hooks"?: DummyRule;
|
|
1201
|
+
"vitest/no-identical-title"?: DummyRule;
|
|
1202
|
+
"vitest/no-import-node-test"?: DummyRule;
|
|
1203
|
+
"vitest/no-importing-vitest-globals"?: DummyRule;
|
|
1204
|
+
"vitest/no-interpolation-in-snapshots"?: DummyRule;
|
|
1205
|
+
"vitest/no-large-snapshots"?: DummyRule;
|
|
1206
|
+
"vitest/no-mocks-import"?: DummyRule;
|
|
1207
|
+
"vitest/no-restricted-matchers"?: DummyRule;
|
|
1208
|
+
"vitest/no-restricted-vi-methods"?: DummyRule;
|
|
1209
|
+
"vitest/no-standalone-expect"?: DummyRule;
|
|
1210
|
+
"vitest/no-test-prefixes"?: DummyRule;
|
|
1211
|
+
"vitest/no-test-return-statement"?: DummyRule;
|
|
1212
|
+
"vitest/no-unneeded-async-expect-function"?: DummyRule;
|
|
1213
|
+
"vitest/prefer-called-exactly-once-with"?: DummyRule;
|
|
1214
|
+
"vitest/prefer-called-once"?: DummyRule;
|
|
1215
|
+
"vitest/prefer-called-times"?: DummyRule;
|
|
1216
|
+
"vitest/prefer-called-with"?: DummyRule;
|
|
1217
|
+
"vitest/prefer-comparison-matcher"?: DummyRule;
|
|
1218
|
+
"vitest/prefer-describe-function-title"?: DummyRule;
|
|
1219
|
+
"vitest/prefer-each"?: DummyRule;
|
|
1220
|
+
"vitest/prefer-equality-matcher"?: DummyRule;
|
|
1221
|
+
"vitest/prefer-expect-assertions"?: DummyRule;
|
|
1222
|
+
"vitest/prefer-expect-resolves"?: DummyRule;
|
|
1223
|
+
"vitest/prefer-expect-type-of"?: DummyRule;
|
|
1224
|
+
"vitest/prefer-hooks-in-order"?: DummyRule;
|
|
1225
|
+
"vitest/prefer-hooks-on-top"?: DummyRule;
|
|
1226
|
+
"vitest/prefer-import-in-mock"?: DummyRule;
|
|
1227
|
+
"vitest/prefer-importing-vitest-globals"?: DummyRule;
|
|
1228
|
+
"vitest/prefer-lowercase-title"?: DummyRule;
|
|
1229
|
+
"vitest/prefer-mock-promise-shorthand"?: DummyRule;
|
|
1230
|
+
"vitest/prefer-mock-return-shorthand"?: DummyRule;
|
|
1231
|
+
"vitest/prefer-snapshot-hint"?: DummyRule;
|
|
1232
|
+
"vitest/prefer-spy-on"?: DummyRule;
|
|
1233
|
+
"vitest/prefer-strict-boolean-matchers"?: DummyRule;
|
|
1234
|
+
"vitest/prefer-strict-equal"?: DummyRule;
|
|
1235
|
+
"vitest/prefer-to-be"?: DummyRule;
|
|
1236
|
+
"vitest/prefer-to-be-falsy"?: DummyRule;
|
|
1237
|
+
"vitest/prefer-to-be-object"?: DummyRule;
|
|
1238
|
+
"vitest/prefer-to-be-truthy"?: DummyRule;
|
|
1239
|
+
"vitest/prefer-to-contain"?: DummyRule;
|
|
1240
|
+
"vitest/prefer-to-have-been-called-times"?: DummyRule;
|
|
1241
|
+
"vitest/prefer-to-have-length"?: DummyRule;
|
|
1242
|
+
"vitest/prefer-todo"?: DummyRule;
|
|
1243
|
+
"vitest/require-awaited-expect-poll"?: DummyRule;
|
|
1244
|
+
"vitest/require-hook"?: DummyRule;
|
|
1245
|
+
"vitest/require-local-test-context-for-concurrent-snapshots"?: DummyRule;
|
|
1246
|
+
"vitest/require-mock-type-parameters"?: DummyRule;
|
|
1247
|
+
"vitest/require-test-timeout"?: DummyRule;
|
|
1248
|
+
"vitest/require-to-throw-message"?: DummyRule;
|
|
1249
|
+
"vitest/require-top-level-describe"?: DummyRule;
|
|
1250
|
+
"vitest/valid-describe-callback"?: DummyRule;
|
|
1251
|
+
"vitest/valid-expect"?: DummyRule;
|
|
1252
|
+
"vitest/valid-expect-in-promise"?: DummyRule;
|
|
1253
|
+
"vitest/valid-title"?: DummyRule;
|
|
1254
|
+
"vitest/warn-todo"?: DummyRule;
|
|
1255
|
+
"vue/define-emits-declaration"?: DummyRule;
|
|
1256
|
+
"vue/define-props-declaration"?: DummyRule;
|
|
1257
|
+
"vue/define-props-destructuring"?: DummyRule;
|
|
1258
|
+
"vue/max-props"?: DummyRule;
|
|
1259
|
+
"vue/no-arrow-functions-in-watch"?: DummyRule;
|
|
1260
|
+
"vue/no-deprecated-data-object-declaration"?: DummyRule;
|
|
1261
|
+
"vue/no-deprecated-delete-set"?: DummyRule;
|
|
1262
|
+
"vue/no-deprecated-destroyed-lifecycle"?: DummyRule;
|
|
1263
|
+
"vue/no-deprecated-events-api"?: DummyRule;
|
|
1264
|
+
"vue/no-deprecated-model-definition"?: DummyRule;
|
|
1265
|
+
"vue/no-deprecated-vue-config-keycodes"?: DummyRule;
|
|
1266
|
+
"vue/no-export-in-script-setup"?: DummyRule;
|
|
1267
|
+
"vue/no-import-compiler-macros"?: DummyRule;
|
|
1268
|
+
"vue/no-lifecycle-after-await"?: DummyRule;
|
|
1269
|
+
"vue/no-multiple-slot-args"?: DummyRule;
|
|
1270
|
+
"vue/no-required-prop-with-default"?: DummyRule;
|
|
1271
|
+
"vue/no-this-in-before-route-enter"?: DummyRule;
|
|
1272
|
+
"vue/prefer-import-from-vue"?: DummyRule;
|
|
1273
|
+
"vue/require-default-export"?: DummyRule;
|
|
1274
|
+
"vue/require-typed-ref"?: DummyRule;
|
|
1275
|
+
"vue/return-in-computed-property"?: DummyRule;
|
|
1276
|
+
"vue/valid-define-emits"?: DummyRule;
|
|
1277
|
+
"vue/valid-define-props"?: DummyRule;
|
|
1278
|
+
yoda?: DummyRule;
|
|
413
1279
|
[k: string]: DummyRule;
|
|
414
1280
|
}
|
|
415
1281
|
/**
|
|
@@ -442,6 +1308,7 @@ interface DummyRuleMap {
|
|
|
442
1308
|
* ```
|
|
443
1309
|
*/
|
|
444
1310
|
interface OxlintPluginSettings {
|
|
1311
|
+
jest?: JestPluginSettings;
|
|
445
1312
|
jsdoc?: JSDocPluginSettings;
|
|
446
1313
|
"jsx-a11y"?: JSXA11YPluginSettings;
|
|
447
1314
|
next?: NextPluginSettings;
|
|
@@ -449,6 +1316,23 @@ interface OxlintPluginSettings {
|
|
|
449
1316
|
vitest?: VitestPluginSettings;
|
|
450
1317
|
[k: string]: unknown;
|
|
451
1318
|
}
|
|
1319
|
+
/**
|
|
1320
|
+
* Configure Jest plugin rules.
|
|
1321
|
+
*
|
|
1322
|
+
* See [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest)'s
|
|
1323
|
+
* configuration for a full reference.
|
|
1324
|
+
*/
|
|
1325
|
+
interface JestPluginSettings {
|
|
1326
|
+
/**
|
|
1327
|
+
* Jest version — accepts a number (`29`) or a semver string (`"29.1.0"` or `"v29.1.0"`),
|
|
1328
|
+
* storing only the major version.
|
|
1329
|
+
* ::: warning
|
|
1330
|
+
* Using this config will override the `no-deprecated-functions` config set.
|
|
1331
|
+
* :::
|
|
1332
|
+
*/
|
|
1333
|
+
version?: JestVersionSchema;
|
|
1334
|
+
[k: string]: unknown;
|
|
1335
|
+
}
|
|
452
1336
|
interface JSDocPluginSettings {
|
|
453
1337
|
/**
|
|
454
1338
|
* Only for `require-(yields|returns|description|example|param|throws)` rule
|
|
@@ -551,7 +1435,7 @@ interface JSXA11YPluginSettings {
|
|
|
551
1435
|
* Will be treated as an `h3`. If not set, this component will be treated
|
|
552
1436
|
* as a `Box`.
|
|
553
1437
|
*/
|
|
554
|
-
polymorphicPropName?: string
|
|
1438
|
+
polymorphicPropName?: string;
|
|
555
1439
|
[k: string]: unknown;
|
|
556
1440
|
}
|
|
557
1441
|
/**
|
|
@@ -663,7 +1547,7 @@ interface ReactPluginSettings {
|
|
|
663
1547
|
* }
|
|
664
1548
|
* ```
|
|
665
1549
|
*/
|
|
666
|
-
version?: string
|
|
1550
|
+
version?: string;
|
|
667
1551
|
[k: string]: unknown;
|
|
668
1552
|
}
|
|
669
1553
|
/**
|