@jsse/eslint-config 0.9.6 → 0.9.7
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/CHANGELOG.md +5 -0
- package/README.md +35 -11
- package/dist/cli.js +8 -8
- package/dist/{fixable-rules-map-rvCKnp8b.d.ts → fixable-rules-map-B6PZdB33.d.ts} +70 -45
- package/dist/{fixable-rules-map-dNndx2ig.js → fixable-rules-map-D78O3kqI.js} +7 -1
- package/dist/fixable.d.ts +2 -2
- package/dist/fixable.js +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.js +67 -63
- package/dist/{rule-types-muUsP1iz.d.ts → rule-types-Ipu1JCu5.d.ts} +541 -420
- package/dist/rule-types.d.ts +2 -2
- package/package.json +9 -9
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { C as MarkdownRules, E as JavascriptRules, F as AntfuRules, M as DeMorganRules, N as CommandRules, P as BuiltinRules, S as NRules, T as JsdocRules, a as YmlRules, b as NodeTestRules, c as UnicornRules, d as StylisticRules, g as ReactHooksRules, h as ReactRefreshRules, j as E18eRules, k as EslintReactRules, l as TypescriptRules, o as VitestRules, s as UnusedImportsRules, t as AllRules, v as PnpmRules, w as JsoncRules } from "./rule-types-Ipu1JCu5.js";
|
|
2
2
|
import { ParserOptions } from "@typescript-eslint/parser";
|
|
3
3
|
import { Linter } from "eslint";
|
|
4
4
|
//#region node_modules/.pnpm/eslint-config-flat-gitignore@2.3.0_eslint@10.7.0_jiti@2.7.0_/node_modules/eslint-config-flat-gitignore/dist/index.d.mts
|
|
@@ -56,7 +56,7 @@ interface FlatGitignoreOptions {
|
|
|
56
56
|
//#endregion
|
|
57
57
|
//#region src/types.d.ts
|
|
58
58
|
type RulesRecord = Linter.RulesRecord & AllRules;
|
|
59
|
-
type
|
|
59
|
+
type TypedConfig = Omit<Linter.Config<Linter.RulesRecord & AllRules>, "plugins"> & {
|
|
60
60
|
/**
|
|
61
61
|
* An object containing a name-value mapping of plugin names to plugin objects. When `files` is specified, these plugins are only available to the matching files.
|
|
62
62
|
* @see [Using plugins in your configuration](https://eslint.org/docs/latest/user-guide/configuring/configuration-files-new#using-plugins-in-your-configuration)
|
|
@@ -66,9 +66,25 @@ type Config = Omit<Linter.Config<Linter.RulesRecord & AllRules>, "plugins"> & {
|
|
|
66
66
|
type TypescriptConfigRules = TypescriptRules & BuiltinRules;
|
|
67
67
|
type Awaitable<T> = T | Promise<T>;
|
|
68
68
|
type RuleName = keyof AllRules;
|
|
69
|
-
type
|
|
69
|
+
type TypedConfigWithId = TypedConfig & {
|
|
70
70
|
name: string;
|
|
71
71
|
};
|
|
72
|
+
type OptionsCommon = {
|
|
73
|
+
/**
|
|
74
|
+
* Enable debug mode.
|
|
75
|
+
*/
|
|
76
|
+
debug?: boolean;
|
|
77
|
+
/**
|
|
78
|
+
* The prefix for the name of the config item.
|
|
79
|
+
* @default "jsse"
|
|
80
|
+
*/
|
|
81
|
+
rootId?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Type of the project. `lib` will enable more strict rules for libraries.
|
|
84
|
+
* @default 'lib'
|
|
85
|
+
*/
|
|
86
|
+
type?: "app" | "lib";
|
|
87
|
+
};
|
|
72
88
|
type OptionsComponentExts = {
|
|
73
89
|
/**
|
|
74
90
|
* Additional extensions for components.
|
|
@@ -77,8 +93,8 @@ type OptionsComponentExts = {
|
|
|
77
93
|
*/
|
|
78
94
|
componentExts?: string[];
|
|
79
95
|
};
|
|
80
|
-
type EslintConfigFnAsync<T = undefined> = (options?: T) => Promise<
|
|
81
|
-
type EslintConfigFnSync<T = undefined> = (options?: T) =>
|
|
96
|
+
type EslintConfigFnAsync<T = undefined> = (options?: T) => Promise<TypedConfigWithId[]>;
|
|
97
|
+
type EslintConfigFnSync<T = undefined> = (options?: T) => TypedConfigWithId[];
|
|
82
98
|
type EslintConfigFn<T = undefined> = EslintConfigFnAsync<T> | EslintConfigFnSync<T>;
|
|
83
99
|
type OptionsFiles = {
|
|
84
100
|
/**
|
|
@@ -124,7 +140,7 @@ type OptionsTypeScriptWithTypes = {
|
|
|
124
140
|
/**
|
|
125
141
|
* Override only type-aware rules.
|
|
126
142
|
*/
|
|
127
|
-
overridesTypeAware?:
|
|
143
|
+
overridesTypeAware?: TypedConfig["rules"];
|
|
128
144
|
/**
|
|
129
145
|
* Override TypeScript rules.
|
|
130
146
|
*/
|
|
@@ -192,13 +208,7 @@ type OptionsMarkdown = OptionsComponentExts & {
|
|
|
192
208
|
type OptionsN = {
|
|
193
209
|
overrides?: NRules;
|
|
194
210
|
};
|
|
195
|
-
type OptionsNodeTest = {
|
|
196
|
-
/**
|
|
197
|
-
* Files to include for node-test rules.
|
|
198
|
-
*
|
|
199
|
-
* Defaults to `GLOB_TESTS`
|
|
200
|
-
*/
|
|
201
|
-
files?: string[];
|
|
211
|
+
type OptionsNodeTest = OptionsFiles & {
|
|
202
212
|
/**
|
|
203
213
|
* eslint-node-test preset to use as the base ruleset.
|
|
204
214
|
* @default "recommended"
|
|
@@ -213,18 +223,23 @@ type OptionsPnpm = {
|
|
|
213
223
|
overrides?: PnpmRules;
|
|
214
224
|
};
|
|
215
225
|
type ReactHooksPreset = "recommended" | "recommended-latest";
|
|
216
|
-
|
|
226
|
+
/**
|
|
227
|
+
* `eslint-plugin-react-refresh` also ships a `next` preset; it's
|
|
228
|
+
* intentionally omitted here.
|
|
229
|
+
*/
|
|
230
|
+
type ReactRefreshPreset = "recommended" | "vite";
|
|
231
|
+
type EslintReactPreset = "recommended" | "recommended-type-checked" | "recommended-typescript" | "strict" | "strict-type-checked" | "strict-typescript";
|
|
217
232
|
type OptionsReactConfig = {
|
|
218
233
|
/**
|
|
219
234
|
* Enable eslint-plugin-react-hooks rules or select its preset.
|
|
220
|
-
* @default "recommended"
|
|
235
|
+
* @default "recommended-latest"
|
|
221
236
|
*/
|
|
222
237
|
hooks?: boolean | ReactHooksPreset;
|
|
223
238
|
/**
|
|
224
|
-
* Enable eslint-plugin-react-refresh rules.
|
|
225
|
-
* @default
|
|
239
|
+
* Enable eslint-plugin-react-refresh rules or select its preset.
|
|
240
|
+
* @default "recommended"
|
|
226
241
|
*/
|
|
227
|
-
refresh?: boolean;
|
|
242
|
+
refresh?: boolean | ReactRefreshPreset;
|
|
228
243
|
/**
|
|
229
244
|
* Use `refresh` instead.
|
|
230
245
|
* @deprecated
|
|
@@ -234,10 +249,13 @@ type OptionsReactConfig = {
|
|
|
234
249
|
/**
|
|
235
250
|
* `@eslint-react/eslint-plugin` preset to use as the base ruleset.
|
|
236
251
|
*
|
|
237
|
-
*
|
|
252
|
+
* Named `eslintReactPreset` (not `preset`) because `@eslint-react` is a
|
|
253
|
+
* distinct plugin from `eslint-plugin-react-hooks`/`eslint-plugin-react-refresh`
|
|
254
|
+
* — this only selects the core `@eslint-react` ruleset, not React config as
|
|
255
|
+
* a whole. Preset names match the kebab-case `@eslint-react` config names.
|
|
238
256
|
* @default "recommended"
|
|
239
257
|
*/
|
|
240
|
-
|
|
258
|
+
eslintReactPreset?: EslintReactPreset;
|
|
241
259
|
};
|
|
242
260
|
type OptionsSortTsconfig = {
|
|
243
261
|
extendTsconfigGlobs?: string[];
|
|
@@ -381,11 +399,24 @@ type OptionsDeprecated = {
|
|
|
381
399
|
overrides?: Record<string, unknown>;
|
|
382
400
|
};
|
|
383
401
|
};
|
|
384
|
-
type
|
|
402
|
+
type OptionsJsonSorting = {
|
|
385
403
|
/**
|
|
386
|
-
* Enable
|
|
404
|
+
* Enable sorting of package.json files.
|
|
405
|
+
* @default true
|
|
387
406
|
*/
|
|
388
|
-
|
|
407
|
+
sortPackageJson?: boolean;
|
|
408
|
+
/**
|
|
409
|
+
* Enable sorting of tsconfig.json files.
|
|
410
|
+
* @default true
|
|
411
|
+
*/
|
|
412
|
+
sortTsconfig?: boolean | OptionsSortTsconfig;
|
|
413
|
+
/**
|
|
414
|
+
* Enable sorting of geojson files.
|
|
415
|
+
* @default false
|
|
416
|
+
*/
|
|
417
|
+
sortGeojson?: boolean;
|
|
418
|
+
};
|
|
419
|
+
type OptionsConfig = OptionsCommon & OptionsComponentExts & OptionsConfigs & OptionsJsonSorting & OptionsDeprecated & {
|
|
389
420
|
/**
|
|
390
421
|
* Enable configuration diagnostics.
|
|
391
422
|
* @default true
|
|
@@ -414,15 +445,10 @@ type OptionsConfig = OptionsComponentExts & OptionsTypeScriptParserOptions & Opt
|
|
|
414
445
|
* PLUGIN!.
|
|
415
446
|
*/
|
|
416
447
|
prettier?: boolean;
|
|
417
|
-
/**
|
|
418
|
-
* The prefix for the name of the config item.
|
|
419
|
-
* @default "jsse"
|
|
420
|
-
*/
|
|
421
|
-
rootId?: string;
|
|
422
448
|
/**
|
|
423
449
|
* Optional function to run before the final config is returned.
|
|
424
450
|
*/
|
|
425
|
-
preReturn?: (configs:
|
|
451
|
+
preReturn?: (configs: TypedConfig[]) => TypedConfig[] | Awaitable<TypedConfig[]>;
|
|
426
452
|
/**
|
|
427
453
|
* Enable gitignore support.
|
|
428
454
|
*
|
|
@@ -431,21 +457,6 @@ type OptionsConfig = OptionsComponentExts & OptionsTypeScriptParserOptions & Opt
|
|
|
431
457
|
* @default true
|
|
432
458
|
*/
|
|
433
459
|
gitignore?: boolean | FlatGitignoreOptions;
|
|
434
|
-
/**
|
|
435
|
-
* Enable sorting of package.json files.
|
|
436
|
-
* @default true
|
|
437
|
-
*/
|
|
438
|
-
sortPackageJson?: boolean;
|
|
439
|
-
/**
|
|
440
|
-
* Enable sorting of tsconfig.json files.
|
|
441
|
-
* @default true
|
|
442
|
-
*/
|
|
443
|
-
sortTsconfig?: boolean | OptionsSortTsconfig;
|
|
444
|
-
/**
|
|
445
|
-
* Enable sorting of geojson files.
|
|
446
|
-
* @default false
|
|
447
|
-
*/
|
|
448
|
-
sortGeojson?: boolean;
|
|
449
460
|
/**
|
|
450
461
|
* Enable import/export sorting via perfectionist.
|
|
451
462
|
* @default false
|
|
@@ -480,8 +491,22 @@ type OptionsConfig = OptionsComponentExts & OptionsTypeScriptParserOptions & Opt
|
|
|
480
491
|
*/
|
|
481
492
|
isInEditor?: boolean;
|
|
482
493
|
};
|
|
494
|
+
/**
|
|
495
|
+
* `normalizeOptions()`'s return type: every option `defaultOptions()`
|
|
496
|
+
* genuinely can default is required, so callers stop needing `?? true`/
|
|
497
|
+
* `?? false` fallbacks on data that's already been normalized.
|
|
498
|
+
*
|
|
499
|
+
* `preReturn` stays optional on purpose — it's a user-supplied hook with no
|
|
500
|
+
* sensible default function; defaulting it to a no-op would make it always
|
|
501
|
+
* run (extra work, extra debug logging) where today it's skipped entirely
|
|
502
|
+
* when unset.
|
|
503
|
+
*/
|
|
504
|
+
type NormalizedOptionsConfig = Required<Omit<OptionsConfig, "off" | "preReturn">> & {
|
|
505
|
+
off: RuleName[];
|
|
506
|
+
preReturn?: OptionsConfig["preReturn"];
|
|
507
|
+
};
|
|
483
508
|
//#endregion
|
|
484
509
|
//#region src/_generated/fixable-rules-map.d.ts
|
|
485
510
|
declare const FIXABLE_RULES_MAP: Record<string, RuleName[]>;
|
|
486
511
|
//#endregion
|
|
487
|
-
export { OptionsConfig as a,
|
|
512
|
+
export { OptionsConfig as a, RulesRecord as c, TypescriptPreset as d, NormalizedOptionsConfig as i, TypedConfig as l, EslintConfigFn as n, ReactHooksPreset as o, EslintReactPreset as r, RuleName as s, FIXABLE_RULES_MAP as t, TypedConfigWithId as u };
|
|
@@ -159,14 +159,18 @@ const FIXABLE_RULES_MAP = {
|
|
|
159
159
|
"node-test/no-compound-assertion",
|
|
160
160
|
"node-test/no-incorrect-deep-equal",
|
|
161
161
|
"node-test/no-incorrect-strict-equal",
|
|
162
|
+
"node-test/no-late-test-activity",
|
|
162
163
|
"node-test/no-unawaited-promise-assertion",
|
|
163
164
|
"node-test/no-unawaited-rejects",
|
|
164
165
|
"node-test/no-unawaited-subtest",
|
|
165
166
|
"node-test/prefer-assert-match",
|
|
166
167
|
"node-test/prefer-equality-assertion",
|
|
167
168
|
"node-test/prefer-lowercase-title",
|
|
169
|
+
"node-test/prefer-mock-accessor",
|
|
170
|
+
"node-test/prefer-mock-call-count",
|
|
168
171
|
"node-test/prefer-strict-assert",
|
|
169
|
-
"node-test/test-title"
|
|
172
|
+
"node-test/test-title",
|
|
173
|
+
"node-test/valid-test-tags"
|
|
170
174
|
],
|
|
171
175
|
noOnlyTests: ["no-only-tests/no-only-tests"],
|
|
172
176
|
perfectionist: [
|
|
@@ -462,6 +466,7 @@ const FIXABLE_RULES_MAP = {
|
|
|
462
466
|
"unicorn/no-invalid-well-known-symbol-methods",
|
|
463
467
|
"unicorn/no-lonely-if",
|
|
464
468
|
"unicorn/no-manually-wrapped-comments",
|
|
469
|
+
"unicorn/no-missing-local-resource",
|
|
465
470
|
"unicorn/no-named-default",
|
|
466
471
|
"unicorn/no-negated-array-predicate",
|
|
467
472
|
"unicorn/no-negated-comparison",
|
|
@@ -486,6 +491,7 @@ const FIXABLE_RULES_MAP = {
|
|
|
486
491
|
"unicorn/no-unnecessary-nested-ternary",
|
|
487
492
|
"unicorn/no-unnecessary-slice-end",
|
|
488
493
|
"unicorn/no-unnecessary-splice",
|
|
494
|
+
"unicorn/no-unnecessary-string-trim",
|
|
489
495
|
"unicorn/no-unreadable-array-destructuring",
|
|
490
496
|
"unicorn/no-useless-boolean-cast",
|
|
491
497
|
"unicorn/no-useless-coercion",
|
package/dist/fixable.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { t as FIXABLE_RULES_MAP } from "./fixable-rules-map-
|
|
1
|
+
import { t as FIXABLE_RULES_MAP } from "./fixable-rules-map-B6PZdB33.js";
|
|
2
2
|
//#region src/fixable.d.ts
|
|
3
|
-
declare const FIXABLE_RULES: ("accessor-pairs" | "array-bracket-newline" | "array-bracket-spacing" | "array-callback-return" | "array-element-newline" | "arrow-body-style" | "arrow-parens" | "arrow-spacing" | "block-scoped-var" | "block-spacing" | "brace-style" | "callback-return" | "camelcase" | "capitalized-comments" | "class-methods-use-this" | "comma-dangle" | "comma-spacing" | "comma-style" | "complexity" | "computed-property-spacing" | "consistent-return" | "consistent-this" | "constructor-super" | "curly" | "default-case" | "default-case-last" | "default-param-last" | "dot-location" | "dot-notation" | "eol-last" | "eqeqeq" | "for-direction" | "func-call-spacing" | "func-name-matching" | "func-names" | "func-style" | "function-call-argument-newline" | "function-paren-newline" | "generator-star-spacing" | "getter-return" | "global-require" | "grouped-accessor-pairs" | "guard-for-in" | "handle-callback-err" | "id-blacklist" | "id-denylist" | "id-length" | "id-match" | "implicit-arrow-linebreak" | "indent" | "indent-legacy" | "init-declarations" | "jsx-quotes" | "key-spacing" | "keyword-spacing" | "line-comment-position" | "linebreak-style" | "lines-around-comment" | "lines-around-directive" | "lines-between-class-members" | "logical-assignment-operators" | "max-classes-per-file" | "max-depth" | "max-len" | "max-lines" | "max-lines-per-function" | "max-nested-callbacks" | "max-params" | "max-statements" | "max-statements-per-line" | "multiline-comment-style" | "multiline-ternary" | "new-cap" | "new-parens" | "newline-after-var" | "newline-before-return" | "newline-per-chained-call" | "no-alert" | "no-array-constructor" | "no-async-promise-executor" | "no-await-in-loop" | "no-bitwise" | "no-buffer-constructor" | "no-caller" | "no-case-declarations" | "no-catch-shadow" | "no-class-assign" | "no-compare-neg-zero" | "no-cond-assign" | "no-confusing-arrow" | "no-console" | "no-const-assign" | "no-constant-binary-expression" | "no-constant-condition" | "no-constructor-return" | "no-continue" | "no-control-regex" | "no-debugger" | "no-delete-var" | "no-div-regex" | "no-dupe-args" | "no-dupe-class-members" | "no-dupe-else-if" | "no-dupe-keys" | "no-duplicate-case" | "no-duplicate-imports" | "no-else-return" | "no-empty" | "no-empty-character-class" | "no-empty-function" | "no-empty-pattern" | "no-empty-static-block" | "no-eq-null" | "no-eval" | "no-ex-assign" | "no-extend-native" | "no-extra-bind" | "no-extra-boolean-cast" | "no-extra-label" | "no-extra-parens" | "no-extra-semi" | "no-fallthrough" | "no-floating-decimal" | "no-func-assign" | "no-global-assign" | "no-implicit-coercion" | "no-implicit-globals" | "no-implied-eval" | "no-import-assign" | "no-inline-comments" | "no-inner-declarations" | "no-invalid-regexp" | "no-invalid-this" | "no-irregular-whitespace" | "no-iterator" | "no-label-var" | "no-labels" | "no-lone-blocks" | "no-lonely-if" | "no-loop-func" | "no-loss-of-precision" | "no-magic-numbers" | "no-misleading-character-class" | "no-mixed-operators" | "no-mixed-requires" | "no-mixed-spaces-and-tabs" | "no-multi-assign" | "no-multi-spaces" | "no-multi-str" | "no-multiple-empty-lines" | "no-native-reassign" | "no-negated-condition" | "no-negated-in-lhs" | "no-nested-ternary" | "no-new" | "no-new-func" | "no-new-native-nonconstructor" | "no-new-object" | "no-new-require" | "no-new-symbol" | "no-new-wrappers" | "no-nonoctal-decimal-escape" | "no-obj-calls" | "no-object-constructor" | "no-octal" | "no-octal-escape" | "no-param-reassign" | "no-path-concat" | "no-plusplus" | "no-process-env" | "no-process-exit" | "no-promise-executor-return" | "no-proto" | "no-prototype-builtins" | "no-redeclare" | "no-regex-spaces" | "no-restricted-exports" | "no-restricted-globals" | "no-restricted-imports" | "no-restricted-modules" | "no-restricted-properties" | "no-restricted-syntax" | "no-return-assign" | "no-return-await" | "no-script-url" | "no-self-assign" | "no-self-compare" | "no-sequences" | "no-setter-return" | "no-shadow" | "no-shadow-restricted-names" | "no-spaced-func" | "no-sparse-arrays" | "no-sync" | "no-tabs" | "no-template-curly-in-string" | "no-ternary" | "no-this-before-super" | "no-throw-literal" | "no-trailing-spaces" | "no-unassigned-vars" | "no-undef" | "no-undef-init" | "no-undefined" | "no-underscore-dangle" | "no-unexpected-multiline" | "no-unmodified-loop-condition" | "no-unneeded-ternary" | "no-unreachable" | "no-unreachable-loop" | "no-unsafe-finally" | "no-unsafe-negation" | "no-unsafe-optional-chaining" | "no-unused-expressions" | "no-unused-labels" | "no-unused-private-class-members" | "no-unused-vars" | "no-use-before-define" | "no-useless-assignment" | "no-useless-backreference" | "no-useless-call" | "no-useless-catch" | "no-useless-computed-key" | "no-useless-concat" | "no-useless-constructor" | "no-useless-escape" | "no-useless-rename" | "no-useless-return" | "no-var" | "no-void" | "no-warning-comments" | "no-whitespace-before-property" | "no-with" | "nonblock-statement-body-position" | "object-curly-newline" | "object-curly-spacing" | "object-property-newline" | "object-shorthand" | "one-var" | "one-var-declaration-per-line" | "operator-assignment" | "operator-linebreak" | "padded-blocks" | "padding-line-between-statements" | "prefer-arrow-callback" | "prefer-const" | "prefer-destructuring" | "prefer-exponentiation-operator" | "prefer-named-capture-group" | "prefer-numeric-literals" | "prefer-object-has-own" | "prefer-object-spread" | "prefer-promise-reject-errors" | "prefer-reflect" | "prefer-regex-literals" | "prefer-rest-params" | "prefer-spread" | "prefer-template" | "preserve-caught-error" | "quote-props" | "quotes" | "radix" | "require-atomic-updates" | "require-await" | "require-unicode-regexp" | "require-yield" | "rest-spread-spacing" | "semi" | "semi-spacing" | "semi-style" | "sort-imports" | "sort-keys" | "sort-vars" | "space-before-blocks" | "space-before-function-paren" | "space-in-parens" | "space-infix-ops" | "space-unary-ops" | "spaced-comment" | "strict" | "switch-colon-spacing" | "symbol-description" | "template-curly-spacing" | "template-tag-spacing" | "unicode-bom" | "use-isnan" | "valid-typeof" | "vars-on-top" | "wrap-iife" | "wrap-regex" | "yield-star-spacing" | "yoda" | "antfu/consistent-chaining" | "antfu/consistent-list-newline" | "antfu/curly" | "antfu/if-newline" | "antfu/import-dedupe" | "antfu/indent-unindent" | "antfu/no-import-dist" | "antfu/no-import-node-modules-by-path" | "antfu/no-top-level-await" | "antfu/no-ts-export-equal" | "antfu/top-level-function" | "command/command" | "de-morgan/no-negated-conjunction" | "de-morgan/no-negated-disjunction" | "e18e/ban-dependencies" | "e18e/no-delete-property" | "e18e/no-indexof-equality" | "e18e/no-spread-in-reduce" | "e18e/prefer-array-at" | "e18e/prefer-array-fill" | "e18e/prefer-array-from-map" | "e18e/prefer-array-some" | "e18e/prefer-array-to-reversed" | "e18e/prefer-array-to-sorted" | "e18e/prefer-array-to-spliced" | "e18e/prefer-date-now" | "e18e/prefer-exponentiation-operator" | "e18e/prefer-flatmap-over-map-flat" | "e18e/prefer-get-or-insert" | "e18e/prefer-includes" | "e18e/prefer-includes-over-regex-test" | "e18e/prefer-inline-equality" | "e18e/prefer-nullish-coalescing" | "e18e/prefer-object-has-own" | "e18e/prefer-regex-test" | "e18e/prefer-spread-syntax" | "e18e/prefer-static-collator" | "e18e/prefer-static-regex" | "e18e/prefer-string-fromcharcode" | "e18e/prefer-timer-args" | "e18e/prefer-url-canparse" | "eslint-comments/disable-enable-pair" | "eslint-comments/no-aggregating-enable" | "eslint-comments/no-duplicate-disable" | "eslint-comments/no-restricted-disable" | "eslint-comments/no-unlimited-disable" | "eslint-comments/no-unused-disable" | "eslint-comments/no-unused-enable" | "eslint-comments/no-use" | "eslint-comments/require-description" | "@eslint-react/dom-no-dangerously-set-innerhtml" | "@eslint-react/dom-no-dangerously-set-innerhtml-with-children" | "@eslint-react/dom-no-find-dom-node" | "@eslint-react/dom-no-flush-sync" | "@eslint-react/dom-no-hydrate" | "@eslint-react/dom-no-missing-button-type" | "@eslint-react/dom-no-missing-iframe-sandbox" | "@eslint-react/dom-no-render" | "@eslint-react/dom-no-render-return-value" | "@eslint-react/dom-no-script-url" | "@eslint-react/dom-no-string-style-prop" | "@eslint-react/dom-no-unknown-property" | "@eslint-react/dom-no-unsafe-iframe-sandbox" | "@eslint-react/dom-no-unsafe-target-blank" | "@eslint-react/dom-no-use-form-state" | "@eslint-react/dom-no-void-elements-with-children" | "@eslint-react/error-boundaries" | "@eslint-react/exhaustive-deps" | "@eslint-react/globals" | "@eslint-react/immutability" | "@eslint-react/jsx-no-children-prop" | "@eslint-react/jsx-no-children-prop-with-children" | "@eslint-react/jsx-no-comment-textnodes" | "@eslint-react/jsx-no-key-after-spread" | "@eslint-react/jsx-no-leaked-dollar" | "@eslint-react/jsx-no-leaked-semicolon" | "@eslint-react/jsx-no-namespace" | "@eslint-react/jsx-no-useless-fragment" | "@eslint-react/naming-convention-context-name" | "@eslint-react/naming-convention-id-name" | "@eslint-react/naming-convention-ref-name" | "@eslint-react/no-access-state-in-setstate" | "@eslint-react/no-array-index-key" | "@eslint-react/no-children-count" | "@eslint-react/no-children-for-each" | "@eslint-react/no-children-map" | "@eslint-react/no-children-only" | "@eslint-react/no-children-to-array" | "@eslint-react/no-class-component" | "@eslint-react/no-clone-element" | "@eslint-react/no-component-will-mount" | "@eslint-react/no-component-will-receive-props" | "@eslint-react/no-component-will-update" | "@eslint-react/no-context-provider" | "@eslint-react/no-create-ref" | "@eslint-react/no-direct-mutation-state" | "@eslint-react/no-duplicate-key" | "@eslint-react/no-forward-ref" | "@eslint-react/no-implicit-children" | "@eslint-react/no-implicit-key" | "@eslint-react/no-implicit-ref" | "@eslint-react/no-leaked-conditional-rendering" | "@eslint-react/no-missing-component-display-name" | "@eslint-react/no-missing-context-display-name" | "@eslint-react/no-missing-key" | "@eslint-react/no-misused-capture-owner-stack" | "@eslint-react/no-nested-component-definitions" | "@eslint-react/no-nested-lazy-component-declarations" | "@eslint-react/no-set-state-in-component-did-mount" | "@eslint-react/no-set-state-in-component-did-update" | "@eslint-react/no-set-state-in-component-will-update" | "@eslint-react/no-unnecessary-use-prefix" | "@eslint-react/no-unsafe-component-will-mount" | "@eslint-react/no-unsafe-component-will-receive-props" | "@eslint-react/no-unsafe-component-will-update" | "@eslint-react/no-unstable-context-value" | "@eslint-react/no-unstable-default-props" | "@eslint-react/no-unused-class-component-members" | "@eslint-react/no-unused-props" | "@eslint-react/no-unused-state" | "@eslint-react/no-use-context" | "@eslint-react/purity" | "@eslint-react/refs" | "@eslint-react/rsc-function-definition" | "@eslint-react/rules-of-hooks" | "@eslint-react/set-state-in-effect" | "@eslint-react/set-state-in-render" | "@eslint-react/static-components" | "@eslint-react/unsupported-syntax" | "@eslint-react/use-memo" | "@eslint-react/use-state" | "@eslint-react/web-api-no-leaked-event-listener" | "@eslint-react/web-api-no-leaked-fetch" | "@eslint-react/web-api-no-leaked-intersection-observer" | "@eslint-react/web-api-no-leaked-interval" | "@eslint-react/web-api-no-leaked-resize-observer" | "@eslint-react/web-api-no-leaked-timeout" | "@eslint-react/x-error-boundaries" | "@eslint-react/x-exhaustive-deps" | "@eslint-react/x-globals" | "@eslint-react/x-immutability" | "@eslint-react/x-no-access-state-in-setstate" | "@eslint-react/x-no-array-index-key" | "@eslint-react/x-no-children-count" | "@eslint-react/x-no-children-for-each" | "@eslint-react/x-no-children-map" | "@eslint-react/x-no-children-only" | "@eslint-react/x-no-children-to-array" | "@eslint-react/x-no-class-component" | "@eslint-react/x-no-clone-element" | "@eslint-react/x-no-component-will-mount" | "@eslint-react/x-no-component-will-receive-props" | "@eslint-react/x-no-component-will-update" | "@eslint-react/x-no-context-provider" | "@eslint-react/x-no-create-ref" | "@eslint-react/x-no-direct-mutation-state" | "@eslint-react/x-no-duplicate-key" | "@eslint-react/x-no-forward-ref" | "@eslint-react/x-no-implicit-children" | "@eslint-react/x-no-implicit-key" | "@eslint-react/x-no-implicit-ref" | "@eslint-react/x-no-leaked-conditional-rendering" | "@eslint-react/x-no-missing-component-display-name" | "@eslint-react/x-no-missing-context-display-name" | "@eslint-react/x-no-missing-key" | "@eslint-react/x-no-misused-capture-owner-stack" | "@eslint-react/x-no-nested-component-definitions" | "@eslint-react/x-no-nested-lazy-component-declarations" | "@eslint-react/x-no-set-state-in-component-did-mount" | "@eslint-react/x-no-set-state-in-component-did-update" | "@eslint-react/x-no-set-state-in-component-will-update" | "@eslint-react/x-no-unnecessary-use-prefix" | "@eslint-react/x-no-unsafe-component-will-mount" | "@eslint-react/x-no-unsafe-component-will-receive-props" | "@eslint-react/x-no-unsafe-component-will-update" | "@eslint-react/x-no-unstable-context-value" | "@eslint-react/x-no-unstable-default-props" | "@eslint-react/x-no-unused-class-component-members" | "@eslint-react/x-no-unused-props" | "@eslint-react/x-no-unused-state" | "@eslint-react/x-no-use-context" | "@eslint-react/x-purity" | "@eslint-react/x-refs" | "@eslint-react/x-rules-of-hooks" | "@eslint-react/x-set-state-in-effect" | "@eslint-react/x-set-state-in-render" | "@eslint-react/x-static-components" | "@eslint-react/x-unsupported-syntax" | "@eslint-react/x-use-memo" | "@eslint-react/x-use-state" | "import/consistent-type-specifier-style" | "import/exports-last" | "import/first" | "import/newline-after-import" | "import/no-default-export" | "import/no-duplicates" | "import/no-mutable-exports" | "import/no-named-default" | "import/prefer-default-export" | "jsdoc/check-access" | "jsdoc/check-alignment" | "jsdoc/check-examples" | "jsdoc/check-indentation" | "jsdoc/check-line-alignment" | "jsdoc/check-param-names" | "jsdoc/check-property-names" | "jsdoc/check-syntax" | "jsdoc/check-tag-names" | "jsdoc/check-template-names" | "jsdoc/check-types" | "jsdoc/check-values" | "jsdoc/convert-to-jsdoc-comments" | "jsdoc/empty-tags" | "jsdoc/escape-inline-tags" | "jsdoc/implements-on-classes" | "jsdoc/imports-as-dependencies" | "jsdoc/informative-docs" | "jsdoc/lines-before-block" | "jsdoc/match-description" | "jsdoc/match-name" | "jsdoc/multiline-blocks" | "jsdoc/no-bad-blocks" | "jsdoc/no-blank-block-descriptions" | "jsdoc/no-blank-blocks" | "jsdoc/no-defaults" | "jsdoc/no-missing-syntax" | "jsdoc/no-multi-asterisks" | "jsdoc/no-restricted-syntax" | "jsdoc/no-types" | "jsdoc/no-undefined-types" | "jsdoc/prefer-import-tag" | "jsdoc/reject-any-type" | "jsdoc/reject-function-type" | "jsdoc/require-asterisk-prefix" | "jsdoc/require-description" | "jsdoc/require-description-complete-sentence" | "jsdoc/require-example" | "jsdoc/require-file-overview" | "jsdoc/require-hyphen-before-param-description" | "jsdoc/require-jsdoc" | "jsdoc/require-next-description" | "jsdoc/require-next-type" | "jsdoc/require-param" | "jsdoc/require-param-description" | "jsdoc/require-param-name" | "jsdoc/require-param-type" | "jsdoc/require-property" | "jsdoc/require-property-description" | "jsdoc/require-property-name" | "jsdoc/require-property-type" | "jsdoc/require-rejects" | "jsdoc/require-returns" | "jsdoc/require-returns-check" | "jsdoc/require-returns-description" | "jsdoc/require-returns-type" | "jsdoc/require-tags" | "jsdoc/require-template" | "jsdoc/require-template-description" | "jsdoc/require-throws" | "jsdoc/require-throws-description" | "jsdoc/require-throws-type" | "jsdoc/require-yields" | "jsdoc/require-yields-check" | "jsdoc/require-yields-description" | "jsdoc/require-yields-type" | "jsdoc/sort-tags" | "jsdoc/tag-lines" | "jsdoc/text-escaping" | "jsdoc/ts-method-signature-style" | "jsdoc/ts-no-empty-object-type" | "jsdoc/ts-no-unnecessary-template-expression" | "jsdoc/ts-prefer-function-type" | "jsdoc/type-formatting" | "jsdoc/valid-types" | "jsonc/array-bracket-newline" | "jsonc/array-bracket-spacing" | "jsonc/array-element-newline" | "jsonc/auto" | "jsonc/comma-dangle" | "jsonc/comma-style" | "jsonc/indent" | "jsonc/key-name-casing" | "jsonc/key-spacing" | "jsonc/no-bigint-literals" | "jsonc/no-binary-expression" | "jsonc/no-binary-numeric-literals" | "jsonc/no-comments" | "jsonc/no-dupe-keys" | "jsonc/no-escape-sequence-in-identifier" | "jsonc/no-floating-decimal" | "jsonc/no-hexadecimal-numeric-literals" | "jsonc/no-infinity" | "jsonc/no-irregular-whitespace" | "jsonc/no-multi-str" | "jsonc/no-nan" | "jsonc/no-number-props" | "jsonc/no-numeric-separators" | "jsonc/no-octal" | "jsonc/no-octal-escape" | "jsonc/no-octal-numeric-literals" | "jsonc/no-parenthesized" | "jsonc/no-plus-sign" | "jsonc/no-regexp-literals" | "jsonc/no-sparse-arrays" | "jsonc/no-template-literals" | "jsonc/no-undefined-value" | "jsonc/no-unicode-codepoint-escapes" | "jsonc/no-useless-escape" | "jsonc/object-curly-newline" | "jsonc/object-curly-spacing" | "jsonc/object-property-newline" | "jsonc/quote-props" | "jsonc/quotes" | "jsonc/sort-array-values" | "jsonc/sort-keys" | "jsonc/space-unary-ops" | "jsonc/valid-json-number" | "jsonc/vue-custom-block/no-parsing-error" | "markdown/fenced-code-language" | "markdown/fenced-code-meta" | "markdown/heading-increment" | "markdown/no-bare-urls" | "markdown/no-duplicate-definitions" | "markdown/no-duplicate-headings" | "markdown/no-empty-definitions" | "markdown/no-empty-images" | "markdown/no-empty-links" | "markdown/no-html" | "markdown/no-invalid-label-refs" | "markdown/no-missing-atx-heading-space" | "markdown/no-missing-label-refs" | "markdown/no-missing-link-fragments" | "markdown/no-multiple-h1" | "markdown/no-reference-like-urls" | "markdown/no-reversed-media-syntax" | "markdown/no-space-in-emphasis" | "markdown/no-unused-definitions" | "markdown/require-alt-text" | "markdown/table-column-count" | "n/callback-return" | "n/exports-style" | "n/file-extension-in-import" | "n/global-require" | "n/handle-callback-err" | "n/hashbang" | "n/no-callback-literal" | "n/no-deprecated-api" | "n/no-exports-assign" | "n/no-extraneous-import" | "n/no-extraneous-require" | "n/no-hide-core-modules" | "n/no-missing-import" | "n/no-missing-require" | "n/no-mixed-requires" | "n/no-new-require" | "n/no-path-concat" | "n/no-process-env" | "n/no-process-exit" | "n/no-restricted-import" | "n/no-restricted-require" | "n/no-sync" | "n/no-top-level-await" | "n/no-unpublished-bin" | "n/no-unpublished-import" | "n/no-unpublished-require" | "n/no-unsupported-features/es-builtins" | "n/no-unsupported-features/es-syntax" | "n/no-unsupported-features/node-builtins" | "n/prefer-global/buffer" | "n/prefer-global/console" | "n/prefer-global/crypto" | "n/prefer-global/process" | "n/prefer-global/text-decoder" | "n/prefer-global/text-encoder" | "n/prefer-global/timers" | "n/prefer-global/url" | "n/prefer-global/url-search-params" | "n/prefer-node-protocol" | "n/prefer-promises/dns" | "n/prefer-promises/fs" | "n/process-exit-as-throw" | "n/shebang" | "no-only-tests/no-only-tests" | "node-test/assertion-arguments" | "node-test/consistent-assert-style" | "node-test/consistent-assert-throws-callback-style" | "node-test/consistent-modifier-style" | "node-test/consistent-test-context-name" | "node-test/consistent-test-filename" | "node-test/consistent-test-it" | "node-test/hooks-order" | "node-test/max-assertions" | "node-test/max-nested-describe" | "node-test/no-assert-in-describe" | "node-test/no-assert-in-hook" | "node-test/no-assert-match-string" | "node-test/no-assert-throws-async" | "node-test/no-assert-throws-call" | "node-test/no-assert-throws-multiple-statements" | "node-test/no-assert-throws-string" | "node-test/no-async-describe" | "node-test/no-async-fn-without-await" | "node-test/no-callback-and-promise" | "node-test/no-commented-tests" | "node-test/no-compound-assertion" | "node-test/no-conditional-assertion" | "node-test/no-conditional-in-test" | "node-test/no-conditional-tests" | "node-test/no-conflicting-modifiers" | "node-test/no-constant-assertion" | "node-test/no-done-callback" | "node-test/no-duplicate-assertions" | "node-test/no-duplicate-hooks" | "node-test/no-duplicate-plan" | "node-test/no-export" | "node-test/no-identical-assertion-arguments" | "node-test/no-identical-title" | "node-test/no-incorrect-deep-equal" | "node-test/no-incorrect-strict-equal" | "node-test/no-loop-static-title" | "node-test/no-misused-concurrency" | "node-test/no-mock-timers-destructured-import" | "node-test/no-nested-tests" | "node-test/no-only-test" | "node-test/no-parent-test-context" | "node-test/no-process-env-mutation" | "node-test/no-process-exit-in-test" | "node-test/no-skip-test" | "node-test/no-skip-without-reason" | "node-test/no-skip-without-return" | "node-test/no-sleep-in-test" | "node-test/no-snapshot-in-loop" | "node-test/no-standalone-assert" | "node-test/no-test-inside-hook" | "node-test/no-test-return-statement" | "node-test/no-todo-test" | "node-test/no-unawaited-promise-assertion" | "node-test/no-unawaited-rejects" | "node-test/no-unawaited-subtest" | "node-test/no-unknown-test-options" | "node-test/no-useless-assertion" | "node-test/prefer-assert-match" | "node-test/prefer-assert-throws" | "node-test/prefer-async-await" | "node-test/prefer-context-mock" | "node-test/prefer-diagnostic" | "node-test/prefer-equality-assertion" | "node-test/prefer-hooks-on-top" | "node-test/prefer-lowercase-title" | "node-test/prefer-mock-method" | "node-test/prefer-strict-assert" | "node-test/prefer-test-context-assert" | "node-test/prefer-todo" | "node-test/require-assertion" | "node-test/require-await-concurrent-subtests" | "node-test/require-context-assert-with-plan" | "node-test/require-hook" | "node-test/require-mock-timers-advance" | "node-test/require-mock-timers-apis" | "node-test/require-throws-expectation" | "node-test/require-throws-validator-return-true" | "node-test/require-top-level-describe" | "node-test/test-title" | "node-test/test-title-format" | "node-test/valid-describe-callback" | "perfectionist/sort-array-includes" | "perfectionist/sort-arrays" | "perfectionist/sort-classes" | "perfectionist/sort-decorators" | "perfectionist/sort-enums" | "perfectionist/sort-export-attributes" | "perfectionist/sort-exports" | "perfectionist/sort-heritage-clauses" | "perfectionist/sort-import-attributes" | "perfectionist/sort-imports" | "perfectionist/sort-interfaces" | "perfectionist/sort-intersection-types" | "perfectionist/sort-jsx-props" | "perfectionist/sort-maps" | "perfectionist/sort-modules" | "perfectionist/sort-named-exports" | "perfectionist/sort-named-imports" | "perfectionist/sort-object-types" | "perfectionist/sort-objects" | "perfectionist/sort-sets" | "perfectionist/sort-switch-case" | "perfectionist/sort-union-types" | "perfectionist/sort-variable-declarations" | "pnpm/json-enforce-catalog" | "pnpm/json-prefer-workspace-settings" | "pnpm/json-valid-catalog" | "pnpm/yaml-enforce-settings" | "pnpm/yaml-no-duplicate-catalog-item" | "pnpm/yaml-no-unused-catalog-item" | "pnpm/yaml-valid-packages" | "react-hooks/capitalized-calls" | "react-hooks/component-hook-factories" | "react-hooks/config" | "react-hooks/error-boundaries" | "react-hooks/exhaustive-deps" | "react-hooks/exhaustive-effect-dependencies" | "react-hooks/fbt" | "react-hooks/gating" | "react-hooks/globals" | "react-hooks/hooks" | "react-hooks/immutability" | "react-hooks/incompatible-library" | "react-hooks/invariant" | "react-hooks/memo-dependencies" | "react-hooks/memoized-effect-dependencies" | "react-hooks/no-deriving-state-in-effects" | "react-hooks/preserve-manual-memoization" | "react-hooks/purity" | "react-hooks/refs" | "react-hooks/rule-suppression" | "react-hooks/rules-of-hooks" | "react-hooks/set-state-in-effect" | "react-hooks/set-state-in-render" | "react-hooks/static-components" | "react-hooks/syntax" | "react-hooks/todo" | "react-hooks/unsupported-syntax" | "react-hooks/use-memo" | "react-hooks/void-use-memo" | "react-refresh/only-export-components" | "regexp/confusing-quantifier" | "regexp/control-character-escape" | "regexp/grapheme-string-literal" | "regexp/hexadecimal-escape" | "regexp/letter-case" | "regexp/match-any" | "regexp/negation" | "regexp/no-contradiction-with-assertion" | "regexp/no-control-character" | "regexp/no-dupe-characters-character-class" | "regexp/no-dupe-disjunctions" | "regexp/no-empty-alternative" | "regexp/no-empty-capturing-group" | "regexp/no-empty-character-class" | "regexp/no-empty-group" | "regexp/no-empty-lookarounds-assertion" | "regexp/no-empty-string-literal" | "regexp/no-escape-backspace" | "regexp/no-extra-lookaround-assertions" | "regexp/no-invalid-regexp" | "regexp/no-invisible-character" | "regexp/no-lazy-ends" | "regexp/no-legacy-features" | "regexp/no-misleading-capturing-group" | "regexp/no-misleading-unicode-character" | "regexp/no-missing-g-flag" | "regexp/no-non-standard-flag" | "regexp/no-obscure-range" | "regexp/no-octal" | "regexp/no-optional-assertion" | "regexp/no-potentially-useless-backreference" | "regexp/no-standalone-backslash" | "regexp/no-super-linear-backtracking" | "regexp/no-super-linear-move" | "regexp/no-trivially-nested-assertion" | "regexp/no-trivially-nested-quantifier" | "regexp/no-unused-capturing-group" | "regexp/no-useless-assertions" | "regexp/no-useless-backreference" | "regexp/no-useless-character-class" | "regexp/no-useless-dollar-replacements" | "regexp/no-useless-escape" | "regexp/no-useless-flag" | "regexp/no-useless-lazy" | "regexp/no-useless-non-capturing-group" | "regexp/no-useless-quantifier" | "regexp/no-useless-range" | "regexp/no-useless-set-operand" | "regexp/no-useless-string-literal" | "regexp/no-useless-two-nums-quantifier" | "regexp/no-zero-quantifier" | "regexp/optimal-lookaround-quantifier" | "regexp/optimal-quantifier-concatenation" | "regexp/prefer-character-class" | "regexp/prefer-d" | "regexp/prefer-escape-replacement-dollar-char" | "regexp/prefer-lookaround" | "regexp/prefer-named-backreference" | "regexp/prefer-named-capture-group" | "regexp/prefer-named-replacement" | "regexp/prefer-plus-quantifier" | "regexp/prefer-predefined-assertion" | "regexp/prefer-quantifier" | "regexp/prefer-question-quantifier" | "regexp/prefer-range" | "regexp/prefer-regexp-exec" | "regexp/prefer-regexp-test" | "regexp/prefer-result-array-groups" | "regexp/prefer-set-operation" | "regexp/prefer-star-quantifier" | "regexp/prefer-unicode-codepoint-escapes" | "regexp/prefer-w" | "regexp/require-unicode-regexp" | "regexp/require-unicode-sets-regexp" | "regexp/simplify-set-operations" | "regexp/sort-alternatives" | "regexp/sort-character-class-elements" | "regexp/sort-flags" | "regexp/strict" | "regexp/unicode-escape" | "regexp/unicode-property" | "regexp/use-ignore-case" | "@stylistic/array-bracket-newline" | "@stylistic/array-bracket-spacing" | "@stylistic/array-element-newline" | "@stylistic/arrow-parens" | "@stylistic/arrow-spacing" | "@stylistic/block-spacing" | "@stylistic/brace-style" | "@stylistic/comma-dangle" | "@stylistic/comma-spacing" | "@stylistic/comma-style" | "@stylistic/computed-property-spacing" | "@stylistic/curly-newline" | "@stylistic/dot-location" | "@stylistic/eol-last" | "@stylistic/exp-jsx-props-style" | "@stylistic/exp-list-style" | "@stylistic/function-call-argument-newline" | "@stylistic/function-call-spacing" | "@stylistic/function-paren-newline" | "@stylistic/generator-star-spacing" | "@stylistic/implicit-arrow-linebreak" | "@stylistic/indent" | "@stylistic/indent-binary-ops" | "@stylistic/jsx-child-element-spacing" | "@stylistic/jsx-closing-bracket-location" | "@stylistic/jsx-closing-tag-location" | "@stylistic/jsx-curly-brace-presence" | "@stylistic/jsx-curly-newline" | "@stylistic/jsx-curly-spacing" | "@stylistic/jsx-equals-spacing" | "@stylistic/jsx-first-prop-new-line" | "@stylistic/jsx-function-call-newline" | "@stylistic/jsx-indent" | "@stylistic/jsx-indent-props" | "@stylistic/jsx-max-props-per-line" | "@stylistic/jsx-newline" | "@stylistic/jsx-one-expression-per-line" | "@stylistic/jsx-pascal-case" | "@stylistic/jsx-props-no-multi-spaces" | "@stylistic/jsx-quotes" | "@stylistic/jsx-self-closing-comp" | "@stylistic/jsx-sort-props" | "@stylistic/jsx-tag-spacing" | "@stylistic/jsx-wrap-multilines" | "@stylistic/key-spacing" | "@stylistic/keyword-spacing" | "@stylistic/line-comment-position" | "@stylistic/linebreak-style" | "@stylistic/lines-around-comment" | "@stylistic/lines-between-class-members" | "@stylistic/max-len" | "@stylistic/max-statements-per-line" | "@stylistic/member-delimiter-style" | "@stylistic/multiline-comment-style" | "@stylistic/multiline-ternary" | "@stylistic/new-parens" | "@stylistic/newline-per-chained-call" | "@stylistic/no-confusing-arrow" | "@stylistic/no-extra-parens" | "@stylistic/no-extra-semi" | "@stylistic/no-floating-decimal" | "@stylistic/no-mixed-operators" | "@stylistic/no-mixed-spaces-and-tabs" | "@stylistic/no-multi-spaces" | "@stylistic/no-multiple-empty-lines" | "@stylistic/no-tabs" | "@stylistic/no-trailing-spaces" | "@stylistic/no-whitespace-before-property" | "@stylistic/nonblock-statement-body-position" | "@stylistic/object-curly-newline" | "@stylistic/object-curly-spacing" | "@stylistic/object-property-newline" | "@stylistic/one-var-declaration-per-line" | "@stylistic/operator-linebreak" | "@stylistic/padded-blocks" | "@stylistic/padding-line-between-statements" | "@stylistic/quote-props" | "@stylistic/quotes" | "@stylistic/rest-spread-spacing" | "@stylistic/semi" | "@stylistic/semi-spacing" | "@stylistic/semi-style" | "@stylistic/space-before-blocks" | "@stylistic/space-before-function-paren" | "@stylistic/space-in-parens" | "@stylistic/space-infix-ops" | "@stylistic/space-unary-ops" | "@stylistic/spaced-comment" | "@stylistic/switch-colon-spacing" | "@stylistic/template-curly-spacing" | "@stylistic/template-tag-spacing" | "@stylistic/type-annotation-spacing" | "@stylistic/type-generic-spacing" | "@stylistic/type-named-tuple-spacing" | "@stylistic/wrap-iife" | "@stylistic/wrap-regex" | "@stylistic/yield-star-spacing" | "toml/array-bracket-newline" | "toml/array-bracket-spacing" | "toml/array-element-newline" | "toml/comma-style" | "toml/indent" | "toml/inline-table-curly-newline" | "toml/inline-table-curly-spacing" | "toml/inline-table-key-value-newline" | "toml/key-spacing" | "toml/keys-order" | "toml/no-mixed-type-in-array" | "toml/no-non-decimal-integer" | "toml/no-space-dots" | "toml/no-unreadable-number-separator" | "toml/padding-line-between-pairs" | "toml/padding-line-between-tables" | "toml/precision-of-fractional-seconds" | "toml/precision-of-integer" | "toml/quoted-keys" | "toml/space-eq-sign" | "toml/spaced-comment" | "toml/table-bracket-spacing" | "toml/tables-order" | "toml/vue-custom-block/no-parsing-error" | "@typescript-eslint/adjacent-overload-signatures" | "@typescript-eslint/array-type" | "@typescript-eslint/await-thenable" | "@typescript-eslint/ban-ts-comment" | "@typescript-eslint/ban-tslint-comment" | "@typescript-eslint/class-literal-property-style" | "@typescript-eslint/class-methods-use-this" | "@typescript-eslint/consistent-generic-constructors" | "@typescript-eslint/consistent-indexed-object-style" | "@typescript-eslint/consistent-return" | "@typescript-eslint/consistent-type-assertions" | "@typescript-eslint/consistent-type-definitions" | "@typescript-eslint/consistent-type-exports" | "@typescript-eslint/consistent-type-imports" | "@typescript-eslint/default-param-last" | "@typescript-eslint/dot-notation" | "@typescript-eslint/explicit-function-return-type" | "@typescript-eslint/explicit-member-accessibility" | "@typescript-eslint/explicit-module-boundary-types" | "@typescript-eslint/init-declarations" | "@typescript-eslint/max-params" | "@typescript-eslint/member-ordering" | "@typescript-eslint/method-signature-style" | "@typescript-eslint/naming-convention" | "@typescript-eslint/no-array-constructor" | "@typescript-eslint/no-array-delete" | "@typescript-eslint/no-base-to-string" | "@typescript-eslint/no-confusing-non-null-assertion" | "@typescript-eslint/no-confusing-void-expression" | "@typescript-eslint/no-deprecated" | "@typescript-eslint/no-dupe-class-members" | "@typescript-eslint/no-duplicate-enum-values" | "@typescript-eslint/no-duplicate-type-constituents" | "@typescript-eslint/no-dynamic-delete" | "@typescript-eslint/no-empty-function" | "@typescript-eslint/no-empty-interface" | "@typescript-eslint/no-empty-object-type" | "@typescript-eslint/no-explicit-any" | "@typescript-eslint/no-extra-non-null-assertion" | "@typescript-eslint/no-extraneous-class" | "@typescript-eslint/no-floating-promises" | "@typescript-eslint/no-for-in-array" | "@typescript-eslint/no-implied-eval" | "@typescript-eslint/no-import-type-side-effects" | "@typescript-eslint/no-inferrable-types" | "@typescript-eslint/no-invalid-this" | "@typescript-eslint/no-invalid-void-type" | "@typescript-eslint/no-loop-func" | "@typescript-eslint/no-loss-of-precision" | "@typescript-eslint/no-magic-numbers" | "@typescript-eslint/no-meaningless-void-operator" | "@typescript-eslint/no-misused-new" | "@typescript-eslint/no-misused-promises" | "@typescript-eslint/no-misused-spread" | "@typescript-eslint/no-mixed-enums" | "@typescript-eslint/no-namespace" | "@typescript-eslint/no-non-null-asserted-nullish-coalescing" | "@typescript-eslint/no-non-null-asserted-optional-chain" | "@typescript-eslint/no-non-null-assertion" | "@typescript-eslint/no-redeclare" | "@typescript-eslint/no-redundant-type-constituents" | "@typescript-eslint/no-require-imports" | "@typescript-eslint/no-restricted-imports" | "@typescript-eslint/no-restricted-types" | "@typescript-eslint/no-shadow" | "@typescript-eslint/no-this-alias" | "@typescript-eslint/no-type-alias" | "@typescript-eslint/no-unnecessary-boolean-literal-compare" | "@typescript-eslint/no-unnecessary-condition" | "@typescript-eslint/no-unnecessary-parameter-property-assignment" | "@typescript-eslint/no-unnecessary-qualifier" | "@typescript-eslint/no-unnecessary-template-expression" | "@typescript-eslint/no-unnecessary-type-arguments" | "@typescript-eslint/no-unnecessary-type-assertion" | "@typescript-eslint/no-unnecessary-type-constraint" | "@typescript-eslint/no-unnecessary-type-conversion" | "@typescript-eslint/no-unnecessary-type-parameters" | "@typescript-eslint/no-unsafe-argument" | "@typescript-eslint/no-unsafe-assignment" | "@typescript-eslint/no-unsafe-call" | "@typescript-eslint/no-unsafe-declaration-merging" | "@typescript-eslint/no-unsafe-enum-comparison" | "@typescript-eslint/no-unsafe-function-type" | "@typescript-eslint/no-unsafe-member-access" | "@typescript-eslint/no-unsafe-return" | "@typescript-eslint/no-unsafe-type-assertion" | "@typescript-eslint/no-unsafe-unary-minus" | "@typescript-eslint/no-unused-expressions" | "@typescript-eslint/no-unused-private-class-members" | "@typescript-eslint/no-unused-vars" | "@typescript-eslint/no-use-before-define" | "@typescript-eslint/no-useless-constructor" | "@typescript-eslint/no-useless-default-assignment" | "@typescript-eslint/no-useless-empty-export" | "@typescript-eslint/no-var-requires" | "@typescript-eslint/no-wrapper-object-types" | "@typescript-eslint/non-nullable-type-assertion-style" | "@typescript-eslint/only-throw-error" | "@typescript-eslint/parameter-properties" | "@typescript-eslint/prefer-as-const" | "@typescript-eslint/prefer-destructuring" | "@typescript-eslint/prefer-enum-initializers" | "@typescript-eslint/prefer-find" | "@typescript-eslint/prefer-for-of" | "@typescript-eslint/prefer-function-type" | "@typescript-eslint/prefer-includes" | "@typescript-eslint/prefer-literal-enum-member" | "@typescript-eslint/prefer-namespace-keyword" | "@typescript-eslint/prefer-nullish-coalescing" | "@typescript-eslint/prefer-optional-chain" | "@typescript-eslint/prefer-promise-reject-errors" | "@typescript-eslint/prefer-readonly" | "@typescript-eslint/prefer-readonly-parameter-types" | "@typescript-eslint/prefer-reduce-type-parameter" | "@typescript-eslint/prefer-regexp-exec" | "@typescript-eslint/prefer-return-this-type" | "@typescript-eslint/prefer-string-starts-ends-with" | "@typescript-eslint/prefer-ts-expect-error" | "@typescript-eslint/promise-function-async" | "@typescript-eslint/related-getter-setter-pairs" | "@typescript-eslint/require-array-sort-compare" | "@typescript-eslint/require-await" | "@typescript-eslint/restrict-plus-operands" | "@typescript-eslint/restrict-template-expressions" | "@typescript-eslint/return-await" | "@typescript-eslint/sort-type-constituents" | "@typescript-eslint/strict-boolean-expressions" | "@typescript-eslint/strict-void-return" | "@typescript-eslint/switch-exhaustiveness-check" | "@typescript-eslint/triple-slash-reference" | "@typescript-eslint/typedef" | "@typescript-eslint/unbound-method" | "@typescript-eslint/unified-signatures" | "@typescript-eslint/use-unknown-in-catch-callback-variable" | "unicorn/better-dom-traversing" | "unicorn/better-regex" | "unicorn/catch-error-name" | "unicorn/class-reference-in-static-methods" | "unicorn/comment-content" | "unicorn/consistent-assert" | "unicorn/consistent-boolean-name" | "unicorn/consistent-class-member-order" | "unicorn/consistent-compound-words" | "unicorn/consistent-conditional-object-spread" | "unicorn/consistent-date-clone" | "unicorn/consistent-destructuring" | "unicorn/consistent-empty-array-spread" | "unicorn/consistent-existence-index-check" | "unicorn/consistent-export-decorator-position" | "unicorn/consistent-function-scoping" | "unicorn/consistent-function-style" | "unicorn/consistent-json-file-read" | "unicorn/consistent-optional-chaining" | "unicorn/consistent-template-literal-escape" | "unicorn/consistent-tuple-labels" | "unicorn/custom-error-definition" | "unicorn/default-export-style" | "unicorn/dom-node-dataset" | "unicorn/empty-brace-spaces" | "unicorn/error-message" | "unicorn/escape-case" | "unicorn/expiring-todo-comments" | "unicorn/explicit-length-check" | "unicorn/explicit-timer-delay" | "unicorn/filename-case" | "unicorn/id-match" | "unicorn/import-style" | "unicorn/isolated-functions" | "unicorn/logical-assignment-operators" | "unicorn/max-nested-calls" | "unicorn/name-replacements" | "unicorn/new-for-builtins" | "unicorn/no-abusive-eslint-disable" | "unicorn/no-accessor-recursion" | "unicorn/no-accidental-bitwise-operator" | "unicorn/no-anonymous-default-export" | "unicorn/no-array-callback-reference" | "unicorn/no-array-concat-in-loop" | "unicorn/no-array-fill-with-reference-type" | "unicorn/no-array-from-fill" | "unicorn/no-array-front-mutation" | "unicorn/no-array-method-this-argument" | "unicorn/no-array-push-push" | "unicorn/no-array-reduce" | "unicorn/no-array-reverse" | "unicorn/no-array-sort" | "unicorn/no-array-sort-for-min-max" | "unicorn/no-array-splice" | "unicorn/no-asterisk-prefix-in-documentation-comments" | "unicorn/no-async-promise-finally" | "unicorn/no-await-expression-member" | "unicorn/no-await-in-promise-methods" | "unicorn/no-blob-to-file" | "unicorn/no-boolean-sort-comparator" | "unicorn/no-break-in-nested-loop" | "unicorn/no-canvas-to-image" | "unicorn/no-chained-comparison" | "unicorn/no-collection-bracket-access" | "unicorn/no-computed-property-existence-check" | "unicorn/no-confusing-array-splice" | "unicorn/no-confusing-array-with" | "unicorn/no-console-spaces" | "unicorn/no-constant-zero-expression" | "unicorn/no-declarations-before-early-exit" | "unicorn/no-document-cookie" | "unicorn/no-double-comparison" | "unicorn/no-duplicate-if-branches" | "unicorn/no-duplicate-logical-operands" | "unicorn/no-duplicate-loops" | "unicorn/no-duplicate-set-values" | "unicorn/no-empty-file" | "unicorn/no-error-property-assignment" | "unicorn/no-exports-in-scripts" | "unicorn/no-for-each" | "unicorn/no-for-loop" | "unicorn/no-global-object-property-assignment" | "unicorn/no-hex-escape" | "unicorn/no-immediate-mutation" | "unicorn/no-impossible-length-comparison" | "unicorn/no-incorrect-query-selector" | "unicorn/no-incorrect-template-string-interpolation" | "unicorn/no-instanceof-array" | "unicorn/no-instanceof-builtins" | "unicorn/no-invalid-argument-count" | "unicorn/no-invalid-character-comparison" | "unicorn/no-invalid-fetch-options" | "unicorn/no-invalid-file-input-accept" | "unicorn/no-invalid-remove-event-listener" | "unicorn/no-invalid-well-known-symbol-methods" | "unicorn/no-keyword-prefix" | "unicorn/no-late-current-target-access" | "unicorn/no-late-event-control" | "unicorn/no-length-as-slice-end" | "unicorn/no-lonely-if" | "unicorn/no-loop-iterable-mutation" | "unicorn/no-magic-array-flat-depth" | "unicorn/no-manually-wrapped-comments" | "unicorn/no-mismatched-map-key" | "unicorn/no-misrefactored-assignment" | "unicorn/no-named-default" | "unicorn/no-negated-array-predicate" | "unicorn/no-negated-comparison" | "unicorn/no-negated-condition" | "unicorn/no-negation-in-equality-check" | "unicorn/no-nested-ternary" | "unicorn/no-new-array" | "unicorn/no-new-buffer" | "unicorn/no-non-function-verb-prefix" | "unicorn/no-nonstandard-builtin-properties" | "unicorn/no-null" | "unicorn/no-object-as-default-parameter" | "unicorn/no-object-methods-with-collections" | "unicorn/no-optional-chaining-on-undeclared-variable" | "unicorn/no-process-exit" | "unicorn/no-redundant-comparison" | "unicorn/no-return-array-push" | "unicorn/no-selector-as-dom-name" | "unicorn/no-single-promise-in-promise-methods" | "unicorn/no-static-only-class" | "unicorn/no-subtraction-comparison" | "unicorn/no-thenable" | "unicorn/no-this-assignment" | "unicorn/no-this-outside-of-class" | "unicorn/no-top-level-assignment-in-function" | "unicorn/no-top-level-side-effects" | "unicorn/no-typeof-undefined" | "unicorn/no-uncalled-method" | "unicorn/no-undeclared-class-members" | "unicorn/no-unnecessary-array-flat-depth" | "unicorn/no-unnecessary-array-flat-map" | "unicorn/no-unnecessary-array-splice-count" | "unicorn/no-unnecessary-await" | "unicorn/no-unnecessary-boolean-comparison" | "unicorn/no-unnecessary-fetch-options" | "unicorn/no-unnecessary-global-this" | "unicorn/no-unnecessary-nested-ternary" | "unicorn/no-unnecessary-polyfills" | "unicorn/no-unnecessary-slice-end" | "unicorn/no-unnecessary-splice" | "unicorn/no-unreadable-array-destructuring" | "unicorn/no-unreadable-for-of-expression" | "unicorn/no-unreadable-iife" | "unicorn/no-unreadable-new-expression" | "unicorn/no-unreadable-object-destructuring" | "unicorn/no-unsafe-buffer-conversion" | "unicorn/no-unsafe-dom-html" | "unicorn/no-unsafe-promise-all-settled-values" | "unicorn/no-unsafe-property-key" | "unicorn/no-unsafe-string-replacement" | "unicorn/no-unused-array-method-return" | "unicorn/no-unused-properties" | "unicorn/no-useless-boolean-cast" | "unicorn/no-useless-coercion" | "unicorn/no-useless-collection-argument" | "unicorn/no-useless-compound-assignment" | "unicorn/no-useless-concat" | "unicorn/no-useless-continue" | "unicorn/no-useless-delete-check" | "unicorn/no-useless-else" | "unicorn/no-useless-error-capture-stack-trace" | "unicorn/no-useless-fallback-in-spread" | "unicorn/no-useless-iterator-to-array" | "unicorn/no-useless-length-check" | "unicorn/no-useless-logical-operand" | "unicorn/no-useless-override" | "unicorn/no-useless-promise-resolve-reject" | "unicorn/no-useless-recursion" | "unicorn/no-useless-spread" | "unicorn/no-useless-switch-case" | "unicorn/no-useless-template-literals" | "unicorn/no-useless-undefined" | "unicorn/no-xor-as-exponentiation" | "unicorn/no-zero-fractions" | "unicorn/number-literal-case" | "unicorn/numeric-separators-style" | "unicorn/operator-assignment" | "unicorn/prefer-abort-signal-any" | "unicorn/prefer-abort-signal-timeout" | "unicorn/prefer-add-event-listener" | "unicorn/prefer-add-event-listener-options" | "unicorn/prefer-aggregate-error" | "unicorn/prefer-array-find" | "unicorn/prefer-array-flat" | "unicorn/prefer-array-flat-map" | "unicorn/prefer-array-from-async" | "unicorn/prefer-array-from-map" | "unicorn/prefer-array-from-range" | "unicorn/prefer-array-index-of" | "unicorn/prefer-array-iterable-methods" | "unicorn/prefer-array-last-methods" | "unicorn/prefer-array-slice" | "unicorn/prefer-array-some" | "unicorn/prefer-at" | "unicorn/prefer-await" | "unicorn/prefer-bigint-literals" | "unicorn/prefer-blob-reading-methods" | "unicorn/prefer-block-statement-over-iife" | "unicorn/prefer-boolean-return" | "unicorn/prefer-class-fields" | "unicorn/prefer-classlist-toggle" | "unicorn/prefer-code-point" | "unicorn/prefer-continue" | "unicorn/prefer-date-now" | "unicorn/prefer-default-parameters" | "unicorn/prefer-direct-iteration" | "unicorn/prefer-dispose" | "unicorn/prefer-dom-node-append" | "unicorn/prefer-dom-node-dataset" | "unicorn/prefer-dom-node-html-methods" | "unicorn/prefer-dom-node-remove" | "unicorn/prefer-dom-node-replace-children" | "unicorn/prefer-dom-node-text-content" | "unicorn/prefer-early-return" | "unicorn/prefer-else-if" | "unicorn/prefer-error-is-error" | "unicorn/prefer-event-target" | "unicorn/prefer-export-from" | "unicorn/prefer-flat-math-min-max" | "unicorn/prefer-get-or-insert-computed" | "unicorn/prefer-global-number-constants" | "unicorn/prefer-global-this" | "unicorn/prefer-group-by" | "unicorn/prefer-has-check" | "unicorn/prefer-hoisting-branch-code" | "unicorn/prefer-https" | "unicorn/prefer-identifier-import-export-specifiers" | "unicorn/prefer-import-meta-properties" | "unicorn/prefer-includes" | "unicorn/prefer-includes-over-repeated-comparisons" | "unicorn/prefer-iterable-in-constructor" | "unicorn/prefer-iterator-concat" | "unicorn/prefer-iterator-helpers" | "unicorn/prefer-iterator-to-array" | "unicorn/prefer-iterator-to-array-at-end" | "unicorn/prefer-json-parse-buffer" | "unicorn/prefer-keyboard-event-key" | "unicorn/prefer-location-assign" | "unicorn/prefer-logical-operator-over-ternary" | "unicorn/prefer-map-from-entries" | "unicorn/prefer-math-abs" | "unicorn/prefer-math-constants" | "unicorn/prefer-math-min-max" | "unicorn/prefer-math-trunc" | "unicorn/prefer-minimal-ternary" | "unicorn/prefer-modern-dom-apis" | "unicorn/prefer-modern-math-apis" | "unicorn/prefer-module" | "unicorn/prefer-native-coercion-functions" | "unicorn/prefer-negative-index" | "unicorn/prefer-node-protocol" | "unicorn/prefer-number-coercion" | "unicorn/prefer-number-is-safe-integer" | "unicorn/prefer-number-properties" | "unicorn/prefer-object-define-properties" | "unicorn/prefer-object-destructuring-defaults" | "unicorn/prefer-object-from-entries" | "unicorn/prefer-object-iterable-methods" | "unicorn/prefer-observer-apis" | "unicorn/prefer-optional-catch-binding" | "unicorn/prefer-path2d" | "unicorn/prefer-private-class-fields" | "unicorn/prefer-promise-try" | "unicorn/prefer-promise-with-resolvers" | "unicorn/prefer-prototype-methods" | "unicorn/prefer-query-selector" | "unicorn/prefer-queue-microtask" | "unicorn/prefer-reflect-apply" | "unicorn/prefer-regexp-escape" | "unicorn/prefer-regexp-test" | "unicorn/prefer-response-static-json" | "unicorn/prefer-scoped-selector" | "unicorn/prefer-set-has" | "unicorn/prefer-set-methods" | "unicorn/prefer-set-size" | "unicorn/prefer-short-arrow-method" | "unicorn/prefer-simple-condition-first" | "unicorn/prefer-simple-sort-comparator" | "unicorn/prefer-simplified-conditions" | "unicorn/prefer-single-array-predicate" | "unicorn/prefer-single-call" | "unicorn/prefer-single-object-destructuring" | "unicorn/prefer-single-replace" | "unicorn/prefer-smaller-scope" | "unicorn/prefer-split-limit" | "unicorn/prefer-spread" | "unicorn/prefer-string-match-all" | "unicorn/prefer-string-pad-start-end" | "unicorn/prefer-string-raw" | "unicorn/prefer-string-repeat" | "unicorn/prefer-string-replace-all" | "unicorn/prefer-string-slice" | "unicorn/prefer-string-starts-ends-with" | "unicorn/prefer-string-trim-start-end" | "unicorn/prefer-structured-clone" | "unicorn/prefer-switch" | "unicorn/prefer-temporal" | "unicorn/prefer-ternary" | "unicorn/prefer-toggle-attribute" | "unicorn/prefer-top-level-await" | "unicorn/prefer-type-error" | "unicorn/prefer-type-literal-last" | "unicorn/prefer-uint8array-base64" | "unicorn/prefer-unary-minus" | "unicorn/prefer-unicode-code-point-escapes" | "unicorn/prefer-url-can-parse" | "unicorn/prefer-url-href" | "unicorn/prefer-url-search-parameters" | "unicorn/prefer-while-loop-condition" | "unicorn/prevent-abbreviations" | "unicorn/relative-url-style" | "unicorn/require-array-join-separator" | "unicorn/require-array-sort-compare" | "unicorn/require-css-escape" | "unicorn/require-module-attributes" | "unicorn/require-module-specifiers" | "unicorn/require-number-to-fixed-digits-argument" | "unicorn/require-passive-events" | "unicorn/require-post-message-target-origin" | "unicorn/require-proxy-trap-boolean-return" | "unicorn/string-content" | "unicorn/switch-case-braces" | "unicorn/switch-case-break-position" | "unicorn/template-indent" | "unicorn/text-encoding-identifier-case" | "unicorn/throw-new-error" | "unicorn/try-complexity" | "unused-imports/no-unused-imports" | "unused-imports/no-unused-vars" | "vitest/consistent-each-for" | "vitest/consistent-test-filename" | "vitest/consistent-test-it" | "vitest/consistent-vitest-vi" | "vitest/expect-expect" | "vitest/hoisted-apis-on-top" | "vitest/max-expects" | "vitest/max-nested-describe" | "vitest/no-alias-methods" | "vitest/no-commented-out-tests" | "vitest/no-conditional-expect" | "vitest/no-conditional-in-test" | "vitest/no-conditional-tests" | "vitest/no-disabled-tests" | "vitest/no-done-callback" | "vitest/no-duplicate-hooks" | "vitest/no-focused-tests" | "vitest/no-hooks" | "vitest/no-identical-title" | "vitest/no-import-node-test" | "vitest/no-importing-vitest-globals" | "vitest/no-interpolation-in-snapshots" | "vitest/no-large-snapshots" | "vitest/no-mocks-import" | "vitest/no-restricted-matchers" | "vitest/no-restricted-vi-methods" | "vitest/no-standalone-expect" | "vitest/no-test-prefixes" | "vitest/no-test-return-statement" | "vitest/no-unneeded-async-expect-function" | "vitest/padding-around-after-all-blocks" | "vitest/padding-around-after-each-blocks" | "vitest/padding-around-all" | "vitest/padding-around-before-all-blocks" | "vitest/padding-around-before-each-blocks" | "vitest/padding-around-describe-blocks" | "vitest/padding-around-expect-groups" | "vitest/padding-around-test-blocks" | "vitest/prefer-called-exactly-once-with" | "vitest/prefer-called-once" | "vitest/prefer-called-times" | "vitest/prefer-called-with" | "vitest/prefer-comparison-matcher" | "vitest/prefer-describe-function-title" | "vitest/prefer-each" | "vitest/prefer-equality-matcher" | "vitest/prefer-expect-assertions" | "vitest/prefer-expect-resolves" | "vitest/prefer-expect-type-of" | "vitest/prefer-hooks-in-order" | "vitest/prefer-hooks-on-top" | "vitest/prefer-import-in-mock" | "vitest/prefer-importing-vitest-globals" | "vitest/prefer-lowercase-title" | "vitest/prefer-mock-promise-shorthand" | "vitest/prefer-mock-return-shorthand" | "vitest/prefer-snapshot-hint" | "vitest/prefer-spy-on" | "vitest/prefer-strict-boolean-matchers" | "vitest/prefer-strict-equal" | "vitest/prefer-to-be" | "vitest/prefer-to-be-falsy" | "vitest/prefer-to-be-object" | "vitest/prefer-to-be-truthy" | "vitest/prefer-to-contain" | "vitest/prefer-to-have-been-called-times" | "vitest/prefer-to-have-length" | "vitest/prefer-todo" | "vitest/prefer-vi-mocked" | "vitest/require-awaited-expect-poll" | "vitest/require-hook" | "vitest/require-local-test-context-for-concurrent-snapshots" | "vitest/require-mock-type-parameters" | "vitest/require-test-timeout" | "vitest/require-to-throw-message" | "vitest/require-top-level-describe" | "vitest/unbound-method" | "vitest/valid-describe-callback" | "vitest/valid-expect" | "vitest/valid-expect-in-promise" | "vitest/valid-title" | "vitest/warn-todo" | "yaml/block-mapping" | "yaml/block-mapping-colon-indicator-newline" | "yaml/block-mapping-question-indicator-newline" | "yaml/block-sequence" | "yaml/block-sequence-hyphen-indicator-newline" | "yaml/file-extension" | "yaml/flow-mapping-curly-newline" | "yaml/flow-mapping-curly-spacing" | "yaml/flow-sequence-bracket-newline" | "yaml/flow-sequence-bracket-spacing" | "yaml/indent" | "yaml/key-name-casing" | "yaml/key-spacing" | "yaml/no-empty-document" | "yaml/no-empty-key" | "yaml/no-empty-mapping-value" | "yaml/no-empty-sequence-entry" | "yaml/no-irregular-whitespace" | "yaml/no-multiple-empty-lines" | "yaml/no-tab-indent" | "yaml/no-trailing-spaces" | "yaml/no-trailing-zeros" | "yaml/plain-scalar" | "yaml/quotes" | "yaml/require-string-key" | "yaml/sort-keys" | "yaml/sort-sequence-values" | "yaml/spaced-comment" | "yaml/vue-custom-block/no-parsing-error")[];
|
|
3
|
+
declare const FIXABLE_RULES: ("accessor-pairs" | "array-bracket-newline" | "array-bracket-spacing" | "array-callback-return" | "array-element-newline" | "arrow-body-style" | "arrow-parens" | "arrow-spacing" | "block-scoped-var" | "block-spacing" | "brace-style" | "callback-return" | "camelcase" | "capitalized-comments" | "class-methods-use-this" | "comma-dangle" | "comma-spacing" | "comma-style" | "complexity" | "computed-property-spacing" | "consistent-return" | "consistent-this" | "constructor-super" | "curly" | "default-case" | "default-case-last" | "default-param-last" | "dot-location" | "dot-notation" | "eol-last" | "eqeqeq" | "for-direction" | "func-call-spacing" | "func-name-matching" | "func-names" | "func-style" | "function-call-argument-newline" | "function-paren-newline" | "generator-star-spacing" | "getter-return" | "global-require" | "grouped-accessor-pairs" | "guard-for-in" | "handle-callback-err" | "id-blacklist" | "id-denylist" | "id-length" | "id-match" | "implicit-arrow-linebreak" | "indent" | "indent-legacy" | "init-declarations" | "jsx-quotes" | "key-spacing" | "keyword-spacing" | "line-comment-position" | "linebreak-style" | "lines-around-comment" | "lines-around-directive" | "lines-between-class-members" | "logical-assignment-operators" | "max-classes-per-file" | "max-depth" | "max-len" | "max-lines" | "max-lines-per-function" | "max-nested-callbacks" | "max-params" | "max-statements" | "max-statements-per-line" | "multiline-comment-style" | "multiline-ternary" | "new-cap" | "new-parens" | "newline-after-var" | "newline-before-return" | "newline-per-chained-call" | "no-alert" | "no-array-constructor" | "no-async-promise-executor" | "no-await-in-loop" | "no-bitwise" | "no-buffer-constructor" | "no-caller" | "no-case-declarations" | "no-catch-shadow" | "no-class-assign" | "no-compare-neg-zero" | "no-cond-assign" | "no-confusing-arrow" | "no-console" | "no-const-assign" | "no-constant-binary-expression" | "no-constant-condition" | "no-constructor-return" | "no-continue" | "no-control-regex" | "no-debugger" | "no-delete-var" | "no-div-regex" | "no-dupe-args" | "no-dupe-class-members" | "no-dupe-else-if" | "no-dupe-keys" | "no-duplicate-case" | "no-duplicate-imports" | "no-else-return" | "no-empty" | "no-empty-character-class" | "no-empty-function" | "no-empty-pattern" | "no-empty-static-block" | "no-eq-null" | "no-eval" | "no-ex-assign" | "no-extend-native" | "no-extra-bind" | "no-extra-boolean-cast" | "no-extra-label" | "no-extra-parens" | "no-extra-semi" | "no-fallthrough" | "no-floating-decimal" | "no-func-assign" | "no-global-assign" | "no-implicit-coercion" | "no-implicit-globals" | "no-implied-eval" | "no-import-assign" | "no-inline-comments" | "no-inner-declarations" | "no-invalid-regexp" | "no-invalid-this" | "no-irregular-whitespace" | "no-iterator" | "no-label-var" | "no-labels" | "no-lone-blocks" | "no-lonely-if" | "no-loop-func" | "no-loss-of-precision" | "no-magic-numbers" | "no-misleading-character-class" | "no-mixed-operators" | "no-mixed-requires" | "no-mixed-spaces-and-tabs" | "no-multi-assign" | "no-multi-spaces" | "no-multi-str" | "no-multiple-empty-lines" | "no-native-reassign" | "no-negated-condition" | "no-negated-in-lhs" | "no-nested-ternary" | "no-new" | "no-new-func" | "no-new-native-nonconstructor" | "no-new-object" | "no-new-require" | "no-new-symbol" | "no-new-wrappers" | "no-nonoctal-decimal-escape" | "no-obj-calls" | "no-object-constructor" | "no-octal" | "no-octal-escape" | "no-param-reassign" | "no-path-concat" | "no-plusplus" | "no-process-env" | "no-process-exit" | "no-promise-executor-return" | "no-proto" | "no-prototype-builtins" | "no-redeclare" | "no-regex-spaces" | "no-restricted-exports" | "no-restricted-globals" | "no-restricted-imports" | "no-restricted-modules" | "no-restricted-properties" | "no-restricted-syntax" | "no-return-assign" | "no-return-await" | "no-script-url" | "no-self-assign" | "no-self-compare" | "no-sequences" | "no-setter-return" | "no-shadow" | "no-shadow-restricted-names" | "no-spaced-func" | "no-sparse-arrays" | "no-sync" | "no-tabs" | "no-template-curly-in-string" | "no-ternary" | "no-this-before-super" | "no-throw-literal" | "no-trailing-spaces" | "no-unassigned-vars" | "no-undef" | "no-undef-init" | "no-undefined" | "no-underscore-dangle" | "no-unexpected-multiline" | "no-unmodified-loop-condition" | "no-unneeded-ternary" | "no-unreachable" | "no-unreachable-loop" | "no-unsafe-finally" | "no-unsafe-negation" | "no-unsafe-optional-chaining" | "no-unused-expressions" | "no-unused-labels" | "no-unused-private-class-members" | "no-unused-vars" | "no-use-before-define" | "no-useless-assignment" | "no-useless-backreference" | "no-useless-call" | "no-useless-catch" | "no-useless-computed-key" | "no-useless-concat" | "no-useless-constructor" | "no-useless-escape" | "no-useless-rename" | "no-useless-return" | "no-var" | "no-void" | "no-warning-comments" | "no-whitespace-before-property" | "no-with" | "nonblock-statement-body-position" | "object-curly-newline" | "object-curly-spacing" | "object-property-newline" | "object-shorthand" | "one-var" | "one-var-declaration-per-line" | "operator-assignment" | "operator-linebreak" | "padded-blocks" | "padding-line-between-statements" | "prefer-arrow-callback" | "prefer-const" | "prefer-destructuring" | "prefer-exponentiation-operator" | "prefer-named-capture-group" | "prefer-numeric-literals" | "prefer-object-has-own" | "prefer-object-spread" | "prefer-promise-reject-errors" | "prefer-reflect" | "prefer-regex-literals" | "prefer-rest-params" | "prefer-spread" | "prefer-template" | "preserve-caught-error" | "quote-props" | "quotes" | "radix" | "require-atomic-updates" | "require-await" | "require-unicode-regexp" | "require-yield" | "rest-spread-spacing" | "semi" | "semi-spacing" | "semi-style" | "sort-imports" | "sort-keys" | "sort-vars" | "space-before-blocks" | "space-before-function-paren" | "space-in-parens" | "space-infix-ops" | "space-unary-ops" | "spaced-comment" | "strict" | "switch-colon-spacing" | "symbol-description" | "template-curly-spacing" | "template-tag-spacing" | "unicode-bom" | "use-isnan" | "valid-typeof" | "vars-on-top" | "wrap-iife" | "wrap-regex" | "yield-star-spacing" | "yoda" | "antfu/consistent-chaining" | "antfu/consistent-list-newline" | "antfu/curly" | "antfu/if-newline" | "antfu/import-dedupe" | "antfu/indent-unindent" | "antfu/no-import-dist" | "antfu/no-import-node-modules-by-path" | "antfu/no-top-level-await" | "antfu/no-ts-export-equal" | "antfu/top-level-function" | "command/command" | "de-morgan/no-negated-conjunction" | "de-morgan/no-negated-disjunction" | "e18e/ban-dependencies" | "e18e/no-delete-property" | "e18e/no-indexof-equality" | "e18e/no-spread-in-reduce" | "e18e/prefer-array-at" | "e18e/prefer-array-fill" | "e18e/prefer-array-from-map" | "e18e/prefer-array-some" | "e18e/prefer-array-to-reversed" | "e18e/prefer-array-to-sorted" | "e18e/prefer-array-to-spliced" | "e18e/prefer-date-now" | "e18e/prefer-exponentiation-operator" | "e18e/prefer-flatmap-over-map-flat" | "e18e/prefer-get-or-insert" | "e18e/prefer-includes" | "e18e/prefer-includes-over-regex-test" | "e18e/prefer-inline-equality" | "e18e/prefer-nullish-coalescing" | "e18e/prefer-object-has-own" | "e18e/prefer-regex-test" | "e18e/prefer-spread-syntax" | "e18e/prefer-static-collator" | "e18e/prefer-static-regex" | "e18e/prefer-string-fromcharcode" | "e18e/prefer-timer-args" | "e18e/prefer-url-canparse" | "eslint-comments/disable-enable-pair" | "eslint-comments/no-aggregating-enable" | "eslint-comments/no-duplicate-disable" | "eslint-comments/no-restricted-disable" | "eslint-comments/no-unlimited-disable" | "eslint-comments/no-unused-disable" | "eslint-comments/no-unused-enable" | "eslint-comments/no-use" | "eslint-comments/require-description" | "@eslint-react/dom-no-dangerously-set-innerhtml" | "@eslint-react/dom-no-dangerously-set-innerhtml-with-children" | "@eslint-react/dom-no-find-dom-node" | "@eslint-react/dom-no-flush-sync" | "@eslint-react/dom-no-hydrate" | "@eslint-react/dom-no-missing-button-type" | "@eslint-react/dom-no-missing-iframe-sandbox" | "@eslint-react/dom-no-render" | "@eslint-react/dom-no-render-return-value" | "@eslint-react/dom-no-script-url" | "@eslint-react/dom-no-string-style-prop" | "@eslint-react/dom-no-unknown-property" | "@eslint-react/dom-no-unsafe-iframe-sandbox" | "@eslint-react/dom-no-unsafe-target-blank" | "@eslint-react/dom-no-use-form-state" | "@eslint-react/dom-no-void-elements-with-children" | "@eslint-react/error-boundaries" | "@eslint-react/exhaustive-deps" | "@eslint-react/globals" | "@eslint-react/immutability" | "@eslint-react/jsx-no-children-prop" | "@eslint-react/jsx-no-children-prop-with-children" | "@eslint-react/jsx-no-comment-textnodes" | "@eslint-react/jsx-no-key-after-spread" | "@eslint-react/jsx-no-leaked-dollar" | "@eslint-react/jsx-no-leaked-semicolon" | "@eslint-react/jsx-no-namespace" | "@eslint-react/jsx-no-useless-fragment" | "@eslint-react/naming-convention-context-name" | "@eslint-react/naming-convention-id-name" | "@eslint-react/naming-convention-ref-name" | "@eslint-react/no-access-state-in-setstate" | "@eslint-react/no-array-index-key" | "@eslint-react/no-children-count" | "@eslint-react/no-children-for-each" | "@eslint-react/no-children-map" | "@eslint-react/no-children-only" | "@eslint-react/no-children-to-array" | "@eslint-react/no-class-component" | "@eslint-react/no-clone-element" | "@eslint-react/no-component-will-mount" | "@eslint-react/no-component-will-receive-props" | "@eslint-react/no-component-will-update" | "@eslint-react/no-context-provider" | "@eslint-react/no-create-ref" | "@eslint-react/no-direct-mutation-state" | "@eslint-react/no-duplicate-key" | "@eslint-react/no-forward-ref" | "@eslint-react/no-implicit-children" | "@eslint-react/no-implicit-key" | "@eslint-react/no-implicit-ref" | "@eslint-react/no-leaked-conditional-rendering" | "@eslint-react/no-missing-component-display-name" | "@eslint-react/no-missing-context-display-name" | "@eslint-react/no-missing-key" | "@eslint-react/no-misused-capture-owner-stack" | "@eslint-react/no-nested-component-definitions" | "@eslint-react/no-nested-lazy-component-declarations" | "@eslint-react/no-set-state-in-component-did-mount" | "@eslint-react/no-set-state-in-component-did-update" | "@eslint-react/no-set-state-in-component-will-update" | "@eslint-react/no-unnecessary-use-prefix" | "@eslint-react/no-unsafe-component-will-mount" | "@eslint-react/no-unsafe-component-will-receive-props" | "@eslint-react/no-unsafe-component-will-update" | "@eslint-react/no-unstable-context-value" | "@eslint-react/no-unstable-default-props" | "@eslint-react/no-unused-class-component-members" | "@eslint-react/no-unused-props" | "@eslint-react/no-unused-state" | "@eslint-react/no-use-context" | "@eslint-react/purity" | "@eslint-react/refs" | "@eslint-react/rsc-function-definition" | "@eslint-react/rules-of-hooks" | "@eslint-react/set-state-in-effect" | "@eslint-react/set-state-in-render" | "@eslint-react/static-components" | "@eslint-react/unsupported-syntax" | "@eslint-react/use-memo" | "@eslint-react/use-state" | "@eslint-react/web-api-no-leaked-event-listener" | "@eslint-react/web-api-no-leaked-fetch" | "@eslint-react/web-api-no-leaked-intersection-observer" | "@eslint-react/web-api-no-leaked-interval" | "@eslint-react/web-api-no-leaked-resize-observer" | "@eslint-react/web-api-no-leaked-timeout" | "@eslint-react/x-error-boundaries" | "@eslint-react/x-exhaustive-deps" | "@eslint-react/x-globals" | "@eslint-react/x-immutability" | "@eslint-react/x-no-access-state-in-setstate" | "@eslint-react/x-no-array-index-key" | "@eslint-react/x-no-children-count" | "@eslint-react/x-no-children-for-each" | "@eslint-react/x-no-children-map" | "@eslint-react/x-no-children-only" | "@eslint-react/x-no-children-to-array" | "@eslint-react/x-no-class-component" | "@eslint-react/x-no-clone-element" | "@eslint-react/x-no-component-will-mount" | "@eslint-react/x-no-component-will-receive-props" | "@eslint-react/x-no-component-will-update" | "@eslint-react/x-no-context-provider" | "@eslint-react/x-no-create-ref" | "@eslint-react/x-no-direct-mutation-state" | "@eslint-react/x-no-duplicate-key" | "@eslint-react/x-no-forward-ref" | "@eslint-react/x-no-implicit-children" | "@eslint-react/x-no-implicit-key" | "@eslint-react/x-no-implicit-ref" | "@eslint-react/x-no-leaked-conditional-rendering" | "@eslint-react/x-no-missing-component-display-name" | "@eslint-react/x-no-missing-context-display-name" | "@eslint-react/x-no-missing-key" | "@eslint-react/x-no-misused-capture-owner-stack" | "@eslint-react/x-no-nested-component-definitions" | "@eslint-react/x-no-nested-lazy-component-declarations" | "@eslint-react/x-no-set-state-in-component-did-mount" | "@eslint-react/x-no-set-state-in-component-did-update" | "@eslint-react/x-no-set-state-in-component-will-update" | "@eslint-react/x-no-unnecessary-use-prefix" | "@eslint-react/x-no-unsafe-component-will-mount" | "@eslint-react/x-no-unsafe-component-will-receive-props" | "@eslint-react/x-no-unsafe-component-will-update" | "@eslint-react/x-no-unstable-context-value" | "@eslint-react/x-no-unstable-default-props" | "@eslint-react/x-no-unused-class-component-members" | "@eslint-react/x-no-unused-props" | "@eslint-react/x-no-unused-state" | "@eslint-react/x-no-use-context" | "@eslint-react/x-purity" | "@eslint-react/x-refs" | "@eslint-react/x-rules-of-hooks" | "@eslint-react/x-set-state-in-effect" | "@eslint-react/x-set-state-in-render" | "@eslint-react/x-static-components" | "@eslint-react/x-unsupported-syntax" | "@eslint-react/x-use-memo" | "@eslint-react/x-use-state" | "import/consistent-type-specifier-style" | "import/exports-last" | "import/first" | "import/newline-after-import" | "import/no-default-export" | "import/no-duplicates" | "import/no-mutable-exports" | "import/no-named-default" | "import/prefer-default-export" | "jsdoc/check-access" | "jsdoc/check-alignment" | "jsdoc/check-examples" | "jsdoc/check-indentation" | "jsdoc/check-line-alignment" | "jsdoc/check-param-names" | "jsdoc/check-property-names" | "jsdoc/check-syntax" | "jsdoc/check-tag-names" | "jsdoc/check-template-names" | "jsdoc/check-types" | "jsdoc/check-values" | "jsdoc/convert-to-jsdoc-comments" | "jsdoc/empty-tags" | "jsdoc/escape-inline-tags" | "jsdoc/implements-on-classes" | "jsdoc/imports-as-dependencies" | "jsdoc/informative-docs" | "jsdoc/lines-before-block" | "jsdoc/match-description" | "jsdoc/match-name" | "jsdoc/multiline-blocks" | "jsdoc/no-bad-blocks" | "jsdoc/no-blank-block-descriptions" | "jsdoc/no-blank-blocks" | "jsdoc/no-defaults" | "jsdoc/no-missing-syntax" | "jsdoc/no-multi-asterisks" | "jsdoc/no-restricted-syntax" | "jsdoc/no-types" | "jsdoc/no-undefined-types" | "jsdoc/prefer-import-tag" | "jsdoc/reject-any-type" | "jsdoc/reject-function-type" | "jsdoc/require-asterisk-prefix" | "jsdoc/require-description" | "jsdoc/require-description-complete-sentence" | "jsdoc/require-example" | "jsdoc/require-file-overview" | "jsdoc/require-hyphen-before-param-description" | "jsdoc/require-jsdoc" | "jsdoc/require-next-description" | "jsdoc/require-next-type" | "jsdoc/require-param" | "jsdoc/require-param-description" | "jsdoc/require-param-name" | "jsdoc/require-param-type" | "jsdoc/require-property" | "jsdoc/require-property-description" | "jsdoc/require-property-name" | "jsdoc/require-property-type" | "jsdoc/require-rejects" | "jsdoc/require-returns" | "jsdoc/require-returns-check" | "jsdoc/require-returns-description" | "jsdoc/require-returns-type" | "jsdoc/require-tags" | "jsdoc/require-template" | "jsdoc/require-template-description" | "jsdoc/require-throws" | "jsdoc/require-throws-description" | "jsdoc/require-throws-type" | "jsdoc/require-yields" | "jsdoc/require-yields-check" | "jsdoc/require-yields-description" | "jsdoc/require-yields-type" | "jsdoc/sort-tags" | "jsdoc/tag-lines" | "jsdoc/text-escaping" | "jsdoc/ts-method-signature-style" | "jsdoc/ts-no-empty-object-type" | "jsdoc/ts-no-unnecessary-template-expression" | "jsdoc/ts-prefer-function-type" | "jsdoc/type-formatting" | "jsdoc/valid-types" | "jsonc/array-bracket-newline" | "jsonc/array-bracket-spacing" | "jsonc/array-element-newline" | "jsonc/auto" | "jsonc/comma-dangle" | "jsonc/comma-style" | "jsonc/indent" | "jsonc/key-name-casing" | "jsonc/key-spacing" | "jsonc/no-bigint-literals" | "jsonc/no-binary-expression" | "jsonc/no-binary-numeric-literals" | "jsonc/no-comments" | "jsonc/no-dupe-keys" | "jsonc/no-escape-sequence-in-identifier" | "jsonc/no-floating-decimal" | "jsonc/no-hexadecimal-numeric-literals" | "jsonc/no-infinity" | "jsonc/no-irregular-whitespace" | "jsonc/no-multi-str" | "jsonc/no-nan" | "jsonc/no-number-props" | "jsonc/no-numeric-separators" | "jsonc/no-octal" | "jsonc/no-octal-escape" | "jsonc/no-octal-numeric-literals" | "jsonc/no-parenthesized" | "jsonc/no-plus-sign" | "jsonc/no-regexp-literals" | "jsonc/no-sparse-arrays" | "jsonc/no-template-literals" | "jsonc/no-undefined-value" | "jsonc/no-unicode-codepoint-escapes" | "jsonc/no-useless-escape" | "jsonc/object-curly-newline" | "jsonc/object-curly-spacing" | "jsonc/object-property-newline" | "jsonc/quote-props" | "jsonc/quotes" | "jsonc/sort-array-values" | "jsonc/sort-keys" | "jsonc/space-unary-ops" | "jsonc/valid-json-number" | "jsonc/vue-custom-block/no-parsing-error" | "markdown/fenced-code-language" | "markdown/fenced-code-meta" | "markdown/heading-increment" | "markdown/no-bare-urls" | "markdown/no-duplicate-definitions" | "markdown/no-duplicate-headings" | "markdown/no-empty-definitions" | "markdown/no-empty-images" | "markdown/no-empty-links" | "markdown/no-html" | "markdown/no-invalid-label-refs" | "markdown/no-missing-atx-heading-space" | "markdown/no-missing-label-refs" | "markdown/no-missing-link-fragments" | "markdown/no-multiple-h1" | "markdown/no-reference-like-urls" | "markdown/no-reversed-media-syntax" | "markdown/no-space-in-emphasis" | "markdown/no-unused-definitions" | "markdown/require-alt-text" | "markdown/table-column-count" | "n/callback-return" | "n/exports-style" | "n/file-extension-in-import" | "n/global-require" | "n/handle-callback-err" | "n/hashbang" | "n/no-callback-literal" | "n/no-deprecated-api" | "n/no-exports-assign" | "n/no-extraneous-import" | "n/no-extraneous-require" | "n/no-hide-core-modules" | "n/no-missing-import" | "n/no-missing-require" | "n/no-mixed-requires" | "n/no-new-require" | "n/no-path-concat" | "n/no-process-env" | "n/no-process-exit" | "n/no-restricted-import" | "n/no-restricted-require" | "n/no-sync" | "n/no-top-level-await" | "n/no-unpublished-bin" | "n/no-unpublished-import" | "n/no-unpublished-require" | "n/no-unsupported-features/es-builtins" | "n/no-unsupported-features/es-syntax" | "n/no-unsupported-features/node-builtins" | "n/prefer-global/buffer" | "n/prefer-global/console" | "n/prefer-global/crypto" | "n/prefer-global/process" | "n/prefer-global/text-decoder" | "n/prefer-global/text-encoder" | "n/prefer-global/timers" | "n/prefer-global/url" | "n/prefer-global/url-search-params" | "n/prefer-node-protocol" | "n/prefer-promises/dns" | "n/prefer-promises/fs" | "n/process-exit-as-throw" | "n/shebang" | "no-only-tests/no-only-tests" | "node-test/assertion-arguments" | "node-test/consistent-assert-style" | "node-test/consistent-assert-throws-callback-style" | "node-test/consistent-modifier-style" | "node-test/consistent-test-context-name" | "node-test/consistent-test-filename" | "node-test/consistent-test-it" | "node-test/hooks-order" | "node-test/max-assertions" | "node-test/max-nested-describe" | "node-test/no-assert-in-describe" | "node-test/no-assert-in-hook" | "node-test/no-assert-match-string" | "node-test/no-assert-throws-async" | "node-test/no-assert-throws-call" | "node-test/no-assert-throws-multiple-statements" | "node-test/no-assert-throws-string" | "node-test/no-async-describe" | "node-test/no-async-fn-without-await" | "node-test/no-callback-and-promise" | "node-test/no-commented-tests" | "node-test/no-compound-assertion" | "node-test/no-conditional-assertion" | "node-test/no-conditional-in-test" | "node-test/no-conditional-tests" | "node-test/no-conflicting-modifiers" | "node-test/no-constant-assertion" | "node-test/no-done-callback" | "node-test/no-duplicate-assertions" | "node-test/no-duplicate-hooks" | "node-test/no-duplicate-mock-timers-enable" | "node-test/no-duplicate-plan" | "node-test/no-expect-failure-without-reason" | "node-test/no-export" | "node-test/no-identical-assertion-arguments" | "node-test/no-identical-title" | "node-test/no-import-test-files" | "node-test/no-incorrect-deep-equal" | "node-test/no-incorrect-strict-equal" | "node-test/no-late-test-activity" | "node-test/no-loop-static-title" | "node-test/no-misused-concurrency" | "node-test/no-misused-context-hook" | "node-test/no-mock-module-after-import" | "node-test/no-mock-timers-destructured-import" | "node-test/no-nested-tests" | "node-test/no-only-test" | "node-test/no-parent-test-context" | "node-test/no-process-chdir-in-test" | "node-test/no-process-env-mutation" | "node-test/no-process-exit-in-test" | "node-test/no-skip-test" | "node-test/no-skip-without-reason" | "node-test/no-skip-without-return" | "node-test/no-sleep-in-test" | "node-test/no-snapshot-in-loop" | "node-test/no-standalone-assert" | "node-test/no-test-global-configuration" | "node-test/no-test-inside-hook" | "node-test/no-test-return-statement" | "node-test/no-todo-test" | "node-test/no-unawaited-promise-assertion" | "node-test/no-unawaited-rejects" | "node-test/no-unawaited-subtest" | "node-test/no-unknown-test-options" | "node-test/no-unneeded-async-rejects-callback" | "node-test/no-useless-assertion" | "node-test/prefer-assert-match" | "node-test/prefer-assert-throws" | "node-test/prefer-async-await" | "node-test/prefer-context-mock" | "node-test/prefer-diagnostic" | "node-test/prefer-equality-assertion" | "node-test/prefer-hooks-on-top" | "node-test/prefer-lowercase-title" | "node-test/prefer-mock-accessor" | "node-test/prefer-mock-call-count" | "node-test/prefer-mock-method" | "node-test/prefer-strict-assert" | "node-test/prefer-test-context-assert" | "node-test/prefer-todo" | "node-test/require-assertion" | "node-test/require-await-concurrent-subtests" | "node-test/require-context-assert-with-plan" | "node-test/require-hook" | "node-test/require-mock-timers-advance" | "node-test/require-mock-timers-apis" | "node-test/require-throws-expectation" | "node-test/require-throws-validator-return-true" | "node-test/require-top-level-describe" | "node-test/test-title" | "node-test/test-title-format" | "node-test/valid-describe-callback" | "node-test/valid-test-tags" | "perfectionist/sort-array-includes" | "perfectionist/sort-arrays" | "perfectionist/sort-classes" | "perfectionist/sort-decorators" | "perfectionist/sort-enums" | "perfectionist/sort-export-attributes" | "perfectionist/sort-exports" | "perfectionist/sort-heritage-clauses" | "perfectionist/sort-import-attributes" | "perfectionist/sort-imports" | "perfectionist/sort-interfaces" | "perfectionist/sort-intersection-types" | "perfectionist/sort-jsx-props" | "perfectionist/sort-maps" | "perfectionist/sort-modules" | "perfectionist/sort-named-exports" | "perfectionist/sort-named-imports" | "perfectionist/sort-object-types" | "perfectionist/sort-objects" | "perfectionist/sort-sets" | "perfectionist/sort-switch-case" | "perfectionist/sort-union-types" | "perfectionist/sort-variable-declarations" | "pnpm/json-enforce-catalog" | "pnpm/json-prefer-workspace-settings" | "pnpm/json-valid-catalog" | "pnpm/yaml-enforce-settings" | "pnpm/yaml-no-duplicate-catalog-item" | "pnpm/yaml-no-unused-catalog-item" | "pnpm/yaml-valid-packages" | "react-hooks/capitalized-calls" | "react-hooks/component-hook-factories" | "react-hooks/config" | "react-hooks/error-boundaries" | "react-hooks/exhaustive-deps" | "react-hooks/exhaustive-effect-dependencies" | "react-hooks/fbt" | "react-hooks/gating" | "react-hooks/globals" | "react-hooks/hooks" | "react-hooks/immutability" | "react-hooks/incompatible-library" | "react-hooks/invariant" | "react-hooks/memo-dependencies" | "react-hooks/memoized-effect-dependencies" | "react-hooks/no-deriving-state-in-effects" | "react-hooks/preserve-manual-memoization" | "react-hooks/purity" | "react-hooks/refs" | "react-hooks/rule-suppression" | "react-hooks/rules-of-hooks" | "react-hooks/set-state-in-effect" | "react-hooks/set-state-in-render" | "react-hooks/static-components" | "react-hooks/syntax" | "react-hooks/todo" | "react-hooks/unsupported-syntax" | "react-hooks/use-memo" | "react-hooks/void-use-memo" | "react-refresh/only-export-components" | "regexp/confusing-quantifier" | "regexp/control-character-escape" | "regexp/grapheme-string-literal" | "regexp/hexadecimal-escape" | "regexp/letter-case" | "regexp/match-any" | "regexp/negation" | "regexp/no-contradiction-with-assertion" | "regexp/no-control-character" | "regexp/no-dupe-characters-character-class" | "regexp/no-dupe-disjunctions" | "regexp/no-empty-alternative" | "regexp/no-empty-capturing-group" | "regexp/no-empty-character-class" | "regexp/no-empty-group" | "regexp/no-empty-lookarounds-assertion" | "regexp/no-empty-string-literal" | "regexp/no-escape-backspace" | "regexp/no-extra-lookaround-assertions" | "regexp/no-invalid-regexp" | "regexp/no-invisible-character" | "regexp/no-lazy-ends" | "regexp/no-legacy-features" | "regexp/no-misleading-capturing-group" | "regexp/no-misleading-unicode-character" | "regexp/no-missing-g-flag" | "regexp/no-non-standard-flag" | "regexp/no-obscure-range" | "regexp/no-octal" | "regexp/no-optional-assertion" | "regexp/no-potentially-useless-backreference" | "regexp/no-standalone-backslash" | "regexp/no-super-linear-backtracking" | "regexp/no-super-linear-move" | "regexp/no-trivially-nested-assertion" | "regexp/no-trivially-nested-quantifier" | "regexp/no-unused-capturing-group" | "regexp/no-useless-assertions" | "regexp/no-useless-backreference" | "regexp/no-useless-character-class" | "regexp/no-useless-dollar-replacements" | "regexp/no-useless-escape" | "regexp/no-useless-flag" | "regexp/no-useless-lazy" | "regexp/no-useless-non-capturing-group" | "regexp/no-useless-quantifier" | "regexp/no-useless-range" | "regexp/no-useless-set-operand" | "regexp/no-useless-string-literal" | "regexp/no-useless-two-nums-quantifier" | "regexp/no-zero-quantifier" | "regexp/optimal-lookaround-quantifier" | "regexp/optimal-quantifier-concatenation" | "regexp/prefer-character-class" | "regexp/prefer-d" | "regexp/prefer-escape-replacement-dollar-char" | "regexp/prefer-lookaround" | "regexp/prefer-named-backreference" | "regexp/prefer-named-capture-group" | "regexp/prefer-named-replacement" | "regexp/prefer-plus-quantifier" | "regexp/prefer-predefined-assertion" | "regexp/prefer-quantifier" | "regexp/prefer-question-quantifier" | "regexp/prefer-range" | "regexp/prefer-regexp-exec" | "regexp/prefer-regexp-test" | "regexp/prefer-result-array-groups" | "regexp/prefer-set-operation" | "regexp/prefer-star-quantifier" | "regexp/prefer-unicode-codepoint-escapes" | "regexp/prefer-w" | "regexp/require-unicode-regexp" | "regexp/require-unicode-sets-regexp" | "regexp/simplify-set-operations" | "regexp/sort-alternatives" | "regexp/sort-character-class-elements" | "regexp/sort-flags" | "regexp/strict" | "regexp/unicode-escape" | "regexp/unicode-property" | "regexp/use-ignore-case" | "@stylistic/array-bracket-newline" | "@stylistic/array-bracket-spacing" | "@stylistic/array-element-newline" | "@stylistic/arrow-parens" | "@stylistic/arrow-spacing" | "@stylistic/block-spacing" | "@stylistic/brace-style" | "@stylistic/comma-dangle" | "@stylistic/comma-spacing" | "@stylistic/comma-style" | "@stylistic/computed-property-spacing" | "@stylistic/curly-newline" | "@stylistic/dot-location" | "@stylistic/eol-last" | "@stylistic/exp-jsx-props-style" | "@stylistic/exp-list-style" | "@stylistic/function-call-argument-newline" | "@stylistic/function-call-spacing" | "@stylistic/function-paren-newline" | "@stylistic/generator-star-spacing" | "@stylistic/implicit-arrow-linebreak" | "@stylistic/indent" | "@stylistic/indent-binary-ops" | "@stylistic/jsx-child-element-spacing" | "@stylistic/jsx-closing-bracket-location" | "@stylistic/jsx-closing-tag-location" | "@stylistic/jsx-curly-brace-presence" | "@stylistic/jsx-curly-newline" | "@stylistic/jsx-curly-spacing" | "@stylistic/jsx-equals-spacing" | "@stylistic/jsx-first-prop-new-line" | "@stylistic/jsx-function-call-newline" | "@stylistic/jsx-indent" | "@stylistic/jsx-indent-props" | "@stylistic/jsx-max-props-per-line" | "@stylistic/jsx-newline" | "@stylistic/jsx-one-expression-per-line" | "@stylistic/jsx-pascal-case" | "@stylistic/jsx-props-no-multi-spaces" | "@stylistic/jsx-quotes" | "@stylistic/jsx-self-closing-comp" | "@stylistic/jsx-sort-props" | "@stylistic/jsx-tag-spacing" | "@stylistic/jsx-wrap-multilines" | "@stylistic/key-spacing" | "@stylistic/keyword-spacing" | "@stylistic/line-comment-position" | "@stylistic/linebreak-style" | "@stylistic/lines-around-comment" | "@stylistic/lines-between-class-members" | "@stylistic/max-len" | "@stylistic/max-statements-per-line" | "@stylistic/member-delimiter-style" | "@stylistic/multiline-comment-style" | "@stylistic/multiline-ternary" | "@stylistic/new-parens" | "@stylistic/newline-per-chained-call" | "@stylistic/no-confusing-arrow" | "@stylistic/no-extra-parens" | "@stylistic/no-extra-semi" | "@stylistic/no-floating-decimal" | "@stylistic/no-mixed-operators" | "@stylistic/no-mixed-spaces-and-tabs" | "@stylistic/no-multi-spaces" | "@stylistic/no-multiple-empty-lines" | "@stylistic/no-tabs" | "@stylistic/no-trailing-spaces" | "@stylistic/no-whitespace-before-property" | "@stylistic/nonblock-statement-body-position" | "@stylistic/object-curly-newline" | "@stylistic/object-curly-spacing" | "@stylistic/object-property-newline" | "@stylistic/one-var-declaration-per-line" | "@stylistic/operator-linebreak" | "@stylistic/padded-blocks" | "@stylistic/padding-line-between-statements" | "@stylistic/quote-props" | "@stylistic/quotes" | "@stylistic/rest-spread-spacing" | "@stylistic/semi" | "@stylistic/semi-spacing" | "@stylistic/semi-style" | "@stylistic/space-before-blocks" | "@stylistic/space-before-function-paren" | "@stylistic/space-in-parens" | "@stylistic/space-infix-ops" | "@stylistic/space-unary-ops" | "@stylistic/spaced-comment" | "@stylistic/switch-colon-spacing" | "@stylistic/template-curly-spacing" | "@stylistic/template-tag-spacing" | "@stylistic/type-annotation-spacing" | "@stylistic/type-generic-spacing" | "@stylistic/type-named-tuple-spacing" | "@stylistic/wrap-iife" | "@stylistic/wrap-regex" | "@stylistic/yield-star-spacing" | "toml/array-bracket-newline" | "toml/array-bracket-spacing" | "toml/array-element-newline" | "toml/comma-style" | "toml/indent" | "toml/inline-table-curly-newline" | "toml/inline-table-curly-spacing" | "toml/inline-table-key-value-newline" | "toml/key-spacing" | "toml/keys-order" | "toml/no-mixed-type-in-array" | "toml/no-non-decimal-integer" | "toml/no-space-dots" | "toml/no-unreadable-number-separator" | "toml/padding-line-between-pairs" | "toml/padding-line-between-tables" | "toml/precision-of-fractional-seconds" | "toml/precision-of-integer" | "toml/quoted-keys" | "toml/space-eq-sign" | "toml/spaced-comment" | "toml/table-bracket-spacing" | "toml/tables-order" | "toml/vue-custom-block/no-parsing-error" | "@typescript-eslint/adjacent-overload-signatures" | "@typescript-eslint/array-type" | "@typescript-eslint/await-thenable" | "@typescript-eslint/ban-ts-comment" | "@typescript-eslint/ban-tslint-comment" | "@typescript-eslint/class-literal-property-style" | "@typescript-eslint/class-methods-use-this" | "@typescript-eslint/consistent-generic-constructors" | "@typescript-eslint/consistent-indexed-object-style" | "@typescript-eslint/consistent-return" | "@typescript-eslint/consistent-type-assertions" | "@typescript-eslint/consistent-type-definitions" | "@typescript-eslint/consistent-type-exports" | "@typescript-eslint/consistent-type-imports" | "@typescript-eslint/default-param-last" | "@typescript-eslint/dot-notation" | "@typescript-eslint/explicit-function-return-type" | "@typescript-eslint/explicit-member-accessibility" | "@typescript-eslint/explicit-module-boundary-types" | "@typescript-eslint/init-declarations" | "@typescript-eslint/max-params" | "@typescript-eslint/member-ordering" | "@typescript-eslint/method-signature-style" | "@typescript-eslint/naming-convention" | "@typescript-eslint/no-array-constructor" | "@typescript-eslint/no-array-delete" | "@typescript-eslint/no-base-to-string" | "@typescript-eslint/no-confusing-non-null-assertion" | "@typescript-eslint/no-confusing-void-expression" | "@typescript-eslint/no-deprecated" | "@typescript-eslint/no-dupe-class-members" | "@typescript-eslint/no-duplicate-enum-values" | "@typescript-eslint/no-duplicate-type-constituents" | "@typescript-eslint/no-dynamic-delete" | "@typescript-eslint/no-empty-function" | "@typescript-eslint/no-empty-interface" | "@typescript-eslint/no-empty-object-type" | "@typescript-eslint/no-explicit-any" | "@typescript-eslint/no-extra-non-null-assertion" | "@typescript-eslint/no-extraneous-class" | "@typescript-eslint/no-floating-promises" | "@typescript-eslint/no-for-in-array" | "@typescript-eslint/no-implied-eval" | "@typescript-eslint/no-import-type-side-effects" | "@typescript-eslint/no-inferrable-types" | "@typescript-eslint/no-invalid-this" | "@typescript-eslint/no-invalid-void-type" | "@typescript-eslint/no-loop-func" | "@typescript-eslint/no-loss-of-precision" | "@typescript-eslint/no-magic-numbers" | "@typescript-eslint/no-meaningless-void-operator" | "@typescript-eslint/no-misused-new" | "@typescript-eslint/no-misused-promises" | "@typescript-eslint/no-misused-spread" | "@typescript-eslint/no-mixed-enums" | "@typescript-eslint/no-namespace" | "@typescript-eslint/no-non-null-asserted-nullish-coalescing" | "@typescript-eslint/no-non-null-asserted-optional-chain" | "@typescript-eslint/no-non-null-assertion" | "@typescript-eslint/no-redeclare" | "@typescript-eslint/no-redundant-type-constituents" | "@typescript-eslint/no-require-imports" | "@typescript-eslint/no-restricted-imports" | "@typescript-eslint/no-restricted-types" | "@typescript-eslint/no-shadow" | "@typescript-eslint/no-this-alias" | "@typescript-eslint/no-type-alias" | "@typescript-eslint/no-unnecessary-boolean-literal-compare" | "@typescript-eslint/no-unnecessary-condition" | "@typescript-eslint/no-unnecessary-parameter-property-assignment" | "@typescript-eslint/no-unnecessary-qualifier" | "@typescript-eslint/no-unnecessary-template-expression" | "@typescript-eslint/no-unnecessary-type-arguments" | "@typescript-eslint/no-unnecessary-type-assertion" | "@typescript-eslint/no-unnecessary-type-constraint" | "@typescript-eslint/no-unnecessary-type-conversion" | "@typescript-eslint/no-unnecessary-type-parameters" | "@typescript-eslint/no-unsafe-argument" | "@typescript-eslint/no-unsafe-assignment" | "@typescript-eslint/no-unsafe-call" | "@typescript-eslint/no-unsafe-declaration-merging" | "@typescript-eslint/no-unsafe-enum-comparison" | "@typescript-eslint/no-unsafe-function-type" | "@typescript-eslint/no-unsafe-member-access" | "@typescript-eslint/no-unsafe-return" | "@typescript-eslint/no-unsafe-type-assertion" | "@typescript-eslint/no-unsafe-unary-minus" | "@typescript-eslint/no-unused-expressions" | "@typescript-eslint/no-unused-private-class-members" | "@typescript-eslint/no-unused-vars" | "@typescript-eslint/no-use-before-define" | "@typescript-eslint/no-useless-constructor" | "@typescript-eslint/no-useless-default-assignment" | "@typescript-eslint/no-useless-empty-export" | "@typescript-eslint/no-var-requires" | "@typescript-eslint/no-wrapper-object-types" | "@typescript-eslint/non-nullable-type-assertion-style" | "@typescript-eslint/only-throw-error" | "@typescript-eslint/parameter-properties" | "@typescript-eslint/prefer-as-const" | "@typescript-eslint/prefer-destructuring" | "@typescript-eslint/prefer-enum-initializers" | "@typescript-eslint/prefer-find" | "@typescript-eslint/prefer-for-of" | "@typescript-eslint/prefer-function-type" | "@typescript-eslint/prefer-includes" | "@typescript-eslint/prefer-literal-enum-member" | "@typescript-eslint/prefer-namespace-keyword" | "@typescript-eslint/prefer-nullish-coalescing" | "@typescript-eslint/prefer-optional-chain" | "@typescript-eslint/prefer-promise-reject-errors" | "@typescript-eslint/prefer-readonly" | "@typescript-eslint/prefer-readonly-parameter-types" | "@typescript-eslint/prefer-reduce-type-parameter" | "@typescript-eslint/prefer-regexp-exec" | "@typescript-eslint/prefer-return-this-type" | "@typescript-eslint/prefer-string-starts-ends-with" | "@typescript-eslint/prefer-ts-expect-error" | "@typescript-eslint/promise-function-async" | "@typescript-eslint/related-getter-setter-pairs" | "@typescript-eslint/require-array-sort-compare" | "@typescript-eslint/require-await" | "@typescript-eslint/restrict-plus-operands" | "@typescript-eslint/restrict-template-expressions" | "@typescript-eslint/return-await" | "@typescript-eslint/sort-type-constituents" | "@typescript-eslint/strict-boolean-expressions" | "@typescript-eslint/strict-void-return" | "@typescript-eslint/switch-exhaustiveness-check" | "@typescript-eslint/triple-slash-reference" | "@typescript-eslint/typedef" | "@typescript-eslint/unbound-method" | "@typescript-eslint/unified-signatures" | "@typescript-eslint/use-unknown-in-catch-callback-variable" | "unicorn/better-dom-traversing" | "unicorn/better-regex" | "unicorn/catch-error-name" | "unicorn/class-reference-in-static-methods" | "unicorn/comment-content" | "unicorn/consistent-assert" | "unicorn/consistent-boolean-name" | "unicorn/consistent-class-member-order" | "unicorn/consistent-compound-words" | "unicorn/consistent-conditional-object-spread" | "unicorn/consistent-date-clone" | "unicorn/consistent-destructuring" | "unicorn/consistent-empty-array-spread" | "unicorn/consistent-existence-index-check" | "unicorn/consistent-export-decorator-position" | "unicorn/consistent-function-scoping" | "unicorn/consistent-function-style" | "unicorn/consistent-json-file-read" | "unicorn/consistent-optional-chaining" | "unicorn/consistent-template-literal-escape" | "unicorn/consistent-tuple-labels" | "unicorn/custom-error-definition" | "unicorn/default-export-style" | "unicorn/dom-node-dataset" | "unicorn/empty-brace-spaces" | "unicorn/error-message" | "unicorn/escape-case" | "unicorn/expiring-todo-comments" | "unicorn/explicit-length-check" | "unicorn/explicit-timer-delay" | "unicorn/filename-case" | "unicorn/id-match" | "unicorn/import-style" | "unicorn/isolated-functions" | "unicorn/logical-assignment-operators" | "unicorn/max-nested-calls" | "unicorn/name-replacements" | "unicorn/new-for-builtins" | "unicorn/no-abusive-eslint-disable" | "unicorn/no-accessor-recursion" | "unicorn/no-accidental-bitwise-operator" | "unicorn/no-anonymous-default-export" | "unicorn/no-array-callback-reference" | "unicorn/no-array-concat-in-loop" | "unicorn/no-array-fill-with-reference-type" | "unicorn/no-array-from-fill" | "unicorn/no-array-front-mutation" | "unicorn/no-array-method-this-argument" | "unicorn/no-array-push-push" | "unicorn/no-array-reduce" | "unicorn/no-array-reverse" | "unicorn/no-array-sort" | "unicorn/no-array-sort-for-min-max" | "unicorn/no-array-splice" | "unicorn/no-asterisk-prefix-in-documentation-comments" | "unicorn/no-async-promise-finally" | "unicorn/no-await-expression-member" | "unicorn/no-await-in-promise-methods" | "unicorn/no-blob-to-file" | "unicorn/no-boolean-sort-comparator" | "unicorn/no-break-in-nested-loop" | "unicorn/no-canvas-to-image" | "unicorn/no-chained-comparison" | "unicorn/no-collection-bracket-access" | "unicorn/no-computed-property-existence-check" | "unicorn/no-confusing-array-splice" | "unicorn/no-confusing-array-with" | "unicorn/no-console-spaces" | "unicorn/no-constant-zero-expression" | "unicorn/no-declarations-before-early-exit" | "unicorn/no-document-cookie" | "unicorn/no-double-comparison" | "unicorn/no-duplicate-if-branches" | "unicorn/no-duplicate-logical-operands" | "unicorn/no-duplicate-loops" | "unicorn/no-duplicate-set-values" | "unicorn/no-empty-file" | "unicorn/no-error-property-assignment" | "unicorn/no-exports-in-scripts" | "unicorn/no-for-each" | "unicorn/no-for-loop" | "unicorn/no-global-object-property-assignment" | "unicorn/no-hex-escape" | "unicorn/no-immediate-mutation" | "unicorn/no-impossible-length-comparison" | "unicorn/no-incorrect-query-selector" | "unicorn/no-incorrect-template-string-interpolation" | "unicorn/no-instanceof-array" | "unicorn/no-instanceof-builtins" | "unicorn/no-invalid-argument-count" | "unicorn/no-invalid-character-comparison" | "unicorn/no-invalid-fetch-options" | "unicorn/no-invalid-file-input-accept" | "unicorn/no-invalid-remove-event-listener" | "unicorn/no-invalid-well-known-symbol-methods" | "unicorn/no-keyword-prefix" | "unicorn/no-late-current-target-access" | "unicorn/no-late-event-control" | "unicorn/no-length-as-slice-end" | "unicorn/no-lonely-if" | "unicorn/no-loop-iterable-mutation" | "unicorn/no-magic-array-flat-depth" | "unicorn/no-manually-wrapped-comments" | "unicorn/no-mismatched-map-key" | "unicorn/no-misrefactored-assignment" | "unicorn/no-missing-local-resource" | "unicorn/no-multiple-promise-resolver-calls" | "unicorn/no-named-default" | "unicorn/no-negated-array-predicate" | "unicorn/no-negated-comparison" | "unicorn/no-negated-condition" | "unicorn/no-negation-in-equality-check" | "unicorn/no-nested-ternary" | "unicorn/no-new-array" | "unicorn/no-new-buffer" | "unicorn/no-non-function-verb-prefix" | "unicorn/no-nonstandard-builtin-properties" | "unicorn/no-null" | "unicorn/no-object-as-default-parameter" | "unicorn/no-object-methods-with-collections" | "unicorn/no-optional-chaining-on-undeclared-variable" | "unicorn/no-process-exit" | "unicorn/no-redundant-comparison" | "unicorn/no-return-array-push" | "unicorn/no-selector-as-dom-name" | "unicorn/no-shorthand-property-overrides" | "unicorn/no-single-promise-in-promise-methods" | "unicorn/no-static-only-class" | "unicorn/no-subtraction-comparison" | "unicorn/no-thenable" | "unicorn/no-this-assignment" | "unicorn/no-this-outside-of-class" | "unicorn/no-top-level-assignment-in-function" | "unicorn/no-top-level-side-effects" | "unicorn/no-transition-all" | "unicorn/no-typeof-undefined" | "unicorn/no-uncalled-method" | "unicorn/no-undeclared-class-members" | "unicorn/no-unnecessary-array-flat-depth" | "unicorn/no-unnecessary-array-flat-map" | "unicorn/no-unnecessary-array-splice-count" | "unicorn/no-unnecessary-await" | "unicorn/no-unnecessary-boolean-comparison" | "unicorn/no-unnecessary-fetch-options" | "unicorn/no-unnecessary-global-this" | "unicorn/no-unnecessary-nested-ternary" | "unicorn/no-unnecessary-polyfills" | "unicorn/no-unnecessary-slice-end" | "unicorn/no-unnecessary-splice" | "unicorn/no-unnecessary-string-trim" | "unicorn/no-unreadable-array-destructuring" | "unicorn/no-unreadable-for-of-expression" | "unicorn/no-unreadable-iife" | "unicorn/no-unreadable-new-expression" | "unicorn/no-unreadable-object-destructuring" | "unicorn/no-unsafe-buffer-conversion" | "unicorn/no-unsafe-dom-html" | "unicorn/no-unsafe-promise-all-settled-values" | "unicorn/no-unsafe-property-key" | "unicorn/no-unsafe-string-replacement" | "unicorn/no-unused-array-method-return" | "unicorn/no-unused-properties" | "unicorn/no-useless-boolean-cast" | "unicorn/no-useless-coercion" | "unicorn/no-useless-collection-argument" | "unicorn/no-useless-compound-assignment" | "unicorn/no-useless-concat" | "unicorn/no-useless-continue" | "unicorn/no-useless-delete-check" | "unicorn/no-useless-else" | "unicorn/no-useless-error-capture-stack-trace" | "unicorn/no-useless-fallback-in-spread" | "unicorn/no-useless-iterator-to-array" | "unicorn/no-useless-length-check" | "unicorn/no-useless-logical-operand" | "unicorn/no-useless-override" | "unicorn/no-useless-promise-resolve-reject" | "unicorn/no-useless-re-export" | "unicorn/no-useless-recursion" | "unicorn/no-useless-spread" | "unicorn/no-useless-switch-case" | "unicorn/no-useless-template-literals" | "unicorn/no-useless-undefined" | "unicorn/no-xor-as-exponentiation" | "unicorn/no-zero-fractions" | "unicorn/number-literal-case" | "unicorn/numeric-separators-style" | "unicorn/operator-assignment" | "unicorn/prefer-abort-signal-any" | "unicorn/prefer-abort-signal-timeout" | "unicorn/prefer-add-event-listener" | "unicorn/prefer-add-event-listener-options" | "unicorn/prefer-aggregate-error" | "unicorn/prefer-array-find" | "unicorn/prefer-array-flat" | "unicorn/prefer-array-flat-map" | "unicorn/prefer-array-from-async" | "unicorn/prefer-array-from-map" | "unicorn/prefer-array-from-range" | "unicorn/prefer-array-index-of" | "unicorn/prefer-array-iterable-methods" | "unicorn/prefer-array-last-methods" | "unicorn/prefer-array-slice" | "unicorn/prefer-array-some" | "unicorn/prefer-at" | "unicorn/prefer-await" | "unicorn/prefer-bigint-literals" | "unicorn/prefer-blob-reading-methods" | "unicorn/prefer-block-statement-over-iife" | "unicorn/prefer-boolean-return" | "unicorn/prefer-class-fields" | "unicorn/prefer-classlist-toggle" | "unicorn/prefer-code-point" | "unicorn/prefer-continue" | "unicorn/prefer-date-now" | "unicorn/prefer-default-parameters" | "unicorn/prefer-direct-iteration" | "unicorn/prefer-dispose" | "unicorn/prefer-dom-node-append" | "unicorn/prefer-dom-node-dataset" | "unicorn/prefer-dom-node-html-methods" | "unicorn/prefer-dom-node-remove" | "unicorn/prefer-dom-node-replace-children" | "unicorn/prefer-dom-node-text-content" | "unicorn/prefer-early-return" | "unicorn/prefer-else-if" | "unicorn/prefer-error-is-error" | "unicorn/prefer-event-target" | "unicorn/prefer-explicit-viewport-units" | "unicorn/prefer-export-from" | "unicorn/prefer-flat-math-min-max" | "unicorn/prefer-get-or-insert-computed" | "unicorn/prefer-global-number-constants" | "unicorn/prefer-global-this" | "unicorn/prefer-group-by" | "unicorn/prefer-has-check" | "unicorn/prefer-hoisting-branch-code" | "unicorn/prefer-https" | "unicorn/prefer-identifier-import-export-specifiers" | "unicorn/prefer-import-meta-properties" | "unicorn/prefer-includes" | "unicorn/prefer-includes-over-repeated-comparisons" | "unicorn/prefer-iterable-in-constructor" | "unicorn/prefer-iterator-concat" | "unicorn/prefer-iterator-helpers" | "unicorn/prefer-iterator-to-array" | "unicorn/prefer-iterator-to-array-at-end" | "unicorn/prefer-json-parse-buffer" | "unicorn/prefer-keyboard-event-key" | "unicorn/prefer-location-assign" | "unicorn/prefer-logical-operator-over-ternary" | "unicorn/prefer-map-from-entries" | "unicorn/prefer-math-abs" | "unicorn/prefer-math-constants" | "unicorn/prefer-math-min-max" | "unicorn/prefer-math-trunc" | "unicorn/prefer-minimal-ternary" | "unicorn/prefer-modern-dom-apis" | "unicorn/prefer-modern-math-apis" | "unicorn/prefer-module" | "unicorn/prefer-native-coercion-functions" | "unicorn/prefer-negative-index" | "unicorn/prefer-node-protocol" | "unicorn/prefer-number-coercion" | "unicorn/prefer-number-is-safe-integer" | "unicorn/prefer-number-properties" | "unicorn/prefer-object-define-properties" | "unicorn/prefer-object-destructuring-defaults" | "unicorn/prefer-object-from-entries" | "unicorn/prefer-object-iterable-methods" | "unicorn/prefer-observer-apis" | "unicorn/prefer-optional-catch-binding" | "unicorn/prefer-path2d" | "unicorn/prefer-private-class-fields" | "unicorn/prefer-promise-try" | "unicorn/prefer-promise-with-resolvers" | "unicorn/prefer-prototype-methods" | "unicorn/prefer-query-selector" | "unicorn/prefer-queue-microtask" | "unicorn/prefer-reflect-apply" | "unicorn/prefer-regexp-escape" | "unicorn/prefer-regexp-test" | "unicorn/prefer-response-static-json" | "unicorn/prefer-scoped-selector" | "unicorn/prefer-set-has" | "unicorn/prefer-set-methods" | "unicorn/prefer-set-size" | "unicorn/prefer-short-arrow-method" | "unicorn/prefer-simple-condition-first" | "unicorn/prefer-simple-sort-comparator" | "unicorn/prefer-simplified-conditions" | "unicorn/prefer-single-array-predicate" | "unicorn/prefer-single-call" | "unicorn/prefer-single-object-destructuring" | "unicorn/prefer-single-replace" | "unicorn/prefer-smaller-scope" | "unicorn/prefer-split-limit" | "unicorn/prefer-spread" | "unicorn/prefer-string-match-all" | "unicorn/prefer-string-pad-start-end" | "unicorn/prefer-string-raw" | "unicorn/prefer-string-repeat" | "unicorn/prefer-string-replace-all" | "unicorn/prefer-string-slice" | "unicorn/prefer-string-starts-ends-with" | "unicorn/prefer-string-trim-start-end" | "unicorn/prefer-structured-clone" | "unicorn/prefer-switch" | "unicorn/prefer-temporal" | "unicorn/prefer-ternary" | "unicorn/prefer-then-catch" | "unicorn/prefer-toggle-attribute" | "unicorn/prefer-top-level-await" | "unicorn/prefer-type-error" | "unicorn/prefer-type-literal-last" | "unicorn/prefer-uint8array-base64" | "unicorn/prefer-unary-minus" | "unicorn/prefer-unicode-code-point-escapes" | "unicorn/prefer-url-can-parse" | "unicorn/prefer-url-href" | "unicorn/prefer-url-search-parameters" | "unicorn/prefer-while-loop-condition" | "unicorn/prevent-abbreviations" | "unicorn/relative-url-style" | "unicorn/require-array-join-separator" | "unicorn/require-array-sort-compare" | "unicorn/require-css-escape" | "unicorn/require-frontmatter-fields" | "unicorn/require-module-attributes" | "unicorn/require-module-specifiers" | "unicorn/require-number-to-fixed-digits-argument" | "unicorn/require-passive-events" | "unicorn/require-post-message-target-origin" | "unicorn/require-proxy-trap-boolean-return" | "unicorn/string-content" | "unicorn/switch-case-braces" | "unicorn/switch-case-break-position" | "unicorn/template-indent" | "unicorn/text-encoding-identifier-case" | "unicorn/throw-new-error" | "unicorn/try-complexity" | "unused-imports/no-unused-imports" | "unused-imports/no-unused-vars" | "vitest/consistent-each-for" | "vitest/consistent-test-filename" | "vitest/consistent-test-it" | "vitest/consistent-vitest-vi" | "vitest/expect-expect" | "vitest/hoisted-apis-on-top" | "vitest/max-expects" | "vitest/max-nested-describe" | "vitest/no-alias-methods" | "vitest/no-commented-out-tests" | "vitest/no-conditional-expect" | "vitest/no-conditional-in-test" | "vitest/no-conditional-tests" | "vitest/no-disabled-tests" | "vitest/no-done-callback" | "vitest/no-duplicate-hooks" | "vitest/no-focused-tests" | "vitest/no-hooks" | "vitest/no-identical-title" | "vitest/no-import-node-test" | "vitest/no-importing-vitest-globals" | "vitest/no-interpolation-in-snapshots" | "vitest/no-large-snapshots" | "vitest/no-mocks-import" | "vitest/no-restricted-matchers" | "vitest/no-restricted-vi-methods" | "vitest/no-standalone-expect" | "vitest/no-test-prefixes" | "vitest/no-test-return-statement" | "vitest/no-unneeded-async-expect-function" | "vitest/padding-around-after-all-blocks" | "vitest/padding-around-after-each-blocks" | "vitest/padding-around-all" | "vitest/padding-around-before-all-blocks" | "vitest/padding-around-before-each-blocks" | "vitest/padding-around-describe-blocks" | "vitest/padding-around-expect-groups" | "vitest/padding-around-test-blocks" | "vitest/prefer-called-exactly-once-with" | "vitest/prefer-called-once" | "vitest/prefer-called-times" | "vitest/prefer-called-with" | "vitest/prefer-comparison-matcher" | "vitest/prefer-describe-function-title" | "vitest/prefer-each" | "vitest/prefer-equality-matcher" | "vitest/prefer-expect-assertions" | "vitest/prefer-expect-resolves" | "vitest/prefer-expect-type-of" | "vitest/prefer-hooks-in-order" | "vitest/prefer-hooks-on-top" | "vitest/prefer-import-in-mock" | "vitest/prefer-importing-vitest-globals" | "vitest/prefer-lowercase-title" | "vitest/prefer-mock-promise-shorthand" | "vitest/prefer-mock-return-shorthand" | "vitest/prefer-snapshot-hint" | "vitest/prefer-spy-on" | "vitest/prefer-strict-boolean-matchers" | "vitest/prefer-strict-equal" | "vitest/prefer-to-be" | "vitest/prefer-to-be-falsy" | "vitest/prefer-to-be-object" | "vitest/prefer-to-be-truthy" | "vitest/prefer-to-contain" | "vitest/prefer-to-have-been-called-times" | "vitest/prefer-to-have-length" | "vitest/prefer-todo" | "vitest/prefer-vi-mocked" | "vitest/require-awaited-expect-poll" | "vitest/require-hook" | "vitest/require-local-test-context-for-concurrent-snapshots" | "vitest/require-mock-type-parameters" | "vitest/require-test-timeout" | "vitest/require-to-throw-message" | "vitest/require-top-level-describe" | "vitest/unbound-method" | "vitest/valid-describe-callback" | "vitest/valid-expect" | "vitest/valid-expect-in-promise" | "vitest/valid-title" | "vitest/warn-todo" | "yaml/block-mapping" | "yaml/block-mapping-colon-indicator-newline" | "yaml/block-mapping-question-indicator-newline" | "yaml/block-sequence" | "yaml/block-sequence-hyphen-indicator-newline" | "yaml/file-extension" | "yaml/flow-mapping-curly-newline" | "yaml/flow-mapping-curly-spacing" | "yaml/flow-sequence-bracket-newline" | "yaml/flow-sequence-bracket-spacing" | "yaml/indent" | "yaml/key-name-casing" | "yaml/key-spacing" | "yaml/no-empty-document" | "yaml/no-empty-key" | "yaml/no-empty-mapping-value" | "yaml/no-empty-sequence-entry" | "yaml/no-irregular-whitespace" | "yaml/no-multiple-empty-lines" | "yaml/no-tab-indent" | "yaml/no-trailing-spaces" | "yaml/no-trailing-zeros" | "yaml/plain-scalar" | "yaml/quotes" | "yaml/require-string-key" | "yaml/sort-keys" | "yaml/sort-sequence-values" | "yaml/spaced-comment" | "yaml/vue-custom-block/no-parsing-error")[];
|
|
4
4
|
//#endregion
|
|
5
5
|
export { FIXABLE_RULES, FIXABLE_RULES_MAP };
|
package/dist/fixable.js
CHANGED