@daopk/eslint-config 0.3.0 → 0.4.0

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +3306 -802
  2. package/dist/index.js +20 -0
  3. package/package.json +18 -15
package/dist/index.d.ts CHANGED
@@ -1595,12 +1595,12 @@ interface RuleOptions {
1595
1595
  */
1596
1596
  'node/no-hide-core-modules'?: Linter.RuleEntry<NodeNoHideCoreModules>;
1597
1597
  /**
1598
- * disallow `import` declarations which import non-existence modules
1598
+ * disallow `import` declarations which import missing modules
1599
1599
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-import.md
1600
1600
  */
1601
1601
  'node/no-missing-import'?: Linter.RuleEntry<NodeNoMissingImport>;
1602
1602
  /**
1603
- * disallow `require()` expressions which import non-existence modules
1603
+ * disallow `require()` expressions which import missing modules
1604
1604
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-require.md
1605
1605
  */
1606
1606
  'node/no-missing-require'?: Linter.RuleEntry<NodeNoMissingRequire>;
@@ -2166,6 +2166,11 @@ interface RuleOptions {
2166
2166
  * @see https://eslint.style/rules/eol-last
2167
2167
  */
2168
2168
  'stylistic/eol-last'?: Linter.RuleEntry<StylisticEolLast>;
2169
+ /**
2170
+ * Enforce consistent spacing and line break styles inside brackets.
2171
+ * @see https://eslint.style/rules/list-style
2172
+ */
2173
+ 'stylistic/exp-list-style'?: Linter.RuleEntry<StylisticExpListStyle>;
2169
2174
  /**
2170
2175
  * Enforce line breaks between arguments of a function call
2171
2176
  * @see https://eslint.style/rules/function-call-argument-newline
@@ -3018,7 +3023,7 @@ interface RuleOptions {
3018
3023
  * Disallow member access on a value with type `any`
3019
3024
  * @see https://typescript-eslint.io/rules/no-unsafe-member-access
3020
3025
  */
3021
- 'typescript/no-unsafe-member-access'?: Linter.RuleEntry<[]>;
3026
+ 'typescript/no-unsafe-member-access'?: Linter.RuleEntry<TypescriptNoUnsafeMemberAccess>;
3022
3027
  /**
3023
3028
  * Disallow returning a value with type `any` from a function
3024
3029
  * @see https://typescript-eslint.io/rules/no-unsafe-return
@@ -3289,267 +3294,1505 @@ interface RuleOptions {
3289
3294
  */
3290
3295
  'vars-on-top'?: Linter.RuleEntry<[]>;
3291
3296
  /**
3292
- * Require parentheses around immediate `function` invocations
3293
- * @see https://eslint.org/docs/latest/rules/wrap-iife
3294
- * @deprecated
3297
+ * Enforce linebreaks after opening and before closing array brackets in `<template>`
3298
+ * @see https://eslint.vuejs.org/rules/array-bracket-newline.html
3295
3299
  */
3296
- 'wrap-iife'?: Linter.RuleEntry<WrapIife>;
3300
+ 'vue/array-bracket-newline'?: Linter.RuleEntry<VueArrayBracketNewline>;
3297
3301
  /**
3298
- * Require parenthesis around regex literals
3299
- * @see https://eslint.org/docs/latest/rules/wrap-regex
3300
- * @deprecated
3302
+ * Enforce consistent spacing inside array brackets in `<template>`
3303
+ * @see https://eslint.vuejs.org/rules/array-bracket-spacing.html
3301
3304
  */
3302
- 'wrap-regex'?: Linter.RuleEntry<[]>;
3305
+ 'vue/array-bracket-spacing'?: Linter.RuleEntry<VueArrayBracketSpacing>;
3303
3306
  /**
3304
- * Require or disallow spacing around the `*` in `yield*` expressions
3305
- * @see https://eslint.org/docs/latest/rules/yield-star-spacing
3306
- * @deprecated
3307
+ * Enforce line breaks after each array element in `<template>`
3308
+ * @see https://eslint.vuejs.org/rules/array-element-newline.html
3307
3309
  */
3308
- 'yield-star-spacing'?: Linter.RuleEntry<YieldStarSpacing>;
3310
+ 'vue/array-element-newline'?: Linter.RuleEntry<VueArrayElementNewline>;
3309
3311
  /**
3310
- * Require or disallow "Yoda" conditions
3311
- * @see https://eslint.org/docs/latest/rules/yoda
3312
+ * Enforce consistent spacing before and after the arrow in arrow functions in `<template>`
3313
+ * @see https://eslint.vuejs.org/rules/arrow-spacing.html
3312
3314
  */
3313
- 'yoda'?: Linter.RuleEntry<Yoda>;
3314
- }
3315
-
3316
- /* ======= Declarations ======= */
3317
- // ----- accessor-pairs -----
3318
- type AccessorPairs = [] | [{
3319
- getWithoutSet?: boolean;
3320
- setWithoutGet?: boolean;
3321
- enforceForClassMembers?: boolean;
3322
- enforceForTSTypes?: boolean;
3323
- }];
3324
- // ----- antfu/consistent-chaining -----
3325
- type AntfuConsistentChaining = [] | [{
3326
- allowLeadingPropertyAccess?: boolean;
3327
- }];
3328
- // ----- antfu/consistent-list-newline -----
3329
- type AntfuConsistentListNewline = [] | [{
3330
- ArrayExpression?: boolean;
3331
- ArrayPattern?: boolean;
3332
- ArrowFunctionExpression?: boolean;
3333
- CallExpression?: boolean;
3334
- ExportNamedDeclaration?: boolean;
3335
- FunctionDeclaration?: boolean;
3336
- FunctionExpression?: boolean;
3337
- ImportDeclaration?: boolean;
3338
- JSONArrayExpression?: boolean;
3339
- JSONObjectExpression?: boolean;
3340
- JSXOpeningElement?: boolean;
3341
- NewExpression?: boolean;
3342
- ObjectExpression?: boolean;
3343
- ObjectPattern?: boolean;
3344
- TSFunctionType?: boolean;
3345
- TSInterfaceDeclaration?: boolean;
3346
- TSTupleType?: boolean;
3347
- TSTypeLiteral?: boolean;
3348
- TSTypeParameterDeclaration?: boolean;
3349
- TSTypeParameterInstantiation?: boolean;
3350
- }];
3351
- // ----- antfu/indent-unindent -----
3352
- type AntfuIndentUnindent = [] | [{
3353
- indent?: number;
3354
- tags?: string[];
3355
- }];
3356
- // ----- array-bracket-newline -----
3357
- type ArrayBracketNewline = [] | [(("always" | "never" | "consistent") | {
3358
- multiline?: boolean;
3359
- minItems?: (number | null);
3360
- })];
3361
- // ----- array-bracket-spacing -----
3362
- type ArrayBracketSpacing = [] | [("always" | "never")] | [("always" | "never"), {
3363
- singleValue?: boolean;
3364
- objectsInArrays?: boolean;
3365
- arraysInArrays?: boolean;
3366
- }];
3367
- // ----- array-callback-return -----
3368
- type ArrayCallbackReturn = [] | [{
3369
- allowImplicit?: boolean;
3370
- checkForEach?: boolean;
3371
- allowVoid?: boolean;
3372
- }];
3373
- // ----- array-element-newline -----
3374
- type ArrayElementNewline = [] | [(_ArrayElementNewlineBasicConfig | {
3375
- ArrayExpression?: _ArrayElementNewlineBasicConfig;
3376
- ArrayPattern?: _ArrayElementNewlineBasicConfig;
3377
- })];
3378
- type _ArrayElementNewlineBasicConfig = (("always" | "never" | "consistent") | {
3379
- multiline?: boolean;
3380
- minItems?: (number | null);
3381
- });
3382
- // ----- arrow-body-style -----
3383
- type ArrowBodyStyle = ([] | [("always" | "never")] | [] | ["as-needed"] | ["as-needed", {
3384
- requireReturnForObjectLiteral?: boolean;
3385
- }]);
3386
- // ----- arrow-parens -----
3387
- type ArrowParens = [] | [("always" | "as-needed")] | [("always" | "as-needed"), {
3388
- requireForBlockBody?: boolean;
3389
- }];
3390
- // ----- arrow-spacing -----
3391
- type ArrowSpacing = [] | [{
3392
- before?: boolean;
3393
- after?: boolean;
3394
- }];
3395
- // ----- block-spacing -----
3396
- type BlockSpacing = [] | [("always" | "never")];
3397
- // ----- brace-style -----
3398
- type BraceStyle = [] | [("1tbs" | "stroustrup" | "allman")] | [("1tbs" | "stroustrup" | "allman"), {
3399
- allowSingleLine?: boolean;
3400
- }];
3401
- // ----- callback-return -----
3402
- type CallbackReturn = [] | [string[]];
3403
- // ----- camelcase -----
3404
- type Camelcase = [] | [{
3405
- ignoreDestructuring?: boolean;
3406
- ignoreImports?: boolean;
3407
- ignoreGlobals?: boolean;
3408
- properties?: ("always" | "never");
3409
- allow?: string[];
3410
- }];
3411
- // ----- capitalized-comments -----
3412
- type CapitalizedComments = [] | [("always" | "never")] | [("always" | "never"), ({
3413
- ignorePattern?: string;
3414
- ignoreInlineComments?: boolean;
3415
- ignoreConsecutiveComments?: boolean;
3416
- } | {
3417
- line?: {
3418
- ignorePattern?: string;
3419
- ignoreInlineComments?: boolean;
3420
- ignoreConsecutiveComments?: boolean;
3421
- };
3422
- block?: {
3423
- ignorePattern?: string;
3424
- ignoreInlineComments?: boolean;
3425
- ignoreConsecutiveComments?: boolean;
3426
- };
3427
- })];
3428
- // ----- class-methods-use-this -----
3429
- type ClassMethodsUseThis = [] | [{
3430
- exceptMethods?: string[];
3431
- enforceForClassFields?: boolean;
3432
- ignoreOverrideMethods?: boolean;
3433
- ignoreClassesWithImplements?: ("all" | "public-fields");
3434
- }];
3435
- // ----- comma-dangle -----
3436
- type CommaDangle = [] | [(_CommaDangleValue | {
3437
- arrays?: _CommaDangleValueWithIgnore;
3438
- objects?: _CommaDangleValueWithIgnore;
3439
- imports?: _CommaDangleValueWithIgnore;
3440
- exports?: _CommaDangleValueWithIgnore;
3441
- functions?: _CommaDangleValueWithIgnore;
3442
- })];
3443
- type _CommaDangleValue = ("always-multiline" | "always" | "never" | "only-multiline");
3444
- type _CommaDangleValueWithIgnore = ("always-multiline" | "always" | "ignore" | "never" | "only-multiline");
3445
- // ----- comma-spacing -----
3446
- type CommaSpacing = [] | [{
3447
- before?: boolean;
3448
- after?: boolean;
3449
- }];
3450
- // ----- comma-style -----
3451
- type CommaStyle = [] | [("first" | "last")] | [("first" | "last"), {
3452
- exceptions?: {
3453
- [k: string]: boolean | undefined;
3454
- };
3455
- }];
3456
- // ----- complexity -----
3457
- type Complexity = [] | [(number | {
3458
- maximum?: number;
3459
- max?: number;
3460
- variant?: ("classic" | "modified");
3461
- })];
3462
- // ----- computed-property-spacing -----
3463
- type ComputedPropertySpacing = [] | [("always" | "never")] | [("always" | "never"), {
3464
- enforceForClassMembers?: boolean;
3465
- }];
3466
- // ----- consistent-return -----
3467
- type ConsistentReturn = [] | [{
3468
- treatUndefinedAsUnspecified?: boolean;
3469
- }];
3470
- // ----- consistent-this -----
3471
- type ConsistentThis = string[];
3472
- // ----- curly -----
3473
- type Curly = ([] | ["all"] | [] | [("multi" | "multi-line" | "multi-or-nest")] | [("multi" | "multi-line" | "multi-or-nest"), "consistent"]);
3474
- // ----- default-case -----
3475
- type DefaultCase = [] | [{
3476
- commentPattern?: string;
3477
- }];
3478
- // ----- dot-location -----
3479
- type DotLocation = [] | [("object" | "property")];
3480
- // ----- dot-notation -----
3481
- type DotNotation = [] | [{
3482
- allowKeywords?: boolean;
3483
- allowPattern?: string;
3484
- }];
3485
- // ----- eol-last -----
3486
- type EolLast = [] | [("always" | "never" | "unix" | "windows")];
3487
- // ----- eqeqeq -----
3488
- type Eqeqeq = ([] | ["always"] | ["always", {
3489
- null?: ("always" | "never" | "ignore");
3490
- }] | [] | [("smart" | "allow-null")]);
3491
- // ----- func-call-spacing -----
3492
- type FuncCallSpacing = ([] | ["never"] | [] | ["always"] | ["always", {
3493
- allowNewlines?: boolean;
3494
- }]);
3495
- // ----- func-name-matching -----
3496
- type FuncNameMatching = ([] | [("always" | "never")] | [("always" | "never"), {
3497
- considerPropertyDescriptor?: boolean;
3498
- includeCommonJSModuleExports?: boolean;
3499
- }] | [] | [{
3500
- considerPropertyDescriptor?: boolean;
3501
- includeCommonJSModuleExports?: boolean;
3502
- }]);
3503
- // ----- func-names -----
3504
- type FuncNames = [] | [_FuncNamesValue] | [_FuncNamesValue, {
3505
- generators?: _FuncNamesValue;
3506
- }];
3507
- type _FuncNamesValue = ("always" | "as-needed" | "never");
3508
- // ----- func-style -----
3509
- type FuncStyle = [] | [("declaration" | "expression")] | [("declaration" | "expression"), {
3510
- allowArrowFunctions?: boolean;
3511
- allowTypeAnnotation?: boolean;
3512
- overrides?: {
3513
- namedExports?: ("declaration" | "expression" | "ignore");
3514
- };
3515
- }];
3516
- // ----- function-call-argument-newline -----
3517
- type FunctionCallArgumentNewline = [] | [("always" | "never" | "consistent")];
3518
- // ----- function-paren-newline -----
3519
- type FunctionParenNewline = [] | [(("always" | "never" | "consistent" | "multiline" | "multiline-arguments") | {
3520
- minItems?: number;
3521
- })];
3522
- // ----- generator-star-spacing -----
3523
- type GeneratorStarSpacing = [] | [(("before" | "after" | "both" | "neither") | {
3524
- before?: boolean;
3525
- after?: boolean;
3526
- named?: (("before" | "after" | "both" | "neither") | {
3527
- before?: boolean;
3528
- after?: boolean;
3529
- });
3530
- anonymous?: (("before" | "after" | "both" | "neither") | {
3531
- before?: boolean;
3532
- after?: boolean;
3533
- });
3534
- method?: (("before" | "after" | "both" | "neither") | {
3535
- before?: boolean;
3536
- after?: boolean;
3537
- });
3538
- })];
3539
- // ----- getter-return -----
3540
- type GetterReturn = [] | [{
3541
- allowImplicit?: boolean;
3542
- }];
3543
- // ----- grouped-accessor-pairs -----
3544
- type GroupedAccessorPairs = [] | [("anyOrder" | "getBeforeSet" | "setBeforeGet")] | [("anyOrder" | "getBeforeSet" | "setBeforeGet"), {
3545
- enforceForTSTypes?: boolean;
3546
- }];
3547
- // ----- handle-callback-err -----
3548
- type HandleCallbackErr = [] | [string];
3549
- // ----- id-blacklist -----
3550
- type IdBlacklist = string[];
3551
- // ----- id-denylist -----
3552
- type IdDenylist = string[];
3315
+ 'vue/arrow-spacing'?: Linter.RuleEntry<VueArrowSpacing>;
3316
+ /**
3317
+ * enforce attribute naming style on custom components in template
3318
+ * @see https://eslint.vuejs.org/rules/attribute-hyphenation.html
3319
+ */
3320
+ 'vue/attribute-hyphenation'?: Linter.RuleEntry<VueAttributeHyphenation>;
3321
+ /**
3322
+ * enforce order of attributes
3323
+ * @see https://eslint.vuejs.org/rules/attributes-order.html
3324
+ */
3325
+ 'vue/attributes-order'?: Linter.RuleEntry<VueAttributesOrder>;
3326
+ /**
3327
+ * disallow use other than available `lang`
3328
+ * @see https://eslint.vuejs.org/rules/block-lang.html
3329
+ */
3330
+ 'vue/block-lang'?: Linter.RuleEntry<VueBlockLang>;
3331
+ /**
3332
+ * enforce order of component top-level elements
3333
+ * @see https://eslint.vuejs.org/rules/block-order.html
3334
+ */
3335
+ 'vue/block-order'?: Linter.RuleEntry<VueBlockOrder>;
3336
+ /**
3337
+ * Disallow or enforce spaces inside of blocks after opening block and before closing block in `<template>`
3338
+ * @see https://eslint.vuejs.org/rules/block-spacing.html
3339
+ */
3340
+ 'vue/block-spacing'?: Linter.RuleEntry<VueBlockSpacing>;
3341
+ /**
3342
+ * enforce line breaks after opening and before closing block-level tags
3343
+ * @see https://eslint.vuejs.org/rules/block-tag-newline.html
3344
+ */
3345
+ 'vue/block-tag-newline'?: Linter.RuleEntry<VueBlockTagNewline>;
3346
+ /**
3347
+ * Enforce consistent brace style for blocks in `<template>`
3348
+ * @see https://eslint.vuejs.org/rules/brace-style.html
3349
+ */
3350
+ 'vue/brace-style'?: Linter.RuleEntry<VueBraceStyle>;
3351
+ /**
3352
+ * Enforce camelcase naming convention in `<template>`
3353
+ * @see https://eslint.vuejs.org/rules/camelcase.html
3354
+ */
3355
+ 'vue/camelcase'?: Linter.RuleEntry<VueCamelcase>;
3356
+ /**
3357
+ * Require or disallow trailing commas in `<template>`
3358
+ * @see https://eslint.vuejs.org/rules/comma-dangle.html
3359
+ */
3360
+ 'vue/comma-dangle'?: Linter.RuleEntry<VueCommaDangle>;
3361
+ /**
3362
+ * Enforce consistent spacing before and after commas in `<template>`
3363
+ * @see https://eslint.vuejs.org/rules/comma-spacing.html
3364
+ */
3365
+ 'vue/comma-spacing'?: Linter.RuleEntry<VueCommaSpacing>;
3366
+ /**
3367
+ * Enforce consistent comma style in `<template>`
3368
+ * @see https://eslint.vuejs.org/rules/comma-style.html
3369
+ */
3370
+ 'vue/comma-style'?: Linter.RuleEntry<VueCommaStyle>;
3371
+ /**
3372
+ * support comment-directives in `<template>`
3373
+ * @see https://eslint.vuejs.org/rules/comment-directive.html
3374
+ */
3375
+ 'vue/comment-directive'?: Linter.RuleEntry<VueCommentDirective>;
3376
+ /**
3377
+ * enforce component API style
3378
+ * @see https://eslint.vuejs.org/rules/component-api-style.html
3379
+ */
3380
+ 'vue/component-api-style'?: Linter.RuleEntry<VueComponentApiStyle>;
3381
+ /**
3382
+ * enforce specific casing for component definition name
3383
+ * @see https://eslint.vuejs.org/rules/component-definition-name-casing.html
3384
+ */
3385
+ 'vue/component-definition-name-casing'?: Linter.RuleEntry<VueComponentDefinitionNameCasing>;
3386
+ /**
3387
+ * enforce specific casing for the component naming style in template
3388
+ * @see https://eslint.vuejs.org/rules/component-name-in-template-casing.html
3389
+ */
3390
+ 'vue/component-name-in-template-casing'?: Linter.RuleEntry<VueComponentNameInTemplateCasing>;
3391
+ /**
3392
+ * enforce the casing of component name in `components` options
3393
+ * @see https://eslint.vuejs.org/rules/component-options-name-casing.html
3394
+ */
3395
+ 'vue/component-options-name-casing'?: Linter.RuleEntry<VueComponentOptionsNameCasing>;
3396
+ /**
3397
+ * enforce specific casing for custom event name
3398
+ * @see https://eslint.vuejs.org/rules/custom-event-name-casing.html
3399
+ */
3400
+ 'vue/custom-event-name-casing'?: Linter.RuleEntry<VueCustomEventNameCasing>;
3401
+ /**
3402
+ * enforce declaration style of `defineEmits`
3403
+ * @see https://eslint.vuejs.org/rules/define-emits-declaration.html
3404
+ */
3405
+ 'vue/define-emits-declaration'?: Linter.RuleEntry<VueDefineEmitsDeclaration>;
3406
+ /**
3407
+ * enforce order of compiler macros (`defineProps`, `defineEmits`, etc.)
3408
+ * @see https://eslint.vuejs.org/rules/define-macros-order.html
3409
+ */
3410
+ 'vue/define-macros-order'?: Linter.RuleEntry<VueDefineMacrosOrder>;
3411
+ /**
3412
+ * enforce declaration style of `defineProps`
3413
+ * @see https://eslint.vuejs.org/rules/define-props-declaration.html
3414
+ */
3415
+ 'vue/define-props-declaration'?: Linter.RuleEntry<VueDefinePropsDeclaration>;
3416
+ /**
3417
+ * enforce consistent style for props destructuring
3418
+ * @see https://eslint.vuejs.org/rules/define-props-destructuring.html
3419
+ */
3420
+ 'vue/define-props-destructuring'?: Linter.RuleEntry<VueDefinePropsDestructuring>;
3421
+ /**
3422
+ * Enforce consistent newlines before and after dots in `<template>`
3423
+ * @see https://eslint.vuejs.org/rules/dot-location.html
3424
+ */
3425
+ 'vue/dot-location'?: Linter.RuleEntry<VueDotLocation>;
3426
+ /**
3427
+ * Enforce dot notation whenever possible in `<template>`
3428
+ * @see https://eslint.vuejs.org/rules/dot-notation.html
3429
+ */
3430
+ 'vue/dot-notation'?: Linter.RuleEntry<VueDotNotation>;
3431
+ /**
3432
+ * enforce or forbid the use of the `scoped` and `module` attributes in SFC top level style tags
3433
+ * @see https://eslint.vuejs.org/rules/enforce-style-attribute.html
3434
+ */
3435
+ 'vue/enforce-style-attribute'?: Linter.RuleEntry<VueEnforceStyleAttribute>;
3436
+ /**
3437
+ * Require the use of `===` and `!==` in `<template>`
3438
+ * @see https://eslint.vuejs.org/rules/eqeqeq.html
3439
+ */
3440
+ 'vue/eqeqeq'?: Linter.RuleEntry<VueEqeqeq>;
3441
+ /**
3442
+ * enforce the location of first attribute
3443
+ * @see https://eslint.vuejs.org/rules/first-attribute-linebreak.html
3444
+ */
3445
+ 'vue/first-attribute-linebreak'?: Linter.RuleEntry<VueFirstAttributeLinebreak>;
3446
+ /**
3447
+ * Require or disallow spacing between function identifiers and their invocations in `<template>`
3448
+ * @see https://eslint.vuejs.org/rules/func-call-spacing.html
3449
+ */
3450
+ 'vue/func-call-spacing'?: Linter.RuleEntry<VueFuncCallSpacing>;
3451
+ /**
3452
+ * disallow usage of button without an explicit type attribute
3453
+ * @see https://eslint.vuejs.org/rules/html-button-has-type.html
3454
+ */
3455
+ 'vue/html-button-has-type'?: Linter.RuleEntry<VueHtmlButtonHasType>;
3456
+ /**
3457
+ * require or disallow a line break before tag's closing brackets
3458
+ * @see https://eslint.vuejs.org/rules/html-closing-bracket-newline.html
3459
+ */
3460
+ 'vue/html-closing-bracket-newline'?: Linter.RuleEntry<VueHtmlClosingBracketNewline>;
3461
+ /**
3462
+ * require or disallow a space before tag's closing brackets
3463
+ * @see https://eslint.vuejs.org/rules/html-closing-bracket-spacing.html
3464
+ */
3465
+ 'vue/html-closing-bracket-spacing'?: Linter.RuleEntry<VueHtmlClosingBracketSpacing>;
3466
+ /**
3467
+ * enforce unified line break in HTML comments
3468
+ * @see https://eslint.vuejs.org/rules/html-comment-content-newline.html
3469
+ */
3470
+ 'vue/html-comment-content-newline'?: Linter.RuleEntry<VueHtmlCommentContentNewline>;
3471
+ /**
3472
+ * enforce unified spacing in HTML comments
3473
+ * @see https://eslint.vuejs.org/rules/html-comment-content-spacing.html
3474
+ */
3475
+ 'vue/html-comment-content-spacing'?: Linter.RuleEntry<VueHtmlCommentContentSpacing>;
3476
+ /**
3477
+ * enforce consistent indentation in HTML comments
3478
+ * @see https://eslint.vuejs.org/rules/html-comment-indent.html
3479
+ */
3480
+ 'vue/html-comment-indent'?: Linter.RuleEntry<VueHtmlCommentIndent>;
3481
+ /**
3482
+ * enforce end tag style
3483
+ * @see https://eslint.vuejs.org/rules/html-end-tags.html
3484
+ */
3485
+ 'vue/html-end-tags'?: Linter.RuleEntry<[]>;
3486
+ /**
3487
+ * enforce consistent indentation in `<template>`
3488
+ * @see https://eslint.vuejs.org/rules/html-indent.html
3489
+ */
3490
+ 'vue/html-indent'?: Linter.RuleEntry<VueHtmlIndent>;
3491
+ /**
3492
+ * enforce quotes style of HTML attributes
3493
+ * @see https://eslint.vuejs.org/rules/html-quotes.html
3494
+ */
3495
+ 'vue/html-quotes'?: Linter.RuleEntry<VueHtmlQuotes>;
3496
+ /**
3497
+ * enforce self-closing style
3498
+ * @see https://eslint.vuejs.org/rules/html-self-closing.html
3499
+ */
3500
+ 'vue/html-self-closing'?: Linter.RuleEntry<VueHtmlSelfClosing>;
3501
+ /**
3502
+ * prevent variables used in JSX to be marked as unused
3503
+ * @see https://eslint.vuejs.org/rules/jsx-uses-vars.html
3504
+ */
3505
+ 'vue/jsx-uses-vars'?: Linter.RuleEntry<[]>;
3506
+ /**
3507
+ * Enforce consistent spacing between keys and values in object literal properties in `<template>`
3508
+ * @see https://eslint.vuejs.org/rules/key-spacing.html
3509
+ */
3510
+ 'vue/key-spacing'?: Linter.RuleEntry<VueKeySpacing>;
3511
+ /**
3512
+ * Enforce consistent spacing before and after keywords in `<template>`
3513
+ * @see https://eslint.vuejs.org/rules/keyword-spacing.html
3514
+ */
3515
+ 'vue/keyword-spacing'?: Linter.RuleEntry<VueKeywordSpacing>;
3516
+ /**
3517
+ * require component name property to match its file name
3518
+ * @see https://eslint.vuejs.org/rules/match-component-file-name.html
3519
+ */
3520
+ 'vue/match-component-file-name'?: Linter.RuleEntry<VueMatchComponentFileName>;
3521
+ /**
3522
+ * require the registered component name to match the imported component name
3523
+ * @see https://eslint.vuejs.org/rules/match-component-import-name.html
3524
+ */
3525
+ 'vue/match-component-import-name'?: Linter.RuleEntry<[]>;
3526
+ /**
3527
+ * enforce the maximum number of attributes per line
3528
+ * @see https://eslint.vuejs.org/rules/max-attributes-per-line.html
3529
+ */
3530
+ 'vue/max-attributes-per-line'?: Linter.RuleEntry<VueMaxAttributesPerLine>;
3531
+ /**
3532
+ * enforce a maximum line length in `.vue` files
3533
+ * @see https://eslint.vuejs.org/rules/max-len.html
3534
+ */
3535
+ 'vue/max-len'?: Linter.RuleEntry<VueMaxLen>;
3536
+ /**
3537
+ * enforce maximum number of lines in Vue SFC blocks
3538
+ * @see https://eslint.vuejs.org/rules/max-lines-per-block.html
3539
+ */
3540
+ 'vue/max-lines-per-block'?: Linter.RuleEntry<VueMaxLinesPerBlock>;
3541
+ /**
3542
+ * enforce maximum number of props in Vue component
3543
+ * @see https://eslint.vuejs.org/rules/max-props.html
3544
+ */
3545
+ 'vue/max-props'?: Linter.RuleEntry<VueMaxProps>;
3546
+ /**
3547
+ * enforce maximum depth of template
3548
+ * @see https://eslint.vuejs.org/rules/max-template-depth.html
3549
+ */
3550
+ 'vue/max-template-depth'?: Linter.RuleEntry<VueMaxTemplateDepth>;
3551
+ /**
3552
+ * require component names to be always multi-word
3553
+ * @see https://eslint.vuejs.org/rules/multi-word-component-names.html
3554
+ */
3555
+ 'vue/multi-word-component-names'?: Linter.RuleEntry<VueMultiWordComponentNames>;
3556
+ /**
3557
+ * require a line break before and after the contents of a multiline element
3558
+ * @see https://eslint.vuejs.org/rules/multiline-html-element-content-newline.html
3559
+ */
3560
+ 'vue/multiline-html-element-content-newline'?: Linter.RuleEntry<VueMultilineHtmlElementContentNewline>;
3561
+ /**
3562
+ * Enforce newlines between operands of ternary expressions in `<template>`
3563
+ * @see https://eslint.vuejs.org/rules/multiline-ternary.html
3564
+ */
3565
+ 'vue/multiline-ternary'?: Linter.RuleEntry<VueMultilineTernary>;
3566
+ /**
3567
+ * enforce unified spacing in mustache interpolations
3568
+ * @see https://eslint.vuejs.org/rules/mustache-interpolation-spacing.html
3569
+ */
3570
+ 'vue/mustache-interpolation-spacing'?: Linter.RuleEntry<VueMustacheInterpolationSpacing>;
3571
+ /**
3572
+ * enforce new lines between multi-line properties in Vue components
3573
+ * @see https://eslint.vuejs.org/rules/new-line-between-multi-line-property.html
3574
+ */
3575
+ 'vue/new-line-between-multi-line-property'?: Linter.RuleEntry<VueNewLineBetweenMultiLineProperty>;
3576
+ /**
3577
+ * enforce Promise or callback style in `nextTick`
3578
+ * @see https://eslint.vuejs.org/rules/next-tick-style.html
3579
+ */
3580
+ 'vue/next-tick-style'?: Linter.RuleEntry<VueNextTickStyle>;
3581
+ /**
3582
+ * disallow using arrow functions to define watcher
3583
+ * @see https://eslint.vuejs.org/rules/no-arrow-functions-in-watch.html
3584
+ */
3585
+ 'vue/no-arrow-functions-in-watch'?: Linter.RuleEntry<[]>;
3586
+ /**
3587
+ * disallow asynchronous actions in computed properties
3588
+ * @see https://eslint.vuejs.org/rules/no-async-in-computed-properties.html
3589
+ */
3590
+ 'vue/no-async-in-computed-properties'?: Linter.RuleEntry<VueNoAsyncInComputedProperties>;
3591
+ /**
3592
+ * disallow the use of bare strings in `<template>`
3593
+ * @see https://eslint.vuejs.org/rules/no-bare-strings-in-template.html
3594
+ */
3595
+ 'vue/no-bare-strings-in-template'?: Linter.RuleEntry<VueNoBareStringsInTemplate>;
3596
+ /**
3597
+ * disallow boolean defaults
3598
+ * @see https://eslint.vuejs.org/rules/no-boolean-default.html
3599
+ */
3600
+ 'vue/no-boolean-default'?: Linter.RuleEntry<VueNoBooleanDefault>;
3601
+ /**
3602
+ * disallow element's child contents which would be overwritten by a directive like `v-html` or `v-text`
3603
+ * @see https://eslint.vuejs.org/rules/no-child-content.html
3604
+ */
3605
+ 'vue/no-child-content'?: Linter.RuleEntry<VueNoChildContent>;
3606
+ /**
3607
+ * disallow accessing computed properties in `data`
3608
+ * @see https://eslint.vuejs.org/rules/no-computed-properties-in-data.html
3609
+ */
3610
+ 'vue/no-computed-properties-in-data'?: Linter.RuleEntry<[]>;
3611
+ /**
3612
+ * Disallow the use of `console` in `<template>`
3613
+ * @see https://eslint.vuejs.org/rules/no-console.html
3614
+ */
3615
+ 'vue/no-console'?: Linter.RuleEntry<VueNoConsole>;
3616
+ /**
3617
+ * Disallow constant expressions in conditions in `<template>`
3618
+ * @see https://eslint.vuejs.org/rules/no-constant-condition.html
3619
+ */
3620
+ 'vue/no-constant-condition'?: Linter.RuleEntry<VueNoConstantCondition>;
3621
+ /**
3622
+ * disallow custom modifiers on v-model used on the component
3623
+ * @see https://eslint.vuejs.org/rules/no-custom-modifiers-on-v-model.html
3624
+ */
3625
+ 'vue/no-custom-modifiers-on-v-model'?: Linter.RuleEntry<[]>;
3626
+ /**
3627
+ * disallow using deprecated object declaration on data (in Vue.js 3.0.0+)
3628
+ * @see https://eslint.vuejs.org/rules/no-deprecated-data-object-declaration.html
3629
+ */
3630
+ 'vue/no-deprecated-data-object-declaration'?: Linter.RuleEntry<[]>;
3631
+ /**
3632
+ * disallow using deprecated `$delete` and `$set` (in Vue.js 3.0.0+)
3633
+ * @see https://eslint.vuejs.org/rules/no-deprecated-delete-set.html
3634
+ */
3635
+ 'vue/no-deprecated-delete-set'?: Linter.RuleEntry<[]>;
3636
+ /**
3637
+ * disallow using deprecated `destroyed` and `beforeDestroy` lifecycle hooks (in Vue.js 3.0.0+)
3638
+ * @see https://eslint.vuejs.org/rules/no-deprecated-destroyed-lifecycle.html
3639
+ */
3640
+ 'vue/no-deprecated-destroyed-lifecycle'?: Linter.RuleEntry<[]>;
3641
+ /**
3642
+ * disallow using deprecated `$listeners` (in Vue.js 3.0.0+)
3643
+ * @see https://eslint.vuejs.org/rules/no-deprecated-dollar-listeners-api.html
3644
+ */
3645
+ 'vue/no-deprecated-dollar-listeners-api'?: Linter.RuleEntry<[]>;
3646
+ /**
3647
+ * disallow using deprecated `$scopedSlots` (in Vue.js 3.0.0+)
3648
+ * @see https://eslint.vuejs.org/rules/no-deprecated-dollar-scopedslots-api.html
3649
+ */
3650
+ 'vue/no-deprecated-dollar-scopedslots-api'?: Linter.RuleEntry<[]>;
3651
+ /**
3652
+ * disallow using deprecated events api (in Vue.js 3.0.0+)
3653
+ * @see https://eslint.vuejs.org/rules/no-deprecated-events-api.html
3654
+ */
3655
+ 'vue/no-deprecated-events-api'?: Linter.RuleEntry<[]>;
3656
+ /**
3657
+ * disallow using deprecated filters syntax (in Vue.js 3.0.0+)
3658
+ * @see https://eslint.vuejs.org/rules/no-deprecated-filter.html
3659
+ */
3660
+ 'vue/no-deprecated-filter'?: Linter.RuleEntry<[]>;
3661
+ /**
3662
+ * disallow using deprecated the `functional` template (in Vue.js 3.0.0+)
3663
+ * @see https://eslint.vuejs.org/rules/no-deprecated-functional-template.html
3664
+ */
3665
+ 'vue/no-deprecated-functional-template'?: Linter.RuleEntry<[]>;
3666
+ /**
3667
+ * disallow using deprecated the `is` attribute on HTML elements (in Vue.js 3.0.0+)
3668
+ * @see https://eslint.vuejs.org/rules/no-deprecated-html-element-is.html
3669
+ */
3670
+ 'vue/no-deprecated-html-element-is'?: Linter.RuleEntry<[]>;
3671
+ /**
3672
+ * disallow using deprecated `inline-template` attribute (in Vue.js 3.0.0+)
3673
+ * @see https://eslint.vuejs.org/rules/no-deprecated-inline-template.html
3674
+ */
3675
+ 'vue/no-deprecated-inline-template'?: Linter.RuleEntry<[]>;
3676
+ /**
3677
+ * disallow deprecated `model` definition (in Vue.js 3.0.0+)
3678
+ * @see https://eslint.vuejs.org/rules/no-deprecated-model-definition.html
3679
+ */
3680
+ 'vue/no-deprecated-model-definition'?: Linter.RuleEntry<VueNoDeprecatedModelDefinition>;
3681
+ /**
3682
+ * disallow deprecated `this` access in props default function (in Vue.js 3.0.0+)
3683
+ * @see https://eslint.vuejs.org/rules/no-deprecated-props-default-this.html
3684
+ */
3685
+ 'vue/no-deprecated-props-default-this'?: Linter.RuleEntry<[]>;
3686
+ /**
3687
+ * disallow using deprecated `tag` property on `RouterLink` (in Vue.js 3.0.0+)
3688
+ * @see https://eslint.vuejs.org/rules/no-deprecated-router-link-tag-prop.html
3689
+ */
3690
+ 'vue/no-deprecated-router-link-tag-prop'?: Linter.RuleEntry<VueNoDeprecatedRouterLinkTagProp>;
3691
+ /**
3692
+ * disallow deprecated `scope` attribute (in Vue.js 2.5.0+)
3693
+ * @see https://eslint.vuejs.org/rules/no-deprecated-scope-attribute.html
3694
+ */
3695
+ 'vue/no-deprecated-scope-attribute'?: Linter.RuleEntry<[]>;
3696
+ /**
3697
+ * disallow deprecated `slot` attribute (in Vue.js 2.6.0+)
3698
+ * @see https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html
3699
+ */
3700
+ 'vue/no-deprecated-slot-attribute'?: Linter.RuleEntry<VueNoDeprecatedSlotAttribute>;
3701
+ /**
3702
+ * disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+)
3703
+ * @see https://eslint.vuejs.org/rules/no-deprecated-slot-scope-attribute.html
3704
+ */
3705
+ 'vue/no-deprecated-slot-scope-attribute'?: Linter.RuleEntry<[]>;
3706
+ /**
3707
+ * disallow use of deprecated `.sync` modifier on `v-bind` directive (in Vue.js 3.0.0+)
3708
+ * @see https://eslint.vuejs.org/rules/no-deprecated-v-bind-sync.html
3709
+ */
3710
+ 'vue/no-deprecated-v-bind-sync'?: Linter.RuleEntry<[]>;
3711
+ /**
3712
+ * disallow deprecated `v-is` directive (in Vue.js 3.1.0+)
3713
+ * @see https://eslint.vuejs.org/rules/no-deprecated-v-is.html
3714
+ */
3715
+ 'vue/no-deprecated-v-is'?: Linter.RuleEntry<[]>;
3716
+ /**
3717
+ * disallow using deprecated `.native` modifiers (in Vue.js 3.0.0+)
3718
+ * @see https://eslint.vuejs.org/rules/no-deprecated-v-on-native-modifier.html
3719
+ */
3720
+ 'vue/no-deprecated-v-on-native-modifier'?: Linter.RuleEntry<[]>;
3721
+ /**
3722
+ * disallow using deprecated number (keycode) modifiers (in Vue.js 3.0.0+)
3723
+ * @see https://eslint.vuejs.org/rules/no-deprecated-v-on-number-modifiers.html
3724
+ */
3725
+ 'vue/no-deprecated-v-on-number-modifiers'?: Linter.RuleEntry<[]>;
3726
+ /**
3727
+ * disallow using deprecated `Vue.config.keyCodes` (in Vue.js 3.0.0+)
3728
+ * @see https://eslint.vuejs.org/rules/no-deprecated-vue-config-keycodes.html
3729
+ */
3730
+ 'vue/no-deprecated-vue-config-keycodes'?: Linter.RuleEntry<[]>;
3731
+ /**
3732
+ * disallow duplication of field names
3733
+ * @see https://eslint.vuejs.org/rules/no-dupe-keys.html
3734
+ */
3735
+ 'vue/no-dupe-keys'?: Linter.RuleEntry<VueNoDupeKeys>;
3736
+ /**
3737
+ * disallow duplicate conditions in `v-if` / `v-else-if` chains
3738
+ * @see https://eslint.vuejs.org/rules/no-dupe-v-else-if.html
3739
+ */
3740
+ 'vue/no-dupe-v-else-if'?: Linter.RuleEntry<[]>;
3741
+ /**
3742
+ * enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`
3743
+ * @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance.html
3744
+ */
3745
+ 'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<VueNoDuplicateAttrInheritance>;
3746
+ /**
3747
+ * disallow duplication of attributes
3748
+ * @see https://eslint.vuejs.org/rules/no-duplicate-attributes.html
3749
+ */
3750
+ 'vue/no-duplicate-attributes'?: Linter.RuleEntry<VueNoDuplicateAttributes>;
3751
+ /**
3752
+ * disallow the `<template>` `<script>` `<style>` block to be empty
3753
+ * @see https://eslint.vuejs.org/rules/no-empty-component-block.html
3754
+ */
3755
+ 'vue/no-empty-component-block'?: Linter.RuleEntry<[]>;
3756
+ /**
3757
+ * Disallow empty destructuring patterns in `<template>`
3758
+ * @see https://eslint.vuejs.org/rules/no-empty-pattern.html
3759
+ */
3760
+ 'vue/no-empty-pattern'?: Linter.RuleEntry<VueNoEmptyPattern>;
3761
+ /**
3762
+ * disallow `export` in `<script setup>`
3763
+ * @see https://eslint.vuejs.org/rules/no-export-in-script-setup.html
3764
+ */
3765
+ 'vue/no-export-in-script-setup'?: Linter.RuleEntry<[]>;
3766
+ /**
3767
+ * disallow asynchronously registered `expose`
3768
+ * @see https://eslint.vuejs.org/rules/no-expose-after-await.html
3769
+ */
3770
+ 'vue/no-expose-after-await'?: Linter.RuleEntry<[]>;
3771
+ /**
3772
+ * Disallow unnecessary parentheses in `<template>`
3773
+ * @see https://eslint.vuejs.org/rules/no-extra-parens.html
3774
+ */
3775
+ 'vue/no-extra-parens'?: Linter.RuleEntry<VueNoExtraParens>;
3776
+ /**
3777
+ * Disallow shorthand type conversions in `<template>`
3778
+ * @see https://eslint.vuejs.org/rules/no-implicit-coercion.html
3779
+ */
3780
+ 'vue/no-implicit-coercion'?: Linter.RuleEntry<VueNoImplicitCoercion>;
3781
+ /**
3782
+ * disallow importing Vue compiler macros
3783
+ * @see https://eslint.vuejs.org/rules/no-import-compiler-macros.html
3784
+ */
3785
+ 'vue/no-import-compiler-macros'?: Linter.RuleEntry<[]>;
3786
+ /**
3787
+ * disallow irregular whitespace in `.vue` files
3788
+ * @see https://eslint.vuejs.org/rules/no-irregular-whitespace.html
3789
+ */
3790
+ 'vue/no-irregular-whitespace'?: Linter.RuleEntry<VueNoIrregularWhitespace>;
3791
+ /**
3792
+ * disallow asynchronously registered lifecycle hooks
3793
+ * @see https://eslint.vuejs.org/rules/no-lifecycle-after-await.html
3794
+ */
3795
+ 'vue/no-lifecycle-after-await'?: Linter.RuleEntry<[]>;
3796
+ /**
3797
+ * disallow unnecessary `<template>`
3798
+ * @see https://eslint.vuejs.org/rules/no-lone-template.html
3799
+ */
3800
+ 'vue/no-lone-template'?: Linter.RuleEntry<VueNoLoneTemplate>;
3801
+ /**
3802
+ * Disallow literal numbers that lose precision in `<template>`
3803
+ * @see https://eslint.vuejs.org/rules/no-loss-of-precision.html
3804
+ */
3805
+ 'vue/no-loss-of-precision'?: Linter.RuleEntry<[]>;
3806
+ /**
3807
+ * disallow multiple spaces
3808
+ * @see https://eslint.vuejs.org/rules/no-multi-spaces.html
3809
+ */
3810
+ 'vue/no-multi-spaces'?: Linter.RuleEntry<VueNoMultiSpaces>;
3811
+ /**
3812
+ * disallow passing multiple objects in an array to class
3813
+ * @see https://eslint.vuejs.org/rules/no-multiple-objects-in-class.html
3814
+ */
3815
+ 'vue/no-multiple-objects-in-class'?: Linter.RuleEntry<[]>;
3816
+ /**
3817
+ * disallow passing multiple arguments to scoped slots
3818
+ * @see https://eslint.vuejs.org/rules/no-multiple-slot-args.html
3819
+ */
3820
+ 'vue/no-multiple-slot-args'?: Linter.RuleEntry<[]>;
3821
+ /**
3822
+ * disallow adding multiple root nodes to the template
3823
+ * @see https://eslint.vuejs.org/rules/no-multiple-template-root.html
3824
+ */
3825
+ 'vue/no-multiple-template-root'?: Linter.RuleEntry<VueNoMultipleTemplateRoot>;
3826
+ /**
3827
+ * disallow mutation of component props
3828
+ * @see https://eslint.vuejs.org/rules/no-mutating-props.html
3829
+ */
3830
+ 'vue/no-mutating-props'?: Linter.RuleEntry<VueNoMutatingProps>;
3831
+ /**
3832
+ * Disallow negated conditions in `<template>`
3833
+ * @see https://eslint.vuejs.org/rules/no-negated-condition.html
3834
+ */
3835
+ 'vue/no-negated-condition'?: Linter.RuleEntry<[]>;
3836
+ /**
3837
+ * disallow negated conditions in v-if/v-else
3838
+ * @see https://eslint.vuejs.org/rules/no-negated-v-if-condition.html
3839
+ */
3840
+ 'vue/no-negated-v-if-condition'?: Linter.RuleEntry<[]>;
3841
+ /**
3842
+ * disallow parsing errors in `<template>`
3843
+ * @see https://eslint.vuejs.org/rules/no-parsing-error.html
3844
+ */
3845
+ 'vue/no-parsing-error'?: Linter.RuleEntry<VueNoParsingError>;
3846
+ /**
3847
+ * disallow a potential typo in your component property
3848
+ * @see https://eslint.vuejs.org/rules/no-potential-component-option-typo.html
3849
+ */
3850
+ 'vue/no-potential-component-option-typo'?: Linter.RuleEntry<VueNoPotentialComponentOptionTypo>;
3851
+ /**
3852
+ * disallow use of value wrapped by `ref()` (Composition API) as an operand
3853
+ * @see https://eslint.vuejs.org/rules/no-ref-as-operand.html
3854
+ */
3855
+ 'vue/no-ref-as-operand'?: Linter.RuleEntry<[]>;
3856
+ /**
3857
+ * disallow usages of ref objects that can lead to loss of reactivity
3858
+ * @see https://eslint.vuejs.org/rules/no-ref-object-reactivity-loss.html
3859
+ */
3860
+ 'vue/no-ref-object-reactivity-loss'?: Linter.RuleEntry<[]>;
3861
+ /**
3862
+ * enforce props with default values to be optional
3863
+ * @see https://eslint.vuejs.org/rules/no-required-prop-with-default.html
3864
+ */
3865
+ 'vue/no-required-prop-with-default'?: Linter.RuleEntry<VueNoRequiredPropWithDefault>;
3866
+ /**
3867
+ * disallow the use of reserved names in component definitions
3868
+ * @see https://eslint.vuejs.org/rules/no-reserved-component-names.html
3869
+ */
3870
+ 'vue/no-reserved-component-names'?: Linter.RuleEntry<VueNoReservedComponentNames>;
3871
+ /**
3872
+ * disallow overwriting reserved keys
3873
+ * @see https://eslint.vuejs.org/rules/no-reserved-keys.html
3874
+ */
3875
+ 'vue/no-reserved-keys'?: Linter.RuleEntry<VueNoReservedKeys>;
3876
+ /**
3877
+ * disallow reserved names in props
3878
+ * @see https://eslint.vuejs.org/rules/no-reserved-props.html
3879
+ */
3880
+ 'vue/no-reserved-props'?: Linter.RuleEntry<VueNoReservedProps>;
3881
+ /**
3882
+ * disallow specific block
3883
+ * @see https://eslint.vuejs.org/rules/no-restricted-block.html
3884
+ */
3885
+ 'vue/no-restricted-block'?: Linter.RuleEntry<VueNoRestrictedBlock>;
3886
+ /**
3887
+ * disallow asynchronously called restricted methods
3888
+ * @see https://eslint.vuejs.org/rules/no-restricted-call-after-await.html
3889
+ */
3890
+ 'vue/no-restricted-call-after-await'?: Linter.RuleEntry<VueNoRestrictedCallAfterAwait>;
3891
+ /**
3892
+ * disallow specific classes in Vue components
3893
+ * @see https://eslint.vuejs.org/rules/no-restricted-class.html
3894
+ */
3895
+ 'vue/no-restricted-class'?: Linter.RuleEntry<VueNoRestrictedClass>;
3896
+ /**
3897
+ * disallow specific component names
3898
+ * @see https://eslint.vuejs.org/rules/no-restricted-component-names.html
3899
+ */
3900
+ 'vue/no-restricted-component-names'?: Linter.RuleEntry<VueNoRestrictedComponentNames>;
3901
+ /**
3902
+ * disallow specific component option
3903
+ * @see https://eslint.vuejs.org/rules/no-restricted-component-options.html
3904
+ */
3905
+ 'vue/no-restricted-component-options'?: Linter.RuleEntry<VueNoRestrictedComponentOptions>;
3906
+ /**
3907
+ * disallow specific custom event
3908
+ * @see https://eslint.vuejs.org/rules/no-restricted-custom-event.html
3909
+ */
3910
+ 'vue/no-restricted-custom-event'?: Linter.RuleEntry<VueNoRestrictedCustomEvent>;
3911
+ /**
3912
+ * disallow specific elements
3913
+ * @see https://eslint.vuejs.org/rules/no-restricted-html-elements.html
3914
+ */
3915
+ 'vue/no-restricted-html-elements'?: Linter.RuleEntry<VueNoRestrictedHtmlElements>;
3916
+ /**
3917
+ * disallow specific props
3918
+ * @see https://eslint.vuejs.org/rules/no-restricted-props.html
3919
+ */
3920
+ 'vue/no-restricted-props'?: Linter.RuleEntry<VueNoRestrictedProps>;
3921
+ /**
3922
+ * disallow specific attribute
3923
+ * @see https://eslint.vuejs.org/rules/no-restricted-static-attribute.html
3924
+ */
3925
+ 'vue/no-restricted-static-attribute'?: Linter.RuleEntry<VueNoRestrictedStaticAttribute>;
3926
+ /**
3927
+ * Disallow specified syntax in `<template>`
3928
+ * @see https://eslint.vuejs.org/rules/no-restricted-syntax.html
3929
+ */
3930
+ 'vue/no-restricted-syntax'?: Linter.RuleEntry<VueNoRestrictedSyntax>;
3931
+ /**
3932
+ * disallow specific argument in `v-bind`
3933
+ * @see https://eslint.vuejs.org/rules/no-restricted-v-bind.html
3934
+ */
3935
+ 'vue/no-restricted-v-bind'?: Linter.RuleEntry<VueNoRestrictedVBind>;
3936
+ /**
3937
+ * disallow specific argument in `v-on`
3938
+ * @see https://eslint.vuejs.org/rules/no-restricted-v-on.html
3939
+ */
3940
+ 'vue/no-restricted-v-on'?: Linter.RuleEntry<VueNoRestrictedVOn>;
3941
+ /**
3942
+ * disallow `v-if` directives on root element
3943
+ * @see https://eslint.vuejs.org/rules/no-root-v-if.html
3944
+ */
3945
+ 'vue/no-root-v-if'?: Linter.RuleEntry<[]>;
3946
+ /**
3947
+ * disallow usages that lose the reactivity of `props` passed to `setup`
3948
+ * @see https://eslint.vuejs.org/rules/no-setup-props-reactivity-loss.html
3949
+ */
3950
+ 'vue/no-setup-props-reactivity-loss'?: Linter.RuleEntry<[]>;
3951
+ /**
3952
+ * enforce component's data property to be a function
3953
+ * @see https://eslint.vuejs.org/rules/no-shared-component-data.html
3954
+ */
3955
+ 'vue/no-shared-component-data'?: Linter.RuleEntry<[]>;
3956
+ /**
3957
+ * disallow side effects in computed properties
3958
+ * @see https://eslint.vuejs.org/rules/no-side-effects-in-computed-properties.html
3959
+ */
3960
+ 'vue/no-side-effects-in-computed-properties'?: Linter.RuleEntry<[]>;
3961
+ /**
3962
+ * disallow spaces around equal signs in attribute
3963
+ * @see https://eslint.vuejs.org/rules/no-spaces-around-equal-signs-in-attribute.html
3964
+ */
3965
+ 'vue/no-spaces-around-equal-signs-in-attribute'?: Linter.RuleEntry<[]>;
3966
+ /**
3967
+ * Disallow sparse arrays in `<template>`
3968
+ * @see https://eslint.vuejs.org/rules/no-sparse-arrays.html
3969
+ */
3970
+ 'vue/no-sparse-arrays'?: Linter.RuleEntry<[]>;
3971
+ /**
3972
+ * disallow static inline `style` attributes
3973
+ * @see https://eslint.vuejs.org/rules/no-static-inline-styles.html
3974
+ */
3975
+ 'vue/no-static-inline-styles'?: Linter.RuleEntry<VueNoStaticInlineStyles>;
3976
+ /**
3977
+ * disallow `key` attribute on `<template>`
3978
+ * @see https://eslint.vuejs.org/rules/no-template-key.html
3979
+ */
3980
+ 'vue/no-template-key'?: Linter.RuleEntry<[]>;
3981
+ /**
3982
+ * disallow variable declarations from shadowing variables declared in the outer scope
3983
+ * @see https://eslint.vuejs.org/rules/no-template-shadow.html
3984
+ */
3985
+ 'vue/no-template-shadow'?: Linter.RuleEntry<VueNoTemplateShadow>;
3986
+ /**
3987
+ * disallow target="_blank" attribute without rel="noopener noreferrer"
3988
+ * @see https://eslint.vuejs.org/rules/no-template-target-blank.html
3989
+ */
3990
+ 'vue/no-template-target-blank'?: Linter.RuleEntry<VueNoTemplateTargetBlank>;
3991
+ /**
3992
+ * disallow mustaches in `<textarea>`
3993
+ * @see https://eslint.vuejs.org/rules/no-textarea-mustache.html
3994
+ */
3995
+ 'vue/no-textarea-mustache'?: Linter.RuleEntry<[]>;
3996
+ /**
3997
+ * disallow `this` usage in a `beforeRouteEnter` method
3998
+ * @see https://eslint.vuejs.org/rules/no-this-in-before-route-enter.html
3999
+ */
4000
+ 'vue/no-this-in-before-route-enter'?: Linter.RuleEntry<[]>;
4001
+ /**
4002
+ * disallow use of undefined components in `<template>`
4003
+ * @see https://eslint.vuejs.org/rules/no-undef-components.html
4004
+ */
4005
+ 'vue/no-undef-components'?: Linter.RuleEntry<VueNoUndefComponents>;
4006
+ /**
4007
+ * disallow undefined properties
4008
+ * @see https://eslint.vuejs.org/rules/no-undef-properties.html
4009
+ */
4010
+ 'vue/no-undef-properties'?: Linter.RuleEntry<VueNoUndefProperties>;
4011
+ /**
4012
+ * disallow unsupported Vue.js syntax on the specified version
4013
+ * @see https://eslint.vuejs.org/rules/no-unsupported-features.html
4014
+ */
4015
+ 'vue/no-unsupported-features'?: Linter.RuleEntry<VueNoUnsupportedFeatures>;
4016
+ /**
4017
+ * disallow registering components that are not used inside templates
4018
+ * @see https://eslint.vuejs.org/rules/no-unused-components.html
4019
+ */
4020
+ 'vue/no-unused-components'?: Linter.RuleEntry<VueNoUnusedComponents>;
4021
+ /**
4022
+ * disallow unused emit declarations
4023
+ * @see https://eslint.vuejs.org/rules/no-unused-emit-declarations.html
4024
+ */
4025
+ 'vue/no-unused-emit-declarations'?: Linter.RuleEntry<[]>;
4026
+ /**
4027
+ * disallow unused properties
4028
+ * @see https://eslint.vuejs.org/rules/no-unused-properties.html
4029
+ */
4030
+ 'vue/no-unused-properties'?: Linter.RuleEntry<VueNoUnusedProperties>;
4031
+ /**
4032
+ * disallow unused refs
4033
+ * @see https://eslint.vuejs.org/rules/no-unused-refs.html
4034
+ */
4035
+ 'vue/no-unused-refs'?: Linter.RuleEntry<[]>;
4036
+ /**
4037
+ * disallow unused variable definitions of v-for directives or scope attributes
4038
+ * @see https://eslint.vuejs.org/rules/no-unused-vars.html
4039
+ */
4040
+ 'vue/no-unused-vars'?: Linter.RuleEntry<VueNoUnusedVars>;
4041
+ /**
4042
+ * disallow use computed property like method
4043
+ * @see https://eslint.vuejs.org/rules/no-use-computed-property-like-method.html
4044
+ */
4045
+ 'vue/no-use-computed-property-like-method'?: Linter.RuleEntry<[]>;
4046
+ /**
4047
+ * disallow using `v-else-if`/`v-else` on the same element as `v-for`
4048
+ * @see https://eslint.vuejs.org/rules/no-use-v-else-with-v-for.html
4049
+ */
4050
+ 'vue/no-use-v-else-with-v-for'?: Linter.RuleEntry<[]>;
4051
+ /**
4052
+ * disallow using `v-if` on the same element as `v-for`
4053
+ * @see https://eslint.vuejs.org/rules/no-use-v-if-with-v-for.html
4054
+ */
4055
+ 'vue/no-use-v-if-with-v-for'?: Linter.RuleEntry<VueNoUseVIfWithVFor>;
4056
+ /**
4057
+ * Disallow unnecessary concatenation of literals or template literals in `<template>`
4058
+ * @see https://eslint.vuejs.org/rules/no-useless-concat.html
4059
+ */
4060
+ 'vue/no-useless-concat'?: Linter.RuleEntry<[]>;
4061
+ /**
4062
+ * disallow unnecessary mustache interpolations
4063
+ * @see https://eslint.vuejs.org/rules/no-useless-mustaches.html
4064
+ */
4065
+ 'vue/no-useless-mustaches'?: Linter.RuleEntry<VueNoUselessMustaches>;
4066
+ /**
4067
+ * disallow useless attribute on `<template>`
4068
+ * @see https://eslint.vuejs.org/rules/no-useless-template-attributes.html
4069
+ */
4070
+ 'vue/no-useless-template-attributes'?: Linter.RuleEntry<[]>;
4071
+ /**
4072
+ * disallow unnecessary `v-bind` directives
4073
+ * @see https://eslint.vuejs.org/rules/no-useless-v-bind.html
4074
+ */
4075
+ 'vue/no-useless-v-bind'?: Linter.RuleEntry<VueNoUselessVBind>;
4076
+ /**
4077
+ * disallow `key` attribute on `<template v-for>`
4078
+ * @see https://eslint.vuejs.org/rules/no-v-for-template-key.html
4079
+ * @deprecated
4080
+ */
4081
+ 'vue/no-v-for-template-key'?: Linter.RuleEntry<[]>;
4082
+ /**
4083
+ * disallow key of `<template v-for>` placed on child elements
4084
+ * @see https://eslint.vuejs.org/rules/no-v-for-template-key-on-child.html
4085
+ */
4086
+ 'vue/no-v-for-template-key-on-child'?: Linter.RuleEntry<[]>;
4087
+ /**
4088
+ * disallow use of v-html to prevent XSS attack
4089
+ * @see https://eslint.vuejs.org/rules/no-v-html.html
4090
+ */
4091
+ 'vue/no-v-html'?: Linter.RuleEntry<VueNoVHtml>;
4092
+ /**
4093
+ * disallow adding an argument to `v-model` used in custom component
4094
+ * @see https://eslint.vuejs.org/rules/no-v-model-argument.html
4095
+ * @deprecated
4096
+ */
4097
+ 'vue/no-v-model-argument'?: Linter.RuleEntry<[]>;
4098
+ /**
4099
+ * disallow use of v-text
4100
+ * @see https://eslint.vuejs.org/rules/no-v-text.html
4101
+ */
4102
+ 'vue/no-v-text'?: Linter.RuleEntry<[]>;
4103
+ /**
4104
+ * disallow v-text / v-html on component
4105
+ * @see https://eslint.vuejs.org/rules/no-v-text-v-html-on-component.html
4106
+ */
4107
+ 'vue/no-v-text-v-html-on-component'?: Linter.RuleEntry<VueNoVTextVHtmlOnComponent>;
4108
+ /**
4109
+ * disallow asynchronously registered `watch`
4110
+ * @see https://eslint.vuejs.org/rules/no-watch-after-await.html
4111
+ */
4112
+ 'vue/no-watch-after-await'?: Linter.RuleEntry<[]>;
4113
+ /**
4114
+ * Enforce consistent line breaks after opening and before closing braces in `<template>`
4115
+ * @see https://eslint.vuejs.org/rules/object-curly-newline.html
4116
+ */
4117
+ 'vue/object-curly-newline'?: Linter.RuleEntry<VueObjectCurlyNewline>;
4118
+ /**
4119
+ * Enforce consistent spacing inside braces in `<template>`
4120
+ * @see https://eslint.vuejs.org/rules/object-curly-spacing.html
4121
+ */
4122
+ 'vue/object-curly-spacing'?: Linter.RuleEntry<VueObjectCurlySpacing>;
4123
+ /**
4124
+ * Enforce placing object properties on separate lines in `<template>`
4125
+ * @see https://eslint.vuejs.org/rules/object-property-newline.html
4126
+ */
4127
+ 'vue/object-property-newline'?: Linter.RuleEntry<VueObjectPropertyNewline>;
4128
+ /**
4129
+ * Require or disallow method and property shorthand syntax for object literals in `<template>`
4130
+ * @see https://eslint.vuejs.org/rules/object-shorthand.html
4131
+ */
4132
+ 'vue/object-shorthand'?: Linter.RuleEntry<VueObjectShorthand>;
4133
+ /**
4134
+ * enforce that each component should be in its own file
4135
+ * @see https://eslint.vuejs.org/rules/one-component-per-file.html
4136
+ */
4137
+ 'vue/one-component-per-file'?: Linter.RuleEntry<[]>;
4138
+ /**
4139
+ * Enforce consistent linebreak style for operators in `<template>`
4140
+ * @see https://eslint.vuejs.org/rules/operator-linebreak.html
4141
+ */
4142
+ 'vue/operator-linebreak'?: Linter.RuleEntry<VueOperatorLinebreak>;
4143
+ /**
4144
+ * enforce order of properties in components
4145
+ * @see https://eslint.vuejs.org/rules/order-in-components.html
4146
+ */
4147
+ 'vue/order-in-components'?: Linter.RuleEntry<VueOrderInComponents>;
4148
+ /**
4149
+ * require or disallow padding lines between blocks
4150
+ * @see https://eslint.vuejs.org/rules/padding-line-between-blocks.html
4151
+ */
4152
+ 'vue/padding-line-between-blocks'?: Linter.RuleEntry<VuePaddingLineBetweenBlocks>;
4153
+ /**
4154
+ * require or disallow newlines between sibling tags in template
4155
+ * @see https://eslint.vuejs.org/rules/padding-line-between-tags.html
4156
+ */
4157
+ 'vue/padding-line-between-tags'?: Linter.RuleEntry<VuePaddingLineBetweenTags>;
4158
+ /**
4159
+ * require or disallow padding lines in component definition
4160
+ * @see https://eslint.vuejs.org/rules/padding-lines-in-component-definition.html
4161
+ */
4162
+ 'vue/padding-lines-in-component-definition'?: Linter.RuleEntry<VuePaddingLinesInComponentDefinition>;
4163
+ /**
4164
+ * enforce use of `defineOptions` instead of default export
4165
+ * @see https://eslint.vuejs.org/rules/prefer-define-options.html
4166
+ */
4167
+ 'vue/prefer-define-options'?: Linter.RuleEntry<[]>;
4168
+ /**
4169
+ * enforce import from 'vue' instead of import from '@vue/*'
4170
+ * @see https://eslint.vuejs.org/rules/prefer-import-from-vue.html
4171
+ */
4172
+ 'vue/prefer-import-from-vue'?: Linter.RuleEntry<[]>;
4173
+ /**
4174
+ * enforce `Boolean` comes first in component prop types
4175
+ * @see https://eslint.vuejs.org/rules/prefer-prop-type-boolean-first.html
4176
+ */
4177
+ 'vue/prefer-prop-type-boolean-first'?: Linter.RuleEntry<[]>;
4178
+ /**
4179
+ * require static class names in template to be in a separate `class` attribute
4180
+ * @see https://eslint.vuejs.org/rules/prefer-separate-static-class.html
4181
+ */
4182
+ 'vue/prefer-separate-static-class'?: Linter.RuleEntry<[]>;
4183
+ /**
4184
+ * Require template literals instead of string concatenation in `<template>`
4185
+ * @see https://eslint.vuejs.org/rules/prefer-template.html
4186
+ */
4187
+ 'vue/prefer-template'?: Linter.RuleEntry<[]>;
4188
+ /**
4189
+ * require shorthand form attribute when `v-bind` value is `true`
4190
+ * @see https://eslint.vuejs.org/rules/prefer-true-attribute-shorthand.html
4191
+ */
4192
+ 'vue/prefer-true-attribute-shorthand'?: Linter.RuleEntry<VuePreferTrueAttributeShorthand>;
4193
+ /**
4194
+ * require using `useTemplateRef` instead of `ref`/`shallowRef` for template refs
4195
+ * @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
4196
+ */
4197
+ 'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>;
4198
+ /**
4199
+ * enforce specific casing for the Prop name in Vue components
4200
+ * @see https://eslint.vuejs.org/rules/prop-name-casing.html
4201
+ */
4202
+ 'vue/prop-name-casing'?: Linter.RuleEntry<VuePropNameCasing>;
4203
+ /**
4204
+ * Require quotes around object literal property names in `<template>`
4205
+ * @see https://eslint.vuejs.org/rules/quote-props.html
4206
+ */
4207
+ 'vue/quote-props'?: Linter.RuleEntry<VueQuoteProps>;
4208
+ /**
4209
+ * require `v-bind:is` of `<component>` elements
4210
+ * @see https://eslint.vuejs.org/rules/require-component-is.html
4211
+ */
4212
+ 'vue/require-component-is'?: Linter.RuleEntry<[]>;
4213
+ /**
4214
+ * require components to be the default export
4215
+ * @see https://eslint.vuejs.org/rules/require-default-export.html
4216
+ */
4217
+ 'vue/require-default-export'?: Linter.RuleEntry<[]>;
4218
+ /**
4219
+ * require default value for props
4220
+ * @see https://eslint.vuejs.org/rules/require-default-prop.html
4221
+ */
4222
+ 'vue/require-default-prop'?: Linter.RuleEntry<[]>;
4223
+ /**
4224
+ * require the component to be directly exported
4225
+ * @see https://eslint.vuejs.org/rules/require-direct-export.html
4226
+ */
4227
+ 'vue/require-direct-export'?: Linter.RuleEntry<VueRequireDirectExport>;
4228
+ /**
4229
+ * require type definitions in emits
4230
+ * @see https://eslint.vuejs.org/rules/require-emit-validator.html
4231
+ */
4232
+ 'vue/require-emit-validator'?: Linter.RuleEntry<[]>;
4233
+ /**
4234
+ * require `emits` option with name triggered by `$emit()`
4235
+ * @see https://eslint.vuejs.org/rules/require-explicit-emits.html
4236
+ */
4237
+ 'vue/require-explicit-emits'?: Linter.RuleEntry<VueRequireExplicitEmits>;
4238
+ /**
4239
+ * require slots to be explicitly defined
4240
+ * @see https://eslint.vuejs.org/rules/require-explicit-slots.html
4241
+ */
4242
+ 'vue/require-explicit-slots'?: Linter.RuleEntry<[]>;
4243
+ /**
4244
+ * require declare public properties using `expose`
4245
+ * @see https://eslint.vuejs.org/rules/require-expose.html
4246
+ */
4247
+ 'vue/require-expose'?: Linter.RuleEntry<[]>;
4248
+ /**
4249
+ * require a certain macro variable name
4250
+ * @see https://eslint.vuejs.org/rules/require-macro-variable-name.html
4251
+ */
4252
+ 'vue/require-macro-variable-name'?: Linter.RuleEntry<VueRequireMacroVariableName>;
4253
+ /**
4254
+ * require a name property in Vue components
4255
+ * @see https://eslint.vuejs.org/rules/require-name-property.html
4256
+ */
4257
+ 'vue/require-name-property'?: Linter.RuleEntry<[]>;
4258
+ /**
4259
+ * require props to have a comment
4260
+ * @see https://eslint.vuejs.org/rules/require-prop-comment.html
4261
+ */
4262
+ 'vue/require-prop-comment'?: Linter.RuleEntry<VueRequirePropComment>;
4263
+ /**
4264
+ * require prop type to be a constructor
4265
+ * @see https://eslint.vuejs.org/rules/require-prop-type-constructor.html
4266
+ */
4267
+ 'vue/require-prop-type-constructor'?: Linter.RuleEntry<[]>;
4268
+ /**
4269
+ * require type definitions in props
4270
+ * @see https://eslint.vuejs.org/rules/require-prop-types.html
4271
+ */
4272
+ 'vue/require-prop-types'?: Linter.RuleEntry<[]>;
4273
+ /**
4274
+ * enforce render function to always return value
4275
+ * @see https://eslint.vuejs.org/rules/require-render-return.html
4276
+ */
4277
+ 'vue/require-render-return'?: Linter.RuleEntry<[]>;
4278
+ /**
4279
+ * enforce properties of `$slots` to be used as a function
4280
+ * @see https://eslint.vuejs.org/rules/require-slots-as-functions.html
4281
+ */
4282
+ 'vue/require-slots-as-functions'?: Linter.RuleEntry<[]>;
4283
+ /**
4284
+ * require control the display of the content inside `<transition>`
4285
+ * @see https://eslint.vuejs.org/rules/require-toggle-inside-transition.html
4286
+ */
4287
+ 'vue/require-toggle-inside-transition'?: Linter.RuleEntry<VueRequireToggleInsideTransition>;
4288
+ /**
4289
+ * enforce adding type declarations to object props
4290
+ * @see https://eslint.vuejs.org/rules/require-typed-object-prop.html
4291
+ */
4292
+ 'vue/require-typed-object-prop'?: Linter.RuleEntry<[]>;
4293
+ /**
4294
+ * require `ref` and `shallowRef` functions to be strongly typed
4295
+ * @see https://eslint.vuejs.org/rules/require-typed-ref.html
4296
+ */
4297
+ 'vue/require-typed-ref'?: Linter.RuleEntry<[]>;
4298
+ /**
4299
+ * require `v-bind:key` with `v-for` directives
4300
+ * @see https://eslint.vuejs.org/rules/require-v-for-key.html
4301
+ */
4302
+ 'vue/require-v-for-key'?: Linter.RuleEntry<[]>;
4303
+ /**
4304
+ * enforce props default values to be valid
4305
+ * @see https://eslint.vuejs.org/rules/require-valid-default-prop.html
4306
+ */
4307
+ 'vue/require-valid-default-prop'?: Linter.RuleEntry<[]>;
4308
+ /**
4309
+ * enforce using only specific component names
4310
+ * @see https://eslint.vuejs.org/rules/restricted-component-names.html
4311
+ */
4312
+ 'vue/restricted-component-names'?: Linter.RuleEntry<VueRestrictedComponentNames>;
4313
+ /**
4314
+ * enforce that a return statement is present in computed property
4315
+ * @see https://eslint.vuejs.org/rules/return-in-computed-property.html
4316
+ */
4317
+ 'vue/return-in-computed-property'?: Linter.RuleEntry<VueReturnInComputedProperty>;
4318
+ /**
4319
+ * enforce that a return statement is present in emits validator
4320
+ * @see https://eslint.vuejs.org/rules/return-in-emits-validator.html
4321
+ */
4322
+ 'vue/return-in-emits-validator'?: Linter.RuleEntry<[]>;
4323
+ /**
4324
+ * enforce consistent indentation in `<script>`
4325
+ * @see https://eslint.vuejs.org/rules/script-indent.html
4326
+ */
4327
+ 'vue/script-indent'?: Linter.RuleEntry<VueScriptIndent>;
4328
+ /**
4329
+ * require a line break before and after the contents of a singleline element
4330
+ * @see https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html
4331
+ */
4332
+ 'vue/singleline-html-element-content-newline'?: Linter.RuleEntry<VueSinglelineHtmlElementContentNewline>;
4333
+ /**
4334
+ * enforce specific casing for slot names
4335
+ * @see https://eslint.vuejs.org/rules/slot-name-casing.html
4336
+ */
4337
+ 'vue/slot-name-casing'?: Linter.RuleEntry<VueSlotNameCasing>;
4338
+ /**
4339
+ * enforce sort-keys in a manner that is compatible with order-in-components
4340
+ * @see https://eslint.vuejs.org/rules/sort-keys.html
4341
+ */
4342
+ 'vue/sort-keys'?: Linter.RuleEntry<VueSortKeys>;
4343
+ /**
4344
+ * Enforce consistent spacing inside parentheses in `<template>`
4345
+ * @see https://eslint.vuejs.org/rules/space-in-parens.html
4346
+ */
4347
+ 'vue/space-in-parens'?: Linter.RuleEntry<VueSpaceInParens>;
4348
+ /**
4349
+ * Require spacing around infix operators in `<template>`
4350
+ * @see https://eslint.vuejs.org/rules/space-infix-ops.html
4351
+ */
4352
+ 'vue/space-infix-ops'?: Linter.RuleEntry<VueSpaceInfixOps>;
4353
+ /**
4354
+ * Enforce consistent spacing before or after unary operators in `<template>`
4355
+ * @see https://eslint.vuejs.org/rules/space-unary-ops.html
4356
+ */
4357
+ 'vue/space-unary-ops'?: Linter.RuleEntry<VueSpaceUnaryOps>;
4358
+ /**
4359
+ * enforce static class names order
4360
+ * @see https://eslint.vuejs.org/rules/static-class-names-order.html
4361
+ */
4362
+ 'vue/static-class-names-order'?: Linter.RuleEntry<[]>;
4363
+ /**
4364
+ * Require or disallow spacing around embedded expressions of template strings in `<template>`
4365
+ * @see https://eslint.vuejs.org/rules/template-curly-spacing.html
4366
+ */
4367
+ 'vue/template-curly-spacing'?: Linter.RuleEntry<VueTemplateCurlySpacing>;
4368
+ /**
4369
+ * disallow usage of `this` in template
4370
+ * @see https://eslint.vuejs.org/rules/this-in-template.html
4371
+ */
4372
+ 'vue/this-in-template'?: Linter.RuleEntry<VueThisInTemplate>;
4373
+ /**
4374
+ * enforce usage of `exact` modifier on `v-on`
4375
+ * @see https://eslint.vuejs.org/rules/use-v-on-exact.html
4376
+ */
4377
+ 'vue/use-v-on-exact'?: Linter.RuleEntry<[]>;
4378
+ /**
4379
+ * enforce `v-bind` directive style
4380
+ * @see https://eslint.vuejs.org/rules/v-bind-style.html
4381
+ */
4382
+ 'vue/v-bind-style'?: Linter.RuleEntry<VueVBindStyle>;
4383
+ /**
4384
+ * enforce `v-for` directive's delimiter style
4385
+ * @see https://eslint.vuejs.org/rules/v-for-delimiter-style.html
4386
+ */
4387
+ 'vue/v-for-delimiter-style'?: Linter.RuleEntry<VueVForDelimiterStyle>;
4388
+ /**
4389
+ * require key attribute for conditionally rendered repeated components
4390
+ * @see https://eslint.vuejs.org/rules/v-if-else-key.html
4391
+ */
4392
+ 'vue/v-if-else-key'?: Linter.RuleEntry<[]>;
4393
+ /**
4394
+ * enforce v-on event naming style on custom components in template
4395
+ * @see https://eslint.vuejs.org/rules/v-on-event-hyphenation.html
4396
+ */
4397
+ 'vue/v-on-event-hyphenation'?: Linter.RuleEntry<VueVOnEventHyphenation>;
4398
+ /**
4399
+ * enforce writing style for handlers in `v-on` directives
4400
+ * @see https://eslint.vuejs.org/rules/v-on-handler-style.html
4401
+ */
4402
+ 'vue/v-on-handler-style'?: Linter.RuleEntry<VueVOnHandlerStyle>;
4403
+ /**
4404
+ * enforce `v-on` directive style
4405
+ * @see https://eslint.vuejs.org/rules/v-on-style.html
4406
+ */
4407
+ 'vue/v-on-style'?: Linter.RuleEntry<VueVOnStyle>;
4408
+ /**
4409
+ * enforce `v-slot` directive style
4410
+ * @see https://eslint.vuejs.org/rules/v-slot-style.html
4411
+ */
4412
+ 'vue/v-slot-style'?: Linter.RuleEntry<VueVSlotStyle>;
4413
+ /**
4414
+ * require valid attribute names
4415
+ * @see https://eslint.vuejs.org/rules/valid-attribute-name.html
4416
+ */
4417
+ 'vue/valid-attribute-name'?: Linter.RuleEntry<[]>;
4418
+ /**
4419
+ * enforce valid `defineEmits` compiler macro
4420
+ * @see https://eslint.vuejs.org/rules/valid-define-emits.html
4421
+ */
4422
+ 'vue/valid-define-emits'?: Linter.RuleEntry<[]>;
4423
+ /**
4424
+ * enforce valid `defineOptions` compiler macro
4425
+ * @see https://eslint.vuejs.org/rules/valid-define-options.html
4426
+ */
4427
+ 'vue/valid-define-options'?: Linter.RuleEntry<[]>;
4428
+ /**
4429
+ * enforce valid `defineProps` compiler macro
4430
+ * @see https://eslint.vuejs.org/rules/valid-define-props.html
4431
+ */
4432
+ 'vue/valid-define-props'?: Linter.RuleEntry<[]>;
4433
+ /**
4434
+ * require valid keys in model option
4435
+ * @see https://eslint.vuejs.org/rules/valid-model-definition.html
4436
+ * @deprecated
4437
+ */
4438
+ 'vue/valid-model-definition'?: Linter.RuleEntry<[]>;
4439
+ /**
4440
+ * enforce valid `nextTick` function calls
4441
+ * @see https://eslint.vuejs.org/rules/valid-next-tick.html
4442
+ */
4443
+ 'vue/valid-next-tick'?: Linter.RuleEntry<[]>;
4444
+ /**
4445
+ * enforce valid template root
4446
+ * @see https://eslint.vuejs.org/rules/valid-template-root.html
4447
+ */
4448
+ 'vue/valid-template-root'?: Linter.RuleEntry<[]>;
4449
+ /**
4450
+ * enforce valid `v-bind` directives
4451
+ * @see https://eslint.vuejs.org/rules/valid-v-bind.html
4452
+ */
4453
+ 'vue/valid-v-bind'?: Linter.RuleEntry<[]>;
4454
+ /**
4455
+ * enforce valid `.sync` modifier on `v-bind` directives
4456
+ * @see https://eslint.vuejs.org/rules/valid-v-bind-sync.html
4457
+ * @deprecated
4458
+ */
4459
+ 'vue/valid-v-bind-sync'?: Linter.RuleEntry<[]>;
4460
+ /**
4461
+ * enforce valid `v-cloak` directives
4462
+ * @see https://eslint.vuejs.org/rules/valid-v-cloak.html
4463
+ */
4464
+ 'vue/valid-v-cloak'?: Linter.RuleEntry<[]>;
4465
+ /**
4466
+ * enforce valid `v-else` directives
4467
+ * @see https://eslint.vuejs.org/rules/valid-v-else.html
4468
+ */
4469
+ 'vue/valid-v-else'?: Linter.RuleEntry<[]>;
4470
+ /**
4471
+ * enforce valid `v-else-if` directives
4472
+ * @see https://eslint.vuejs.org/rules/valid-v-else-if.html
4473
+ */
4474
+ 'vue/valid-v-else-if'?: Linter.RuleEntry<[]>;
4475
+ /**
4476
+ * enforce valid `v-for` directives
4477
+ * @see https://eslint.vuejs.org/rules/valid-v-for.html
4478
+ */
4479
+ 'vue/valid-v-for'?: Linter.RuleEntry<[]>;
4480
+ /**
4481
+ * enforce valid `v-html` directives
4482
+ * @see https://eslint.vuejs.org/rules/valid-v-html.html
4483
+ */
4484
+ 'vue/valid-v-html'?: Linter.RuleEntry<[]>;
4485
+ /**
4486
+ * enforce valid `v-if` directives
4487
+ * @see https://eslint.vuejs.org/rules/valid-v-if.html
4488
+ */
4489
+ 'vue/valid-v-if'?: Linter.RuleEntry<[]>;
4490
+ /**
4491
+ * enforce valid `v-is` directives
4492
+ * @see https://eslint.vuejs.org/rules/valid-v-is.html
4493
+ */
4494
+ 'vue/valid-v-is'?: Linter.RuleEntry<[]>;
4495
+ /**
4496
+ * enforce valid `v-memo` directives
4497
+ * @see https://eslint.vuejs.org/rules/valid-v-memo.html
4498
+ */
4499
+ 'vue/valid-v-memo'?: Linter.RuleEntry<[]>;
4500
+ /**
4501
+ * enforce valid `v-model` directives
4502
+ * @see https://eslint.vuejs.org/rules/valid-v-model.html
4503
+ */
4504
+ 'vue/valid-v-model'?: Linter.RuleEntry<[]>;
4505
+ /**
4506
+ * enforce valid `v-on` directives
4507
+ * @see https://eslint.vuejs.org/rules/valid-v-on.html
4508
+ */
4509
+ 'vue/valid-v-on'?: Linter.RuleEntry<VueValidVOn>;
4510
+ /**
4511
+ * enforce valid `v-once` directives
4512
+ * @see https://eslint.vuejs.org/rules/valid-v-once.html
4513
+ */
4514
+ 'vue/valid-v-once'?: Linter.RuleEntry<[]>;
4515
+ /**
4516
+ * enforce valid `v-pre` directives
4517
+ * @see https://eslint.vuejs.org/rules/valid-v-pre.html
4518
+ */
4519
+ 'vue/valid-v-pre'?: Linter.RuleEntry<[]>;
4520
+ /**
4521
+ * enforce valid `v-show` directives
4522
+ * @see https://eslint.vuejs.org/rules/valid-v-show.html
4523
+ */
4524
+ 'vue/valid-v-show'?: Linter.RuleEntry<[]>;
4525
+ /**
4526
+ * enforce valid `v-slot` directives
4527
+ * @see https://eslint.vuejs.org/rules/valid-v-slot.html
4528
+ */
4529
+ 'vue/valid-v-slot'?: Linter.RuleEntry<VueValidVSlot>;
4530
+ /**
4531
+ * enforce valid `v-text` directives
4532
+ * @see https://eslint.vuejs.org/rules/valid-v-text.html
4533
+ */
4534
+ 'vue/valid-v-text'?: Linter.RuleEntry<[]>;
4535
+ /**
4536
+ * Require parentheses around immediate `function` invocations
4537
+ * @see https://eslint.org/docs/latest/rules/wrap-iife
4538
+ * @deprecated
4539
+ */
4540
+ 'wrap-iife'?: Linter.RuleEntry<WrapIife>;
4541
+ /**
4542
+ * Require parenthesis around regex literals
4543
+ * @see https://eslint.org/docs/latest/rules/wrap-regex
4544
+ * @deprecated
4545
+ */
4546
+ 'wrap-regex'?: Linter.RuleEntry<[]>;
4547
+ /**
4548
+ * Require or disallow spacing around the `*` in `yield*` expressions
4549
+ * @see https://eslint.org/docs/latest/rules/yield-star-spacing
4550
+ * @deprecated
4551
+ */
4552
+ 'yield-star-spacing'?: Linter.RuleEntry<YieldStarSpacing>;
4553
+ /**
4554
+ * Require or disallow "Yoda" conditions
4555
+ * @see https://eslint.org/docs/latest/rules/yoda
4556
+ */
4557
+ 'yoda'?: Linter.RuleEntry<Yoda>;
4558
+ }
4559
+ /* ======= Declarations ======= */
4560
+ // ----- accessor-pairs -----
4561
+ type AccessorPairs = [] | [{
4562
+ getWithoutSet?: boolean;
4563
+ setWithoutGet?: boolean;
4564
+ enforceForClassMembers?: boolean;
4565
+ enforceForTSTypes?: boolean;
4566
+ }];
4567
+ // ----- antfu/consistent-chaining -----
4568
+ type AntfuConsistentChaining = [] | [{
4569
+ allowLeadingPropertyAccess?: boolean;
4570
+ }];
4571
+ // ----- antfu/consistent-list-newline -----
4572
+ type AntfuConsistentListNewline = [] | [{
4573
+ ArrayExpression?: boolean;
4574
+ ArrayPattern?: boolean;
4575
+ ArrowFunctionExpression?: boolean;
4576
+ CallExpression?: boolean;
4577
+ ExportNamedDeclaration?: boolean;
4578
+ FunctionDeclaration?: boolean;
4579
+ FunctionExpression?: boolean;
4580
+ ImportDeclaration?: boolean;
4581
+ JSONArrayExpression?: boolean;
4582
+ JSONObjectExpression?: boolean;
4583
+ JSXOpeningElement?: boolean;
4584
+ NewExpression?: boolean;
4585
+ ObjectExpression?: boolean;
4586
+ ObjectPattern?: boolean;
4587
+ TSFunctionType?: boolean;
4588
+ TSInterfaceDeclaration?: boolean;
4589
+ TSTupleType?: boolean;
4590
+ TSTypeLiteral?: boolean;
4591
+ TSTypeParameterDeclaration?: boolean;
4592
+ TSTypeParameterInstantiation?: boolean;
4593
+ }];
4594
+ // ----- antfu/indent-unindent -----
4595
+ type AntfuIndentUnindent = [] | [{
4596
+ indent?: number;
4597
+ tags?: string[];
4598
+ }];
4599
+ // ----- array-bracket-newline -----
4600
+ type ArrayBracketNewline = [] | [(("always" | "never" | "consistent") | {
4601
+ multiline?: boolean;
4602
+ minItems?: (number | null);
4603
+ })];
4604
+ // ----- array-bracket-spacing -----
4605
+ type ArrayBracketSpacing = [] | [("always" | "never")] | [("always" | "never"), {
4606
+ singleValue?: boolean;
4607
+ objectsInArrays?: boolean;
4608
+ arraysInArrays?: boolean;
4609
+ }];
4610
+ // ----- array-callback-return -----
4611
+ type ArrayCallbackReturn = [] | [{
4612
+ allowImplicit?: boolean;
4613
+ checkForEach?: boolean;
4614
+ allowVoid?: boolean;
4615
+ }];
4616
+ // ----- array-element-newline -----
4617
+ type ArrayElementNewline = [] | [(_ArrayElementNewlineBasicConfig | {
4618
+ ArrayExpression?: _ArrayElementNewlineBasicConfig;
4619
+ ArrayPattern?: _ArrayElementNewlineBasicConfig;
4620
+ })];
4621
+ type _ArrayElementNewlineBasicConfig = (("always" | "never" | "consistent") | {
4622
+ multiline?: boolean;
4623
+ minItems?: (number | null);
4624
+ });
4625
+ // ----- arrow-body-style -----
4626
+ type ArrowBodyStyle = ([] | [("always" | "never")] | [] | ["as-needed"] | ["as-needed", {
4627
+ requireReturnForObjectLiteral?: boolean;
4628
+ }]);
4629
+ // ----- arrow-parens -----
4630
+ type ArrowParens = [] | [("always" | "as-needed")] | [("always" | "as-needed"), {
4631
+ requireForBlockBody?: boolean;
4632
+ }];
4633
+ // ----- arrow-spacing -----
4634
+ type ArrowSpacing = [] | [{
4635
+ before?: boolean;
4636
+ after?: boolean;
4637
+ }];
4638
+ // ----- block-spacing -----
4639
+ type BlockSpacing = [] | [("always" | "never")];
4640
+ // ----- brace-style -----
4641
+ type BraceStyle = [] | [("1tbs" | "stroustrup" | "allman")] | [("1tbs" | "stroustrup" | "allman"), {
4642
+ allowSingleLine?: boolean;
4643
+ }];
4644
+ // ----- callback-return -----
4645
+ type CallbackReturn = [] | [string[]];
4646
+ // ----- camelcase -----
4647
+ type Camelcase = [] | [{
4648
+ ignoreDestructuring?: boolean;
4649
+ ignoreImports?: boolean;
4650
+ ignoreGlobals?: boolean;
4651
+ properties?: ("always" | "never");
4652
+ allow?: string[];
4653
+ }];
4654
+ // ----- capitalized-comments -----
4655
+ type CapitalizedComments = [] | [("always" | "never")] | [("always" | "never"), ({
4656
+ ignorePattern?: string;
4657
+ ignoreInlineComments?: boolean;
4658
+ ignoreConsecutiveComments?: boolean;
4659
+ } | {
4660
+ line?: {
4661
+ ignorePattern?: string;
4662
+ ignoreInlineComments?: boolean;
4663
+ ignoreConsecutiveComments?: boolean;
4664
+ };
4665
+ block?: {
4666
+ ignorePattern?: string;
4667
+ ignoreInlineComments?: boolean;
4668
+ ignoreConsecutiveComments?: boolean;
4669
+ };
4670
+ })];
4671
+ // ----- class-methods-use-this -----
4672
+ type ClassMethodsUseThis = [] | [{
4673
+ exceptMethods?: string[];
4674
+ enforceForClassFields?: boolean;
4675
+ ignoreOverrideMethods?: boolean;
4676
+ ignoreClassesWithImplements?: ("all" | "public-fields");
4677
+ }];
4678
+ // ----- comma-dangle -----
4679
+ type CommaDangle = [] | [(_CommaDangleValue | {
4680
+ arrays?: _CommaDangleValueWithIgnore;
4681
+ objects?: _CommaDangleValueWithIgnore;
4682
+ imports?: _CommaDangleValueWithIgnore;
4683
+ exports?: _CommaDangleValueWithIgnore;
4684
+ functions?: _CommaDangleValueWithIgnore;
4685
+ })];
4686
+ type _CommaDangleValue = ("always-multiline" | "always" | "never" | "only-multiline");
4687
+ type _CommaDangleValueWithIgnore = ("always-multiline" | "always" | "ignore" | "never" | "only-multiline");
4688
+ // ----- comma-spacing -----
4689
+ type CommaSpacing = [] | [{
4690
+ before?: boolean;
4691
+ after?: boolean;
4692
+ }];
4693
+ // ----- comma-style -----
4694
+ type CommaStyle = [] | [("first" | "last")] | [("first" | "last"), {
4695
+ exceptions?: {
4696
+ [k: string]: boolean | undefined;
4697
+ };
4698
+ }];
4699
+ // ----- complexity -----
4700
+ type Complexity = [] | [(number | {
4701
+ maximum?: number;
4702
+ max?: number;
4703
+ variant?: ("classic" | "modified");
4704
+ })];
4705
+ // ----- computed-property-spacing -----
4706
+ type ComputedPropertySpacing = [] | [("always" | "never")] | [("always" | "never"), {
4707
+ enforceForClassMembers?: boolean;
4708
+ }];
4709
+ // ----- consistent-return -----
4710
+ type ConsistentReturn = [] | [{
4711
+ treatUndefinedAsUnspecified?: boolean;
4712
+ }];
4713
+ // ----- consistent-this -----
4714
+ type ConsistentThis = string[];
4715
+ // ----- curly -----
4716
+ type Curly = ([] | ["all"] | [] | [("multi" | "multi-line" | "multi-or-nest")] | [("multi" | "multi-line" | "multi-or-nest"), "consistent"]);
4717
+ // ----- default-case -----
4718
+ type DefaultCase = [] | [{
4719
+ commentPattern?: string;
4720
+ }];
4721
+ // ----- dot-location -----
4722
+ type DotLocation = [] | [("object" | "property")];
4723
+ // ----- dot-notation -----
4724
+ type DotNotation = [] | [{
4725
+ allowKeywords?: boolean;
4726
+ allowPattern?: string;
4727
+ }];
4728
+ // ----- eol-last -----
4729
+ type EolLast = [] | [("always" | "never" | "unix" | "windows")];
4730
+ // ----- eqeqeq -----
4731
+ type Eqeqeq = ([] | ["always"] | ["always", {
4732
+ null?: ("always" | "never" | "ignore");
4733
+ }] | [] | [("smart" | "allow-null")]);
4734
+ // ----- func-call-spacing -----
4735
+ type FuncCallSpacing = ([] | ["never"] | [] | ["always"] | ["always", {
4736
+ allowNewlines?: boolean;
4737
+ }]);
4738
+ // ----- func-name-matching -----
4739
+ type FuncNameMatching = ([] | [("always" | "never")] | [("always" | "never"), {
4740
+ considerPropertyDescriptor?: boolean;
4741
+ includeCommonJSModuleExports?: boolean;
4742
+ }] | [] | [{
4743
+ considerPropertyDescriptor?: boolean;
4744
+ includeCommonJSModuleExports?: boolean;
4745
+ }]);
4746
+ // ----- func-names -----
4747
+ type FuncNames = [] | [_FuncNamesValue] | [_FuncNamesValue, {
4748
+ generators?: _FuncNamesValue;
4749
+ }];
4750
+ type _FuncNamesValue = ("always" | "as-needed" | "never");
4751
+ // ----- func-style -----
4752
+ type FuncStyle = [] | [("declaration" | "expression")] | [("declaration" | "expression"), {
4753
+ allowArrowFunctions?: boolean;
4754
+ allowTypeAnnotation?: boolean;
4755
+ overrides?: {
4756
+ namedExports?: ("declaration" | "expression" | "ignore");
4757
+ };
4758
+ }];
4759
+ // ----- function-call-argument-newline -----
4760
+ type FunctionCallArgumentNewline = [] | [("always" | "never" | "consistent")];
4761
+ // ----- function-paren-newline -----
4762
+ type FunctionParenNewline = [] | [(("always" | "never" | "consistent" | "multiline" | "multiline-arguments") | {
4763
+ minItems?: number;
4764
+ })];
4765
+ // ----- generator-star-spacing -----
4766
+ type GeneratorStarSpacing = [] | [(("before" | "after" | "both" | "neither") | {
4767
+ before?: boolean;
4768
+ after?: boolean;
4769
+ named?: (("before" | "after" | "both" | "neither") | {
4770
+ before?: boolean;
4771
+ after?: boolean;
4772
+ });
4773
+ anonymous?: (("before" | "after" | "both" | "neither") | {
4774
+ before?: boolean;
4775
+ after?: boolean;
4776
+ });
4777
+ method?: (("before" | "after" | "both" | "neither") | {
4778
+ before?: boolean;
4779
+ after?: boolean;
4780
+ });
4781
+ })];
4782
+ // ----- getter-return -----
4783
+ type GetterReturn = [] | [{
4784
+ allowImplicit?: boolean;
4785
+ }];
4786
+ // ----- grouped-accessor-pairs -----
4787
+ type GroupedAccessorPairs = [] | [("anyOrder" | "getBeforeSet" | "setBeforeGet")] | [("anyOrder" | "getBeforeSet" | "setBeforeGet"), {
4788
+ enforceForTSTypes?: boolean;
4789
+ }];
4790
+ // ----- handle-callback-err -----
4791
+ type HandleCallbackErr = [] | [string];
4792
+ // ----- id-blacklist -----
4793
+ type IdBlacklist = string[];
4794
+ // ----- id-denylist -----
4795
+ type IdDenylist = string[];
3553
4796
  // ----- id-length -----
3554
4797
  type IdLength = [] | [{
3555
4798
  min?: number;
@@ -4625,12 +5868,14 @@ type NoRestrictedImports = ((string | {
4625
5868
  message?: string;
4626
5869
  importNames?: string[];
4627
5870
  allowImportNames?: string[];
5871
+ allowTypeImports?: boolean;
4628
5872
  })[] | [] | [{
4629
5873
  paths?: (string | {
4630
5874
  name: string;
4631
5875
  message?: string;
4632
5876
  importNames?: string[];
4633
5877
  allowImportNames?: string[];
5878
+ allowTypeImports?: boolean;
4634
5879
  })[];
4635
5880
  patterns?: (string[] | ({
4636
5881
  [k: string]: unknown | undefined;
@@ -4818,7 +6063,7 @@ type NodeHashbang = [] | [{
4818
6063
  // ----- node/no-deprecated-api -----
4819
6064
  type NodeNoDeprecatedApi = [] | [{
4820
6065
  version?: string;
4821
- ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[];
6066
+ ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "repl.builtinModules" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[];
4822
6067
  ignoreGlobalItems?: ("Buffer()" | "new Buffer()" | "COUNTER_NET_SERVER_CONNECTION" | "COUNTER_NET_SERVER_CONNECTION_CLOSE" | "COUNTER_HTTP_SERVER_REQUEST" | "COUNTER_HTTP_SERVER_RESPONSE" | "COUNTER_HTTP_CLIENT_REQUEST" | "COUNTER_HTTP_CLIENT_RESPONSE" | "GLOBAL" | "Intl.v8BreakIterator" | "require.extensions" | "root" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport")[];
4823
6068
  ignoreIndirectDependencies?: boolean;
4824
6069
  }];
@@ -5012,7 +6257,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
5012
6257
  type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
5013
6258
  version?: string;
5014
6259
  allowExperimental?: boolean;
5015
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[];
6260
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
5016
6261
  }];
5017
6262
  // ----- node/prefer-global/buffer -----
5018
6263
  type NodePreferGlobalBuffer = [] | [("always" | "never")];
@@ -7198,6 +8443,50 @@ type StylisticCurlyNewline = [] | [(("always" | "never") | {
7198
8443
  type StylisticDotLocation = [] | [("object" | "property")];
7199
8444
  // ----- stylistic/eol-last -----
7200
8445
  type StylisticEolLast = [] | [("always" | "never" | "unix" | "windows")];
8446
+ // ----- stylistic/exp-list-style -----
8447
+ type StylisticExpListStyle = [] | [{
8448
+ singleLine?: _StylisticExpListStyle_SingleLineConfig;
8449
+ multiLine?: _StylisticExpListStyle_MultiLineConfig;
8450
+ overrides?: {
8451
+ "[]"?: _StylisticExpListStyle_BaseConfig;
8452
+ "{}"?: _StylisticExpListStyle_BaseConfig;
8453
+ "<>"?: _StylisticExpListStyle_BaseConfig;
8454
+ "()"?: _StylisticExpListStyle_BaseConfig;
8455
+ ArrayExpression?: _StylisticExpListStyle_BaseConfig;
8456
+ ArrayPattern?: _StylisticExpListStyle_BaseConfig;
8457
+ ArrowFunctionExpression?: _StylisticExpListStyle_BaseConfig;
8458
+ CallExpression?: _StylisticExpListStyle_BaseConfig;
8459
+ ExportNamedDeclaration?: _StylisticExpListStyle_BaseConfig;
8460
+ FunctionDeclaration?: _StylisticExpListStyle_BaseConfig;
8461
+ FunctionExpression?: _StylisticExpListStyle_BaseConfig;
8462
+ ImportDeclaration?: _StylisticExpListStyle_BaseConfig;
8463
+ ImportAttributes?: _StylisticExpListStyle_BaseConfig;
8464
+ NewExpression?: _StylisticExpListStyle_BaseConfig;
8465
+ ObjectExpression?: _StylisticExpListStyle_BaseConfig;
8466
+ ObjectPattern?: _StylisticExpListStyle_BaseConfig;
8467
+ TSDeclareFunction?: _StylisticExpListStyle_BaseConfig;
8468
+ TSFunctionType?: _StylisticExpListStyle_BaseConfig;
8469
+ TSInterfaceBody?: _StylisticExpListStyle_BaseConfig;
8470
+ TSEnumBody?: _StylisticExpListStyle_BaseConfig;
8471
+ TSTupleType?: _StylisticExpListStyle_BaseConfig;
8472
+ TSTypeLiteral?: _StylisticExpListStyle_BaseConfig;
8473
+ TSTypeParameterDeclaration?: _StylisticExpListStyle_BaseConfig;
8474
+ TSTypeParameterInstantiation?: _StylisticExpListStyle_BaseConfig;
8475
+ JSONArrayExpression?: _StylisticExpListStyle_BaseConfig;
8476
+ JSONObjectExpression?: _StylisticExpListStyle_BaseConfig;
8477
+ };
8478
+ }];
8479
+ interface _StylisticExpListStyle_SingleLineConfig {
8480
+ spacing?: ("always" | "never");
8481
+ maxItems?: number;
8482
+ }
8483
+ interface _StylisticExpListStyle_MultiLineConfig {
8484
+ minItems?: number;
8485
+ }
8486
+ interface _StylisticExpListStyle_BaseConfig {
8487
+ singleLine?: _StylisticExpListStyle_SingleLineConfig;
8488
+ multiline?: _StylisticExpListStyle_MultiLineConfig;
8489
+ }
7201
8490
  // ----- stylistic/function-call-argument-newline -----
7202
8491
  type StylisticFunctionCallArgumentNewline = [] | [("always" | "never" | "consistent")];
7203
8492
  // ----- stylistic/function-call-spacing -----
@@ -7228,6 +8517,10 @@ type StylisticGeneratorStarSpacing = [] | [(("before" | "after" | "both" | "neit
7228
8517
  before?: boolean;
7229
8518
  after?: boolean;
7230
8519
  });
8520
+ shorthand?: (("before" | "after" | "both" | "neither") | {
8521
+ before?: boolean;
8522
+ after?: boolean;
8523
+ });
7231
8524
  })];
7232
8525
  // ----- stylistic/implicit-arrow-linebreak -----
7233
8526
  type StylisticImplicitArrowLinebreak = [] | [("beside" | "below")];
@@ -7263,7 +8556,11 @@ type StylisticIndent = [] | [("tab" | number)] | [("tab" | number), {
7263
8556
  ObjectExpression?: (number | ("first" | "off"));
7264
8557
  ImportDeclaration?: (number | ("first" | "off"));
7265
8558
  flatTernaryExpressions?: boolean;
7266
- offsetTernaryExpressions?: boolean;
8559
+ offsetTernaryExpressions?: (boolean | {
8560
+ CallExpression?: boolean;
8561
+ AwaitExpression?: boolean;
8562
+ NewExpression?: boolean;
8563
+ });
7267
8564
  offsetTernaryExpressionsOffsetCallExpressions?: boolean;
7268
8565
  ignoredNodes?: string[];
7269
8566
  ignoreComments?: boolean;
@@ -7473,22 +8770,6 @@ type StylisticKeywordSpacing = [] | [{
7473
8770
  before?: boolean;
7474
8771
  after?: boolean;
7475
8772
  };
7476
- arguments?: {
7477
- before?: boolean;
7478
- after?: boolean;
7479
- };
7480
- as?: {
7481
- before?: boolean;
7482
- after?: boolean;
7483
- };
7484
- async?: {
7485
- before?: boolean;
7486
- after?: boolean;
7487
- };
7488
- await?: {
7489
- before?: boolean;
7490
- after?: boolean;
7491
- };
7492
8773
  boolean?: {
7493
8774
  before?: boolean;
7494
8775
  after?: boolean;
@@ -7553,10 +8834,6 @@ type StylisticKeywordSpacing = [] | [{
7553
8834
  before?: boolean;
7554
8835
  after?: boolean;
7555
8836
  };
7556
- eval?: {
7557
- before?: boolean;
7558
- after?: boolean;
7559
- };
7560
8837
  export?: {
7561
8838
  before?: boolean;
7562
8839
  after?: boolean;
@@ -7585,18 +8862,10 @@ type StylisticKeywordSpacing = [] | [{
7585
8862
  before?: boolean;
7586
8863
  after?: boolean;
7587
8864
  };
7588
- from?: {
7589
- before?: boolean;
7590
- after?: boolean;
7591
- };
7592
8865
  function?: {
7593
8866
  before?: boolean;
7594
8867
  after?: boolean;
7595
8868
  };
7596
- get?: {
7597
- before?: boolean;
7598
- after?: boolean;
7599
- };
7600
8869
  goto?: {
7601
8870
  before?: boolean;
7602
8871
  after?: boolean;
@@ -7629,10 +8898,6 @@ type StylisticKeywordSpacing = [] | [{
7629
8898
  before?: boolean;
7630
8899
  after?: boolean;
7631
8900
  };
7632
- let?: {
7633
- before?: boolean;
7634
- after?: boolean;
7635
- };
7636
8901
  long?: {
7637
8902
  before?: boolean;
7638
8903
  after?: boolean;
@@ -7649,10 +8914,6 @@ type StylisticKeywordSpacing = [] | [{
7649
8914
  before?: boolean;
7650
8915
  after?: boolean;
7651
8916
  };
7652
- of?: {
7653
- before?: boolean;
7654
- after?: boolean;
7655
- };
7656
8917
  package?: {
7657
8918
  before?: boolean;
7658
8919
  after?: boolean;
@@ -7673,10 +8934,6 @@ type StylisticKeywordSpacing = [] | [{
7673
8934
  before?: boolean;
7674
8935
  after?: boolean;
7675
8936
  };
7676
- set?: {
7677
- before?: boolean;
7678
- after?: boolean;
7679
- };
7680
8937
  short?: {
7681
8938
  before?: boolean;
7682
8939
  after?: boolean;
@@ -7721,18 +8978,10 @@ type StylisticKeywordSpacing = [] | [{
7721
8978
  before?: boolean;
7722
8979
  after?: boolean;
7723
8980
  };
7724
- type?: {
7725
- before?: boolean;
7726
- after?: boolean;
7727
- };
7728
8981
  typeof?: {
7729
8982
  before?: boolean;
7730
8983
  after?: boolean;
7731
8984
  };
7732
- using?: {
7733
- before?: boolean;
7734
- after?: boolean;
7735
- };
7736
8985
  var?: {
7737
8986
  before?: boolean;
7738
8987
  after?: boolean;
@@ -7753,6 +9002,54 @@ type StylisticKeywordSpacing = [] | [{
7753
9002
  before?: boolean;
7754
9003
  after?: boolean;
7755
9004
  };
9005
+ arguments?: {
9006
+ before?: boolean;
9007
+ after?: boolean;
9008
+ };
9009
+ as?: {
9010
+ before?: boolean;
9011
+ after?: boolean;
9012
+ };
9013
+ async?: {
9014
+ before?: boolean;
9015
+ after?: boolean;
9016
+ };
9017
+ await?: {
9018
+ before?: boolean;
9019
+ after?: boolean;
9020
+ };
9021
+ eval?: {
9022
+ before?: boolean;
9023
+ after?: boolean;
9024
+ };
9025
+ from?: {
9026
+ before?: boolean;
9027
+ after?: boolean;
9028
+ };
9029
+ get?: {
9030
+ before?: boolean;
9031
+ after?: boolean;
9032
+ };
9033
+ let?: {
9034
+ before?: boolean;
9035
+ after?: boolean;
9036
+ };
9037
+ of?: {
9038
+ before?: boolean;
9039
+ after?: boolean;
9040
+ };
9041
+ set?: {
9042
+ before?: boolean;
9043
+ after?: boolean;
9044
+ };
9045
+ type?: {
9046
+ before?: boolean;
9047
+ after?: boolean;
9048
+ };
9049
+ using?: {
9050
+ before?: boolean;
9051
+ after?: boolean;
9052
+ };
7756
9053
  yield?: {
7757
9054
  before?: boolean;
7758
9055
  after?: boolean;
@@ -8052,6 +9349,19 @@ type StylisticObjectCurlyNewline = [] | [((("always" | "never") | {
8052
9349
  type StylisticObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
8053
9350
  arraysInObjects?: boolean;
8054
9351
  objectsInObjects?: boolean;
9352
+ overrides?: {
9353
+ ObjectPattern?: ("always" | "never");
9354
+ ObjectExpression?: ("always" | "never");
9355
+ ImportDeclaration?: ("always" | "never");
9356
+ ImportAttributes?: ("always" | "never");
9357
+ ExportNamedDeclaration?: ("always" | "never");
9358
+ ExportAllDeclaration?: ("always" | "never");
9359
+ TSMappedType?: ("always" | "never");
9360
+ TSTypeLiteral?: ("always" | "never");
9361
+ TSInterfaceBody?: ("always" | "never");
9362
+ TSEnumBody?: ("always" | "never");
9363
+ };
9364
+ emptyObjects?: ("ignore" | "always" | "never");
8055
9365
  }];
8056
9366
  // ----- stylistic/object-property-newline -----
8057
9367
  type StylisticObjectPropertyNewline = [] | [{
@@ -8634,555 +9944,1748 @@ type TypescriptNamingConvention = ({
8634
9944
  selector: "enum";
8635
9945
  modifiers?: ("exported" | "unused")[];
8636
9946
  } | {
8637
- custom?: _TypescriptNamingConvention_MatchRegexConfig;
8638
- failureMessage?: string;
8639
- format: _TypescriptNamingConventionFormatOptionsConfig;
8640
- leadingUnderscore?: _TypescriptNamingConventionUnderscoreOptions;
8641
- prefix?: _TypescriptNamingConvention_PrefixSuffixConfig;
8642
- suffix?: _TypescriptNamingConvention_PrefixSuffixConfig;
8643
- trailingUnderscore?: _TypescriptNamingConventionUnderscoreOptions;
8644
- filter?: (string | _TypescriptNamingConvention_MatchRegexConfig);
8645
- selector: "typeParameter";
8646
- modifiers?: ("unused")[];
9947
+ custom?: _TypescriptNamingConvention_MatchRegexConfig;
9948
+ failureMessage?: string;
9949
+ format: _TypescriptNamingConventionFormatOptionsConfig;
9950
+ leadingUnderscore?: _TypescriptNamingConventionUnderscoreOptions;
9951
+ prefix?: _TypescriptNamingConvention_PrefixSuffixConfig;
9952
+ suffix?: _TypescriptNamingConvention_PrefixSuffixConfig;
9953
+ trailingUnderscore?: _TypescriptNamingConventionUnderscoreOptions;
9954
+ filter?: (string | _TypescriptNamingConvention_MatchRegexConfig);
9955
+ selector: "typeParameter";
9956
+ modifiers?: ("unused")[];
9957
+ } | {
9958
+ custom?: _TypescriptNamingConvention_MatchRegexConfig;
9959
+ failureMessage?: string;
9960
+ format: _TypescriptNamingConventionFormatOptionsConfig;
9961
+ leadingUnderscore?: _TypescriptNamingConventionUnderscoreOptions;
9962
+ prefix?: _TypescriptNamingConvention_PrefixSuffixConfig;
9963
+ suffix?: _TypescriptNamingConvention_PrefixSuffixConfig;
9964
+ trailingUnderscore?: _TypescriptNamingConventionUnderscoreOptions;
9965
+ filter?: (string | _TypescriptNamingConvention_MatchRegexConfig);
9966
+ selector: "import";
9967
+ modifiers?: ("default" | "namespace")[];
9968
+ })[];
9969
+ interface _TypescriptNamingConvention_MatchRegexConfig {
9970
+ match: boolean;
9971
+ regex: string;
9972
+ }
9973
+ // ----- typescript/no-base-to-string -----
9974
+ type TypescriptNoBaseToString = [] | [{
9975
+ checkUnknown?: boolean;
9976
+ ignoredTypeNames?: string[];
9977
+ }];
9978
+ // ----- typescript/no-confusing-void-expression -----
9979
+ type TypescriptNoConfusingVoidExpression = [] | [{
9980
+ ignoreArrowShorthand?: boolean;
9981
+ ignoreVoidOperator?: boolean;
9982
+ ignoreVoidReturningFunctions?: boolean;
9983
+ }];
9984
+ // ----- typescript/no-deprecated -----
9985
+ type TypescriptNoDeprecated = [] | [{
9986
+ allow?: (string | {
9987
+ from: "file";
9988
+ name: (string | [string, ...(string)[]]);
9989
+ path?: string;
9990
+ } | {
9991
+ from: "lib";
9992
+ name: (string | [string, ...(string)[]]);
9993
+ } | {
9994
+ from: "package";
9995
+ name: (string | [string, ...(string)[]]);
9996
+ package: string;
9997
+ })[];
9998
+ }];
9999
+ // ----- typescript/no-duplicate-type-constituents -----
10000
+ type TypescriptNoDuplicateTypeConstituents = [] | [{
10001
+ ignoreIntersections?: boolean;
10002
+ ignoreUnions?: boolean;
10003
+ }];
10004
+ // ----- typescript/no-empty-function -----
10005
+ type TypescriptNoEmptyFunction = [] | [{
10006
+ allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "private-constructors" | "protected-constructors" | "asyncFunctions" | "asyncMethods" | "decoratedFunctions" | "overrideMethods")[];
10007
+ }];
10008
+ // ----- typescript/no-empty-interface -----
10009
+ type TypescriptNoEmptyInterface = [] | [{
10010
+ allowSingleExtends?: boolean;
10011
+ }];
10012
+ // ----- typescript/no-empty-object-type -----
10013
+ type TypescriptNoEmptyObjectType = [] | [{
10014
+ allowInterfaces?: ("always" | "never" | "with-single-extends");
10015
+ allowObjectTypes?: ("always" | "never");
10016
+ allowWithName?: string;
10017
+ }];
10018
+ // ----- typescript/no-explicit-any -----
10019
+ type TypescriptNoExplicitAny = [] | [{
10020
+ fixToUnknown?: boolean;
10021
+ ignoreRestArgs?: boolean;
10022
+ }];
10023
+ // ----- typescript/no-extraneous-class -----
10024
+ type TypescriptNoExtraneousClass = [] | [{
10025
+ allowConstructorOnly?: boolean;
10026
+ allowEmpty?: boolean;
10027
+ allowStaticOnly?: boolean;
10028
+ allowWithDecorator?: boolean;
10029
+ }];
10030
+ // ----- typescript/no-floating-promises -----
10031
+ type TypescriptNoFloatingPromises = [] | [{
10032
+ allowForKnownSafeCalls?: (string | {
10033
+ from: "file";
10034
+ name: (string | [string, ...(string)[]]);
10035
+ path?: string;
10036
+ } | {
10037
+ from: "lib";
10038
+ name: (string | [string, ...(string)[]]);
10039
+ } | {
10040
+ from: "package";
10041
+ name: (string | [string, ...(string)[]]);
10042
+ package: string;
10043
+ })[];
10044
+ allowForKnownSafePromises?: (string | {
10045
+ from: "file";
10046
+ name: (string | [string, ...(string)[]]);
10047
+ path?: string;
10048
+ } | {
10049
+ from: "lib";
10050
+ name: (string | [string, ...(string)[]]);
10051
+ } | {
10052
+ from: "package";
10053
+ name: (string | [string, ...(string)[]]);
10054
+ package: string;
10055
+ })[];
10056
+ checkThenables?: boolean;
10057
+ ignoreIIFE?: boolean;
10058
+ ignoreVoid?: boolean;
10059
+ }];
10060
+ // ----- typescript/no-inferrable-types -----
10061
+ type TypescriptNoInferrableTypes = [] | [{
10062
+ ignoreParameters?: boolean;
10063
+ ignoreProperties?: boolean;
10064
+ }];
10065
+ // ----- typescript/no-invalid-this -----
10066
+ type TypescriptNoInvalidThis = [] | [{
10067
+ capIsConstructor?: boolean;
10068
+ }];
10069
+ // ----- typescript/no-invalid-void-type -----
10070
+ type TypescriptNoInvalidVoidType = [] | [{
10071
+ allowAsThisParameter?: boolean;
10072
+ allowInGenericTypeArguments?: (boolean | [string, ...(string)[]]);
10073
+ }];
10074
+ // ----- typescript/no-magic-numbers -----
10075
+ type TypescriptNoMagicNumbers = [] | [{
10076
+ detectObjects?: boolean;
10077
+ enforceConst?: boolean;
10078
+ ignore?: (number | string)[];
10079
+ ignoreArrayIndexes?: boolean;
10080
+ ignoreDefaultValues?: boolean;
10081
+ ignoreClassFieldInitialValues?: boolean;
10082
+ ignoreEnums?: boolean;
10083
+ ignoreNumericLiteralTypes?: boolean;
10084
+ ignoreReadonlyClassProperties?: boolean;
10085
+ ignoreTypeIndexes?: boolean;
10086
+ }];
10087
+ // ----- typescript/no-meaningless-void-operator -----
10088
+ type TypescriptNoMeaninglessVoidOperator = [] | [{
10089
+ checkNever?: boolean;
10090
+ }];
10091
+ // ----- typescript/no-misused-promises -----
10092
+ type TypescriptNoMisusedPromises = [] | [{
10093
+ checksConditionals?: boolean;
10094
+ checksSpreads?: boolean;
10095
+ checksVoidReturn?: (boolean | {
10096
+ arguments?: boolean;
10097
+ attributes?: boolean;
10098
+ inheritedMethods?: boolean;
10099
+ properties?: boolean;
10100
+ returns?: boolean;
10101
+ variables?: boolean;
10102
+ });
10103
+ }];
10104
+ // ----- typescript/no-misused-spread -----
10105
+ type TypescriptNoMisusedSpread = [] | [{
10106
+ allow?: (string | {
10107
+ from: "file";
10108
+ name: (string | [string, ...(string)[]]);
10109
+ path?: string;
10110
+ } | {
10111
+ from: "lib";
10112
+ name: (string | [string, ...(string)[]]);
10113
+ } | {
10114
+ from: "package";
10115
+ name: (string | [string, ...(string)[]]);
10116
+ package: string;
10117
+ })[];
10118
+ }];
10119
+ // ----- typescript/no-namespace -----
10120
+ type TypescriptNoNamespace = [] | [{
10121
+ allowDeclarations?: boolean;
10122
+ allowDefinitionFiles?: boolean;
10123
+ }];
10124
+ // ----- typescript/no-redeclare -----
10125
+ type TypescriptNoRedeclare = [] | [{
10126
+ builtinGlobals?: boolean;
10127
+ ignoreDeclarationMerge?: boolean;
10128
+ }];
10129
+ // ----- typescript/no-require-imports -----
10130
+ type TypescriptNoRequireImports = [] | [{
10131
+ allow?: string[];
10132
+ allowAsImport?: boolean;
10133
+ }];
10134
+ // ----- typescript/no-restricted-imports -----
10135
+ type TypescriptNoRestrictedImports = ((string | {
10136
+ name: string;
10137
+ message?: string;
10138
+ importNames?: string[];
10139
+ allowImportNames?: string[];
10140
+ allowTypeImports?: boolean;
10141
+ })[] | [] | [{
10142
+ paths?: (string | {
10143
+ name: string;
10144
+ message?: string;
10145
+ importNames?: string[];
10146
+ allowImportNames?: string[];
10147
+ allowTypeImports?: boolean;
10148
+ })[];
10149
+ patterns?: (string[] | {
10150
+ importNames?: [string, ...(string)[]];
10151
+ allowImportNames?: [string, ...(string)[]];
10152
+ group?: [string, ...(string)[]];
10153
+ regex?: string;
10154
+ importNamePattern?: string;
10155
+ allowImportNamePattern?: string;
10156
+ message?: string;
10157
+ caseSensitive?: boolean;
10158
+ allowTypeImports?: boolean;
10159
+ }[]);
10160
+ }]);
10161
+ // ----- typescript/no-restricted-types -----
10162
+ type TypescriptNoRestrictedTypes = [] | [{
10163
+ types?: {
10164
+ [k: string]: (true | string | {
10165
+ fixWith?: string;
10166
+ message?: string;
10167
+ suggest?: string[];
10168
+ }) | undefined;
10169
+ };
10170
+ }];
10171
+ // ----- typescript/no-shadow -----
10172
+ type TypescriptNoShadow = [] | [{
10173
+ allow?: string[];
10174
+ builtinGlobals?: boolean;
10175
+ hoist?: ("all" | "functions" | "functions-and-types" | "never" | "types");
10176
+ ignoreFunctionTypeParameterNameValueShadow?: boolean;
10177
+ ignoreOnInitialization?: boolean;
10178
+ ignoreTypeValueShadow?: boolean;
10179
+ }];
10180
+ // ----- typescript/no-this-alias -----
10181
+ type TypescriptNoThisAlias = [] | [{
10182
+ allowDestructuring?: boolean;
10183
+ allowedNames?: string[];
10184
+ }];
10185
+ // ----- typescript/no-type-alias -----
10186
+ type TypescriptNoTypeAlias = [] | [{
10187
+ allowAliases?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections");
10188
+ allowCallbacks?: ("always" | "never");
10189
+ allowConditionalTypes?: ("always" | "never");
10190
+ allowConstructors?: ("always" | "never");
10191
+ allowGenerics?: ("always" | "never");
10192
+ allowLiterals?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections");
10193
+ allowMappedTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections");
10194
+ allowTupleTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections");
10195
+ }];
10196
+ // ----- typescript/no-unnecessary-boolean-literal-compare -----
10197
+ type TypescriptNoUnnecessaryBooleanLiteralCompare = [] | [{
10198
+ allowComparingNullableBooleansToFalse?: boolean;
10199
+ allowComparingNullableBooleansToTrue?: boolean;
10200
+ allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
10201
+ }];
10202
+ // ----- typescript/no-unnecessary-condition -----
10203
+ type TypescriptNoUnnecessaryCondition = [] | [{
10204
+ allowConstantLoopConditions?: (boolean | ("always" | "never" | "only-allowed-literals"));
10205
+ allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
10206
+ checkTypePredicates?: boolean;
10207
+ }];
10208
+ // ----- typescript/no-unnecessary-type-assertion -----
10209
+ type TypescriptNoUnnecessaryTypeAssertion = [] | [{
10210
+ checkLiteralConstAssertions?: boolean;
10211
+ typesToIgnore?: string[];
10212
+ }];
10213
+ // ----- typescript/no-unsafe-member-access -----
10214
+ type TypescriptNoUnsafeMemberAccess = [] | [{
10215
+ allowOptionalChaining?: boolean;
10216
+ }];
10217
+ // ----- typescript/no-unused-expressions -----
10218
+ type TypescriptNoUnusedExpressions = [] | [{
10219
+ allowShortCircuit?: boolean;
10220
+ allowTernary?: boolean;
10221
+ allowTaggedTemplates?: boolean;
10222
+ enforceForJSX?: boolean;
10223
+ ignoreDirectives?: boolean;
10224
+ }];
10225
+ // ----- typescript/no-unused-vars -----
10226
+ type TypescriptNoUnusedVars = [] | [(("all" | "local") | {
10227
+ args?: ("all" | "after-used" | "none");
10228
+ argsIgnorePattern?: string;
10229
+ caughtErrors?: ("all" | "none");
10230
+ caughtErrorsIgnorePattern?: string;
10231
+ destructuredArrayIgnorePattern?: string;
10232
+ ignoreClassWithStaticInitBlock?: boolean;
10233
+ ignoreRestSiblings?: boolean;
10234
+ ignoreUsingDeclarations?: boolean;
10235
+ reportUsedIgnorePattern?: boolean;
10236
+ vars?: ("all" | "local");
10237
+ varsIgnorePattern?: string;
10238
+ })];
10239
+ // ----- typescript/no-use-before-define -----
10240
+ type TypescriptNoUseBeforeDefine = [] | [("nofunc" | {
10241
+ allowNamedExports?: boolean;
10242
+ classes?: boolean;
10243
+ enums?: boolean;
10244
+ functions?: boolean;
10245
+ ignoreTypeReferences?: boolean;
10246
+ typedefs?: boolean;
10247
+ variables?: boolean;
10248
+ })];
10249
+ // ----- typescript/no-var-requires -----
10250
+ type TypescriptNoVarRequires = [] | [{
10251
+ allow?: string[];
10252
+ }];
10253
+ // ----- typescript/only-throw-error -----
10254
+ type TypescriptOnlyThrowError = [] | [{
10255
+ allow?: (string | {
10256
+ from: "file";
10257
+ name: (string | [string, ...(string)[]]);
10258
+ path?: string;
10259
+ } | {
10260
+ from: "lib";
10261
+ name: (string | [string, ...(string)[]]);
10262
+ } | {
10263
+ from: "package";
10264
+ name: (string | [string, ...(string)[]]);
10265
+ package: string;
10266
+ })[];
10267
+ allowRethrowing?: boolean;
10268
+ allowThrowingAny?: boolean;
10269
+ allowThrowingUnknown?: boolean;
10270
+ }];
10271
+ // ----- typescript/parameter-properties -----
10272
+ type TypescriptParameterProperties = [] | [{
10273
+ allow?: ("readonly" | "private" | "protected" | "public" | "private readonly" | "protected readonly" | "public readonly")[];
10274
+ prefer?: ("class-property" | "parameter-property");
10275
+ }];
10276
+ // ----- typescript/prefer-destructuring -----
10277
+ type TypescriptPreferDestructuring = [] | [({
10278
+ AssignmentExpression?: {
10279
+ array?: boolean;
10280
+ object?: boolean;
10281
+ };
10282
+ VariableDeclarator?: {
10283
+ array?: boolean;
10284
+ object?: boolean;
10285
+ };
10286
+ } | {
10287
+ array?: boolean;
10288
+ object?: boolean;
10289
+ })] | [({
10290
+ AssignmentExpression?: {
10291
+ array?: boolean;
10292
+ object?: boolean;
10293
+ };
10294
+ VariableDeclarator?: {
10295
+ array?: boolean;
10296
+ object?: boolean;
10297
+ };
8647
10298
  } | {
8648
- custom?: _TypescriptNamingConvention_MatchRegexConfig;
8649
- failureMessage?: string;
8650
- format: _TypescriptNamingConventionFormatOptionsConfig;
8651
- leadingUnderscore?: _TypescriptNamingConventionUnderscoreOptions;
8652
- prefix?: _TypescriptNamingConvention_PrefixSuffixConfig;
8653
- suffix?: _TypescriptNamingConvention_PrefixSuffixConfig;
8654
- trailingUnderscore?: _TypescriptNamingConventionUnderscoreOptions;
8655
- filter?: (string | _TypescriptNamingConvention_MatchRegexConfig);
8656
- selector: "import";
8657
- modifiers?: ("default" | "namespace")[];
8658
- })[];
8659
- interface _TypescriptNamingConvention_MatchRegexConfig {
8660
- match: boolean;
8661
- regex: string;
8662
- }
8663
- // ----- typescript/no-base-to-string -----
8664
- type TypescriptNoBaseToString = [] | [{
10299
+ array?: boolean;
10300
+ object?: boolean;
10301
+ }), {
10302
+ enforceForDeclarationWithTypeAnnotation?: boolean;
10303
+ enforceForRenamedProperties?: boolean;
10304
+ }];
10305
+ // ----- typescript/prefer-literal-enum-member -----
10306
+ type TypescriptPreferLiteralEnumMember = [] | [{
10307
+ allowBitwiseExpressions?: boolean;
10308
+ }];
10309
+ // ----- typescript/prefer-nullish-coalescing -----
10310
+ type TypescriptPreferNullishCoalescing = [] | [{
10311
+ allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
10312
+ ignoreBooleanCoercion?: boolean;
10313
+ ignoreConditionalTests?: boolean;
10314
+ ignoreIfStatements?: boolean;
10315
+ ignoreMixedLogicalExpressions?: boolean;
10316
+ ignorePrimitives?: ({
10317
+ bigint?: boolean;
10318
+ boolean?: boolean;
10319
+ number?: boolean;
10320
+ string?: boolean;
10321
+ } | true);
10322
+ ignoreTernaryTests?: boolean;
10323
+ }];
10324
+ // ----- typescript/prefer-optional-chain -----
10325
+ type TypescriptPreferOptionalChain = [] | [{
10326
+ allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean;
10327
+ checkAny?: boolean;
10328
+ checkBigInt?: boolean;
10329
+ checkBoolean?: boolean;
10330
+ checkNumber?: boolean;
10331
+ checkString?: boolean;
8665
10332
  checkUnknown?: boolean;
8666
- ignoredTypeNames?: string[];
10333
+ requireNullish?: boolean;
10334
+ }];
10335
+ // ----- typescript/prefer-promise-reject-errors -----
10336
+ type TypescriptPreferPromiseRejectErrors = [] | [{
10337
+ allowEmptyReject?: boolean;
10338
+ allowThrowingAny?: boolean;
10339
+ allowThrowingUnknown?: boolean;
10340
+ }];
10341
+ // ----- typescript/prefer-readonly -----
10342
+ type TypescriptPreferReadonly = [] | [{
10343
+ onlyInlineLambdas?: boolean;
10344
+ }];
10345
+ // ----- typescript/prefer-readonly-parameter-types -----
10346
+ type TypescriptPreferReadonlyParameterTypes = [] | [{
10347
+ allow?: (string | {
10348
+ from: "file";
10349
+ name: (string | [string, ...(string)[]]);
10350
+ path?: string;
10351
+ } | {
10352
+ from: "lib";
10353
+ name: (string | [string, ...(string)[]]);
10354
+ } | {
10355
+ from: "package";
10356
+ name: (string | [string, ...(string)[]]);
10357
+ package: string;
10358
+ })[];
10359
+ checkParameterProperties?: boolean;
10360
+ ignoreInferredTypes?: boolean;
10361
+ treatMethodsAsReadonly?: boolean;
10362
+ }];
10363
+ // ----- typescript/prefer-string-starts-ends-with -----
10364
+ type TypescriptPreferStringStartsEndsWith = [] | [{
10365
+ allowSingleElementEquality?: ("always" | "never");
10366
+ }];
10367
+ // ----- typescript/promise-function-async -----
10368
+ type TypescriptPromiseFunctionAsync = [] | [{
10369
+ allowAny?: boolean;
10370
+ allowedPromiseNames?: string[];
10371
+ checkArrowFunctions?: boolean;
10372
+ checkFunctionDeclarations?: boolean;
10373
+ checkFunctionExpressions?: boolean;
10374
+ checkMethodDeclarations?: boolean;
10375
+ }];
10376
+ // ----- typescript/require-array-sort-compare -----
10377
+ type TypescriptRequireArraySortCompare = [] | [{
10378
+ ignoreStringArrays?: boolean;
10379
+ }];
10380
+ // ----- typescript/restrict-plus-operands -----
10381
+ type TypescriptRestrictPlusOperands = [] | [{
10382
+ allowAny?: boolean;
10383
+ allowBoolean?: boolean;
10384
+ allowNullish?: boolean;
10385
+ allowNumberAndString?: boolean;
10386
+ allowRegExp?: boolean;
10387
+ skipCompoundAssignments?: boolean;
10388
+ }];
10389
+ // ----- typescript/restrict-template-expressions -----
10390
+ type TypescriptRestrictTemplateExpressions = [] | [{
10391
+ allowAny?: boolean;
10392
+ allowArray?: boolean;
10393
+ allowBoolean?: boolean;
10394
+ allowNullish?: boolean;
10395
+ allowNumber?: boolean;
10396
+ allowRegExp?: boolean;
10397
+ allowNever?: boolean;
10398
+ allow?: (string | {
10399
+ from: "file";
10400
+ name: (string | [string, ...(string)[]]);
10401
+ path?: string;
10402
+ } | {
10403
+ from: "lib";
10404
+ name: (string | [string, ...(string)[]]);
10405
+ } | {
10406
+ from: "package";
10407
+ name: (string | [string, ...(string)[]]);
10408
+ package: string;
10409
+ })[];
10410
+ }];
10411
+ // ----- typescript/return-await -----
10412
+ type TypescriptReturnAwait = [] | [(("always" | "error-handling-correctness-only" | "in-try-catch" | "never") & string)];
10413
+ // ----- typescript/sort-type-constituents -----
10414
+ type TypescriptSortTypeConstituents = [] | [{
10415
+ caseSensitive?: boolean;
10416
+ checkIntersections?: boolean;
10417
+ checkUnions?: boolean;
10418
+ groupOrder?: ("conditional" | "function" | "import" | "intersection" | "keyword" | "nullish" | "literal" | "named" | "object" | "operator" | "tuple" | "union")[];
10419
+ }];
10420
+ // ----- typescript/strict-boolean-expressions -----
10421
+ type TypescriptStrictBooleanExpressions = [] | [{
10422
+ allowAny?: boolean;
10423
+ allowNullableBoolean?: boolean;
10424
+ allowNullableEnum?: boolean;
10425
+ allowNullableNumber?: boolean;
10426
+ allowNullableObject?: boolean;
10427
+ allowNullableString?: boolean;
10428
+ allowNumber?: boolean;
10429
+ allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
10430
+ allowString?: boolean;
10431
+ }];
10432
+ // ----- typescript/switch-exhaustiveness-check -----
10433
+ type TypescriptSwitchExhaustivenessCheck = [] | [{
10434
+ allowDefaultCaseForExhaustiveSwitch?: boolean;
10435
+ considerDefaultExhaustiveForUnions?: boolean;
10436
+ defaultCaseCommentPattern?: string;
10437
+ requireDefaultForNonUnion?: boolean;
10438
+ }];
10439
+ // ----- typescript/triple-slash-reference -----
10440
+ type TypescriptTripleSlashReference = [] | [{
10441
+ lib?: ("always" | "never");
10442
+ path?: ("always" | "never");
10443
+ types?: ("always" | "never" | "prefer-import");
10444
+ }];
10445
+ // ----- typescript/typedef -----
10446
+ type TypescriptTypedef = [] | [{
10447
+ arrayDestructuring?: boolean;
10448
+ arrowParameter?: boolean;
10449
+ memberVariableDeclaration?: boolean;
10450
+ objectDestructuring?: boolean;
10451
+ parameter?: boolean;
10452
+ propertyDeclaration?: boolean;
10453
+ variableDeclaration?: boolean;
10454
+ variableDeclarationIgnoreFunction?: boolean;
10455
+ }];
10456
+ // ----- typescript/unbound-method -----
10457
+ type TypescriptUnboundMethod = [] | [{
10458
+ ignoreStatic?: boolean;
10459
+ }];
10460
+ // ----- typescript/unified-signatures -----
10461
+ type TypescriptUnifiedSignatures = [] | [{
10462
+ ignoreDifferentlyNamedParameters?: boolean;
10463
+ ignoreOverloadsWithDifferentJSDoc?: boolean;
10464
+ }];
10465
+ // ----- unicode-bom -----
10466
+ type UnicodeBom = [] | [("always" | "never")];
10467
+ // ----- unused-imports/no-unused-imports -----
10468
+ type UnusedImportsNoUnusedImports = [] | [(("all" | "local") | {
10469
+ args?: ("all" | "after-used" | "none");
10470
+ argsIgnorePattern?: string;
10471
+ caughtErrors?: ("all" | "none");
10472
+ caughtErrorsIgnorePattern?: string;
10473
+ destructuredArrayIgnorePattern?: string;
10474
+ ignoreClassWithStaticInitBlock?: boolean;
10475
+ ignoreRestSiblings?: boolean;
10476
+ ignoreUsingDeclarations?: boolean;
10477
+ reportUsedIgnorePattern?: boolean;
10478
+ vars?: ("all" | "local");
10479
+ varsIgnorePattern?: string;
10480
+ })];
10481
+ // ----- unused-imports/no-unused-vars -----
10482
+ type UnusedImportsNoUnusedVars = [] | [(("all" | "local") | {
10483
+ args?: ("all" | "after-used" | "none");
10484
+ argsIgnorePattern?: string;
10485
+ caughtErrors?: ("all" | "none");
10486
+ caughtErrorsIgnorePattern?: string;
10487
+ destructuredArrayIgnorePattern?: string;
10488
+ ignoreClassWithStaticInitBlock?: boolean;
10489
+ ignoreRestSiblings?: boolean;
10490
+ ignoreUsingDeclarations?: boolean;
10491
+ reportUsedIgnorePattern?: boolean;
10492
+ vars?: ("all" | "local");
10493
+ varsIgnorePattern?: string;
10494
+ })];
10495
+ // ----- use-isnan -----
10496
+ type UseIsnan = [] | [{
10497
+ enforceForSwitchCase?: boolean;
10498
+ enforceForIndexOf?: boolean;
10499
+ }];
10500
+ // ----- valid-typeof -----
10501
+ type ValidTypeof = [] | [{
10502
+ requireStringLiterals?: boolean;
10503
+ }];
10504
+ // ----- vue/array-bracket-newline -----
10505
+ type VueArrayBracketNewline = [] | [(("always" | "never" | "consistent") | {
10506
+ multiline?: boolean;
10507
+ minItems?: (number | null);
10508
+ })];
10509
+ // ----- vue/array-bracket-spacing -----
10510
+ type VueArrayBracketSpacing = [] | [("always" | "never")] | [("always" | "never"), {
10511
+ singleValue?: boolean;
10512
+ objectsInArrays?: boolean;
10513
+ arraysInArrays?: boolean;
10514
+ }];
10515
+ // ----- vue/array-element-newline -----
10516
+ type VueArrayElementNewline = [] | [(_VueArrayElementNewlineBasicConfig | {
10517
+ ArrayExpression?: _VueArrayElementNewlineBasicConfig;
10518
+ ArrayPattern?: _VueArrayElementNewlineBasicConfig;
10519
+ })];
10520
+ type _VueArrayElementNewlineBasicConfig = (("always" | "never" | "consistent") | {
10521
+ multiline?: boolean;
10522
+ minItems?: (number | null);
10523
+ });
10524
+ // ----- vue/arrow-spacing -----
10525
+ type VueArrowSpacing = [] | [{
10526
+ before?: boolean;
10527
+ after?: boolean;
10528
+ }];
10529
+ // ----- vue/attribute-hyphenation -----
10530
+ type VueAttributeHyphenation = [] | [("always" | "never")] | [("always" | "never"), {
10531
+ ignore?: (string & {
10532
+ [k: string]: unknown | undefined;
10533
+ } & {
10534
+ [k: string]: unknown | undefined;
10535
+ })[];
10536
+ ignoreTags?: string[];
10537
+ }];
10538
+ // ----- vue/attributes-order -----
10539
+ type VueAttributesOrder = [] | [{
10540
+ order?: (("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT") | ("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT")[])[];
10541
+ alphabetical?: boolean;
10542
+ sortLineLength?: boolean;
10543
+ }];
10544
+ // ----- vue/block-lang -----
10545
+ type VueBlockLang = [] | [{
10546
+ [k: string]: {
10547
+ lang?: (string | string[]);
10548
+ allowNoLang?: boolean;
10549
+ };
10550
+ }];
10551
+ // ----- vue/block-order -----
10552
+ type VueBlockOrder = [] | [{
10553
+ order?: (string | string[])[];
10554
+ }];
10555
+ // ----- vue/block-spacing -----
10556
+ type VueBlockSpacing = [] | [("always" | "never")];
10557
+ // ----- vue/block-tag-newline -----
10558
+ type VueBlockTagNewline = [] | [{
10559
+ singleline?: ("always" | "never" | "consistent" | "ignore");
10560
+ multiline?: ("always" | "never" | "consistent" | "ignore");
10561
+ maxEmptyLines?: number;
10562
+ blocks?: {
10563
+ [k: string]: {
10564
+ singleline?: ("always" | "never" | "consistent" | "ignore");
10565
+ multiline?: ("always" | "never" | "consistent" | "ignore");
10566
+ maxEmptyLines?: number;
10567
+ };
10568
+ };
10569
+ }];
10570
+ // ----- vue/brace-style -----
10571
+ type VueBraceStyle = [] | [("1tbs" | "stroustrup" | "allman")] | [("1tbs" | "stroustrup" | "allman"), {
10572
+ allowSingleLine?: boolean;
10573
+ }];
10574
+ // ----- vue/camelcase -----
10575
+ type VueCamelcase = [] | [{
10576
+ ignoreDestructuring?: boolean;
10577
+ ignoreImports?: boolean;
10578
+ ignoreGlobals?: boolean;
10579
+ properties?: ("always" | "never");
10580
+ allow?: string[];
8667
10581
  }];
8668
- // ----- typescript/no-confusing-void-expression -----
8669
- type TypescriptNoConfusingVoidExpression = [] | [{
8670
- ignoreArrowShorthand?: boolean;
8671
- ignoreVoidOperator?: boolean;
8672
- ignoreVoidReturningFunctions?: boolean;
10582
+ // ----- vue/comma-dangle -----
10583
+ type VueCommaDangle = [] | [(_VueCommaDangleValue | {
10584
+ arrays?: _VueCommaDangleValueWithIgnore;
10585
+ objects?: _VueCommaDangleValueWithIgnore;
10586
+ imports?: _VueCommaDangleValueWithIgnore;
10587
+ exports?: _VueCommaDangleValueWithIgnore;
10588
+ functions?: _VueCommaDangleValueWithIgnore;
10589
+ })];
10590
+ type _VueCommaDangleValue = ("always-multiline" | "always" | "never" | "only-multiline");
10591
+ type _VueCommaDangleValueWithIgnore = ("always-multiline" | "always" | "ignore" | "never" | "only-multiline");
10592
+ // ----- vue/comma-spacing -----
10593
+ type VueCommaSpacing = [] | [{
10594
+ before?: boolean;
10595
+ after?: boolean;
8673
10596
  }];
8674
- // ----- typescript/no-deprecated -----
8675
- type TypescriptNoDeprecated = [] | [{
8676
- allow?: (string | {
8677
- from: "file";
8678
- name: (string | [string, ...(string)[]]);
8679
- path?: string;
8680
- } | {
8681
- from: "lib";
8682
- name: (string | [string, ...(string)[]]);
8683
- } | {
8684
- from: "package";
8685
- name: (string | [string, ...(string)[]]);
8686
- package: string;
8687
- })[];
10597
+ // ----- vue/comma-style -----
10598
+ type VueCommaStyle = [] | [("first" | "last")] | [("first" | "last"), {
10599
+ exceptions?: {
10600
+ [k: string]: boolean | undefined;
10601
+ };
8688
10602
  }];
8689
- // ----- typescript/no-duplicate-type-constituents -----
8690
- type TypescriptNoDuplicateTypeConstituents = [] | [{
8691
- ignoreIntersections?: boolean;
8692
- ignoreUnions?: boolean;
10603
+ // ----- vue/comment-directive -----
10604
+ type VueCommentDirective = [] | [{
10605
+ reportUnusedDisableDirectives?: boolean;
10606
+ }];
10607
+ // ----- vue/component-api-style -----
10608
+ type VueComponentApiStyle = [] | [[("script-setup" | "composition" | "composition-vue2" | "options"), ...(("script-setup" | "composition" | "composition-vue2" | "options"))[]]];
10609
+ // ----- vue/component-definition-name-casing -----
10610
+ type VueComponentDefinitionNameCasing = [] | [("PascalCase" | "kebab-case")];
10611
+ // ----- vue/component-name-in-template-casing -----
10612
+ type VueComponentNameInTemplateCasing = [] | [("PascalCase" | "kebab-case")] | [("PascalCase" | "kebab-case"), {
10613
+ globals?: string[];
10614
+ ignores?: string[];
10615
+ registeredComponentsOnly?: boolean;
8693
10616
  }];
8694
- // ----- typescript/no-empty-function -----
8695
- type TypescriptNoEmptyFunction = [] | [{
8696
- allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "private-constructors" | "protected-constructors" | "asyncFunctions" | "asyncMethods" | "decoratedFunctions" | "overrideMethods")[];
10617
+ // ----- vue/component-options-name-casing -----
10618
+ type VueComponentOptionsNameCasing = [] | [("camelCase" | "kebab-case" | "PascalCase")];
10619
+ // ----- vue/custom-event-name-casing -----
10620
+ type VueCustomEventNameCasing = [] | [("kebab-case" | "camelCase")] | [("kebab-case" | "camelCase"), {
10621
+ ignores?: string[];
8697
10622
  }];
8698
- // ----- typescript/no-empty-interface -----
8699
- type TypescriptNoEmptyInterface = [] | [{
8700
- allowSingleExtends?: boolean;
10623
+ // ----- vue/define-emits-declaration -----
10624
+ type VueDefineEmitsDeclaration = [] | [("type-based" | "type-literal" | "runtime")];
10625
+ // ----- vue/define-macros-order -----
10626
+ type VueDefineMacrosOrder = [] | [{
10627
+ order?: string[];
10628
+ defineExposeLast?: boolean;
10629
+ }];
10630
+ // ----- vue/define-props-declaration -----
10631
+ type VueDefinePropsDeclaration = [] | [("type-based" | "runtime")];
10632
+ // ----- vue/define-props-destructuring -----
10633
+ type VueDefinePropsDestructuring = [] | [{
10634
+ destructure?: ("always" | "never");
10635
+ }];
10636
+ // ----- vue/dot-location -----
10637
+ type VueDotLocation = [] | [("object" | "property")];
10638
+ // ----- vue/dot-notation -----
10639
+ type VueDotNotation = [] | [{
10640
+ allowKeywords?: boolean;
10641
+ allowPattern?: string;
8701
10642
  }];
8702
- // ----- typescript/no-empty-object-type -----
8703
- type TypescriptNoEmptyObjectType = [] | [{
8704
- allowInterfaces?: ("always" | "never" | "with-single-extends");
8705
- allowObjectTypes?: ("always" | "never");
8706
- allowWithName?: string;
10643
+ // ----- vue/enforce-style-attribute -----
10644
+ type VueEnforceStyleAttribute = [] | [{
10645
+ allow?: [("plain" | "scoped" | "module"), ...(("plain" | "scoped" | "module"))[]];
8707
10646
  }];
8708
- // ----- typescript/no-explicit-any -----
8709
- type TypescriptNoExplicitAny = [] | [{
8710
- fixToUnknown?: boolean;
8711
- ignoreRestArgs?: boolean;
10647
+ // ----- vue/eqeqeq -----
10648
+ type VueEqeqeq = ([] | ["always"] | ["always", {
10649
+ null?: ("always" | "never" | "ignore");
10650
+ }] | [] | [("smart" | "allow-null")]);
10651
+ // ----- vue/first-attribute-linebreak -----
10652
+ type VueFirstAttributeLinebreak = [] | [{
10653
+ multiline?: ("below" | "beside" | "ignore");
10654
+ singleline?: ("below" | "beside" | "ignore");
8712
10655
  }];
8713
- // ----- typescript/no-extraneous-class -----
8714
- type TypescriptNoExtraneousClass = [] | [{
8715
- allowConstructorOnly?: boolean;
8716
- allowEmpty?: boolean;
8717
- allowStaticOnly?: boolean;
8718
- allowWithDecorator?: boolean;
10656
+ // ----- vue/func-call-spacing -----
10657
+ type VueFuncCallSpacing = ([] | ["never"] | [] | ["always"] | ["always", {
10658
+ allowNewlines?: boolean;
10659
+ }]);
10660
+ // ----- vue/html-button-has-type -----
10661
+ type VueHtmlButtonHasType = [] | [{
10662
+ button?: boolean;
10663
+ submit?: boolean;
10664
+ reset?: boolean;
10665
+ }];
10666
+ // ----- vue/html-closing-bracket-newline -----
10667
+ type VueHtmlClosingBracketNewline = [] | [{
10668
+ singleline?: ("always" | "never");
10669
+ multiline?: ("always" | "never");
10670
+ selfClosingTag?: {
10671
+ singleline?: ("always" | "never");
10672
+ multiline?: ("always" | "never");
10673
+ };
8719
10674
  }];
8720
- // ----- typescript/no-floating-promises -----
8721
- type TypescriptNoFloatingPromises = [] | [{
8722
- allowForKnownSafeCalls?: (string | {
8723
- from: "file";
8724
- name: (string | [string, ...(string)[]]);
8725
- path?: string;
8726
- } | {
8727
- from: "lib";
8728
- name: (string | [string, ...(string)[]]);
8729
- } | {
8730
- from: "package";
8731
- name: (string | [string, ...(string)[]]);
8732
- package: string;
8733
- })[];
8734
- allowForKnownSafePromises?: (string | {
8735
- from: "file";
8736
- name: (string | [string, ...(string)[]]);
8737
- path?: string;
8738
- } | {
8739
- from: "lib";
8740
- name: (string | [string, ...(string)[]]);
8741
- } | {
8742
- from: "package";
8743
- name: (string | [string, ...(string)[]]);
8744
- package: string;
10675
+ // ----- vue/html-closing-bracket-spacing -----
10676
+ type VueHtmlClosingBracketSpacing = [] | [{
10677
+ startTag?: ("always" | "never");
10678
+ endTag?: ("always" | "never");
10679
+ selfClosingTag?: ("always" | "never");
10680
+ }];
10681
+ // ----- vue/html-comment-content-newline -----
10682
+ type VueHtmlCommentContentNewline = [] | [(("always" | "never") | {
10683
+ singleline?: ("always" | "never" | "ignore");
10684
+ multiline?: ("always" | "never" | "ignore");
10685
+ })] | [(("always" | "never") | {
10686
+ singleline?: ("always" | "never" | "ignore");
10687
+ multiline?: ("always" | "never" | "ignore");
10688
+ }), {
10689
+ exceptions?: string[];
10690
+ }];
10691
+ // ----- vue/html-comment-content-spacing -----
10692
+ type VueHtmlCommentContentSpacing = [] | [("always" | "never")] | [("always" | "never"), {
10693
+ exceptions?: string[];
10694
+ }];
10695
+ // ----- vue/html-comment-indent -----
10696
+ type VueHtmlCommentIndent = [] | [(number | "tab")];
10697
+ // ----- vue/html-indent -----
10698
+ type VueHtmlIndent = [] | [(number | "tab")] | [(number | "tab"), {
10699
+ attribute?: number;
10700
+ baseIndent?: number;
10701
+ closeBracket?: (number | {
10702
+ startTag?: number;
10703
+ endTag?: number;
10704
+ selfClosingTag?: number;
10705
+ });
10706
+ switchCase?: number;
10707
+ alignAttributesVertically?: boolean;
10708
+ ignores?: (string & {
10709
+ [k: string]: unknown | undefined;
10710
+ } & {
10711
+ [k: string]: unknown | undefined;
8745
10712
  })[];
8746
- checkThenables?: boolean;
8747
- ignoreIIFE?: boolean;
8748
- ignoreVoid?: boolean;
8749
10713
  }];
8750
- // ----- typescript/no-inferrable-types -----
8751
- type TypescriptNoInferrableTypes = [] | [{
8752
- ignoreParameters?: boolean;
8753
- ignoreProperties?: boolean;
10714
+ // ----- vue/html-quotes -----
10715
+ type VueHtmlQuotes = [] | [("double" | "single")] | [("double" | "single"), {
10716
+ avoidEscape?: boolean;
10717
+ }];
10718
+ // ----- vue/html-self-closing -----
10719
+ type VueHtmlSelfClosing = [] | [{
10720
+ html?: {
10721
+ normal?: _VueHtmlSelfClosingOptionValue;
10722
+ void?: _VueHtmlSelfClosingOptionValue;
10723
+ component?: _VueHtmlSelfClosingOptionValue;
10724
+ };
10725
+ svg?: _VueHtmlSelfClosingOptionValue;
10726
+ math?: _VueHtmlSelfClosingOptionValue;
10727
+ }];
10728
+ type _VueHtmlSelfClosingOptionValue = ("always" | "never" | "any");
10729
+ // ----- vue/key-spacing -----
10730
+ type VueKeySpacing = [] | [({
10731
+ align?: (("colon" | "value") | {
10732
+ mode?: ("strict" | "minimum");
10733
+ on?: ("colon" | "value");
10734
+ beforeColon?: boolean;
10735
+ afterColon?: boolean;
10736
+ });
10737
+ mode?: ("strict" | "minimum");
10738
+ beforeColon?: boolean;
10739
+ afterColon?: boolean;
10740
+ } | {
10741
+ singleLine?: {
10742
+ mode?: ("strict" | "minimum");
10743
+ beforeColon?: boolean;
10744
+ afterColon?: boolean;
10745
+ };
10746
+ multiLine?: {
10747
+ align?: (("colon" | "value") | {
10748
+ mode?: ("strict" | "minimum");
10749
+ on?: ("colon" | "value");
10750
+ beforeColon?: boolean;
10751
+ afterColon?: boolean;
10752
+ });
10753
+ mode?: ("strict" | "minimum");
10754
+ beforeColon?: boolean;
10755
+ afterColon?: boolean;
10756
+ };
10757
+ } | {
10758
+ singleLine?: {
10759
+ mode?: ("strict" | "minimum");
10760
+ beforeColon?: boolean;
10761
+ afterColon?: boolean;
10762
+ };
10763
+ multiLine?: {
10764
+ mode?: ("strict" | "minimum");
10765
+ beforeColon?: boolean;
10766
+ afterColon?: boolean;
10767
+ };
10768
+ align?: {
10769
+ mode?: ("strict" | "minimum");
10770
+ on?: ("colon" | "value");
10771
+ beforeColon?: boolean;
10772
+ afterColon?: boolean;
10773
+ };
10774
+ })];
10775
+ // ----- vue/keyword-spacing -----
10776
+ type VueKeywordSpacing = [] | [{
10777
+ before?: boolean;
10778
+ after?: boolean;
10779
+ overrides?: {
10780
+ abstract?: {
10781
+ before?: boolean;
10782
+ after?: boolean;
10783
+ };
10784
+ as?: {
10785
+ before?: boolean;
10786
+ after?: boolean;
10787
+ };
10788
+ async?: {
10789
+ before?: boolean;
10790
+ after?: boolean;
10791
+ };
10792
+ await?: {
10793
+ before?: boolean;
10794
+ after?: boolean;
10795
+ };
10796
+ boolean?: {
10797
+ before?: boolean;
10798
+ after?: boolean;
10799
+ };
10800
+ break?: {
10801
+ before?: boolean;
10802
+ after?: boolean;
10803
+ };
10804
+ byte?: {
10805
+ before?: boolean;
10806
+ after?: boolean;
10807
+ };
10808
+ case?: {
10809
+ before?: boolean;
10810
+ after?: boolean;
10811
+ };
10812
+ catch?: {
10813
+ before?: boolean;
10814
+ after?: boolean;
10815
+ };
10816
+ char?: {
10817
+ before?: boolean;
10818
+ after?: boolean;
10819
+ };
10820
+ class?: {
10821
+ before?: boolean;
10822
+ after?: boolean;
10823
+ };
10824
+ const?: {
10825
+ before?: boolean;
10826
+ after?: boolean;
10827
+ };
10828
+ continue?: {
10829
+ before?: boolean;
10830
+ after?: boolean;
10831
+ };
10832
+ debugger?: {
10833
+ before?: boolean;
10834
+ after?: boolean;
10835
+ };
10836
+ default?: {
10837
+ before?: boolean;
10838
+ after?: boolean;
10839
+ };
10840
+ delete?: {
10841
+ before?: boolean;
10842
+ after?: boolean;
10843
+ };
10844
+ do?: {
10845
+ before?: boolean;
10846
+ after?: boolean;
10847
+ };
10848
+ double?: {
10849
+ before?: boolean;
10850
+ after?: boolean;
10851
+ };
10852
+ else?: {
10853
+ before?: boolean;
10854
+ after?: boolean;
10855
+ };
10856
+ enum?: {
10857
+ before?: boolean;
10858
+ after?: boolean;
10859
+ };
10860
+ export?: {
10861
+ before?: boolean;
10862
+ after?: boolean;
10863
+ };
10864
+ extends?: {
10865
+ before?: boolean;
10866
+ after?: boolean;
10867
+ };
10868
+ false?: {
10869
+ before?: boolean;
10870
+ after?: boolean;
10871
+ };
10872
+ final?: {
10873
+ before?: boolean;
10874
+ after?: boolean;
10875
+ };
10876
+ finally?: {
10877
+ before?: boolean;
10878
+ after?: boolean;
10879
+ };
10880
+ float?: {
10881
+ before?: boolean;
10882
+ after?: boolean;
10883
+ };
10884
+ for?: {
10885
+ before?: boolean;
10886
+ after?: boolean;
10887
+ };
10888
+ from?: {
10889
+ before?: boolean;
10890
+ after?: boolean;
10891
+ };
10892
+ function?: {
10893
+ before?: boolean;
10894
+ after?: boolean;
10895
+ };
10896
+ get?: {
10897
+ before?: boolean;
10898
+ after?: boolean;
10899
+ };
10900
+ goto?: {
10901
+ before?: boolean;
10902
+ after?: boolean;
10903
+ };
10904
+ if?: {
10905
+ before?: boolean;
10906
+ after?: boolean;
10907
+ };
10908
+ implements?: {
10909
+ before?: boolean;
10910
+ after?: boolean;
10911
+ };
10912
+ import?: {
10913
+ before?: boolean;
10914
+ after?: boolean;
10915
+ };
10916
+ in?: {
10917
+ before?: boolean;
10918
+ after?: boolean;
10919
+ };
10920
+ instanceof?: {
10921
+ before?: boolean;
10922
+ after?: boolean;
10923
+ };
10924
+ int?: {
10925
+ before?: boolean;
10926
+ after?: boolean;
10927
+ };
10928
+ interface?: {
10929
+ before?: boolean;
10930
+ after?: boolean;
10931
+ };
10932
+ let?: {
10933
+ before?: boolean;
10934
+ after?: boolean;
10935
+ };
10936
+ long?: {
10937
+ before?: boolean;
10938
+ after?: boolean;
10939
+ };
10940
+ native?: {
10941
+ before?: boolean;
10942
+ after?: boolean;
10943
+ };
10944
+ new?: {
10945
+ before?: boolean;
10946
+ after?: boolean;
10947
+ };
10948
+ null?: {
10949
+ before?: boolean;
10950
+ after?: boolean;
10951
+ };
10952
+ of?: {
10953
+ before?: boolean;
10954
+ after?: boolean;
10955
+ };
10956
+ package?: {
10957
+ before?: boolean;
10958
+ after?: boolean;
10959
+ };
10960
+ private?: {
10961
+ before?: boolean;
10962
+ after?: boolean;
10963
+ };
10964
+ protected?: {
10965
+ before?: boolean;
10966
+ after?: boolean;
10967
+ };
10968
+ public?: {
10969
+ before?: boolean;
10970
+ after?: boolean;
10971
+ };
10972
+ return?: {
10973
+ before?: boolean;
10974
+ after?: boolean;
10975
+ };
10976
+ set?: {
10977
+ before?: boolean;
10978
+ after?: boolean;
10979
+ };
10980
+ short?: {
10981
+ before?: boolean;
10982
+ after?: boolean;
10983
+ };
10984
+ static?: {
10985
+ before?: boolean;
10986
+ after?: boolean;
10987
+ };
10988
+ super?: {
10989
+ before?: boolean;
10990
+ after?: boolean;
10991
+ };
10992
+ switch?: {
10993
+ before?: boolean;
10994
+ after?: boolean;
10995
+ };
10996
+ synchronized?: {
10997
+ before?: boolean;
10998
+ after?: boolean;
10999
+ };
11000
+ this?: {
11001
+ before?: boolean;
11002
+ after?: boolean;
11003
+ };
11004
+ throw?: {
11005
+ before?: boolean;
11006
+ after?: boolean;
11007
+ };
11008
+ throws?: {
11009
+ before?: boolean;
11010
+ after?: boolean;
11011
+ };
11012
+ transient?: {
11013
+ before?: boolean;
11014
+ after?: boolean;
11015
+ };
11016
+ true?: {
11017
+ before?: boolean;
11018
+ after?: boolean;
11019
+ };
11020
+ try?: {
11021
+ before?: boolean;
11022
+ after?: boolean;
11023
+ };
11024
+ typeof?: {
11025
+ before?: boolean;
11026
+ after?: boolean;
11027
+ };
11028
+ var?: {
11029
+ before?: boolean;
11030
+ after?: boolean;
11031
+ };
11032
+ void?: {
11033
+ before?: boolean;
11034
+ after?: boolean;
11035
+ };
11036
+ volatile?: {
11037
+ before?: boolean;
11038
+ after?: boolean;
11039
+ };
11040
+ while?: {
11041
+ before?: boolean;
11042
+ after?: boolean;
11043
+ };
11044
+ with?: {
11045
+ before?: boolean;
11046
+ after?: boolean;
11047
+ };
11048
+ yield?: {
11049
+ before?: boolean;
11050
+ after?: boolean;
11051
+ };
11052
+ };
8754
11053
  }];
8755
- // ----- typescript/no-invalid-this -----
8756
- type TypescriptNoInvalidThis = [] | [{
8757
- capIsConstructor?: boolean;
11054
+ // ----- vue/match-component-file-name -----
11055
+ type VueMatchComponentFileName = [] | [{
11056
+ extensions?: string[];
11057
+ shouldMatchCase?: boolean;
8758
11058
  }];
8759
- // ----- typescript/no-invalid-void-type -----
8760
- type TypescriptNoInvalidVoidType = [] | [{
8761
- allowAsThisParameter?: boolean;
8762
- allowInGenericTypeArguments?: (boolean | [string, ...(string)[]]);
11059
+ // ----- vue/max-attributes-per-line -----
11060
+ type VueMaxAttributesPerLine = [] | [{
11061
+ singleline?: (number | {
11062
+ max?: number;
11063
+ });
11064
+ multiline?: (number | {
11065
+ max?: number;
11066
+ });
8763
11067
  }];
8764
- // ----- typescript/no-magic-numbers -----
8765
- type TypescriptNoMagicNumbers = [] | [{
8766
- detectObjects?: boolean;
8767
- enforceConst?: boolean;
8768
- ignore?: (number | string)[];
8769
- ignoreArrayIndexes?: boolean;
8770
- ignoreDefaultValues?: boolean;
8771
- ignoreClassFieldInitialValues?: boolean;
8772
- ignoreEnums?: boolean;
8773
- ignoreNumericLiteralTypes?: boolean;
8774
- ignoreReadonlyClassProperties?: boolean;
8775
- ignoreTypeIndexes?: boolean;
11068
+ // ----- vue/max-len -----
11069
+ type VueMaxLen = [] | [({
11070
+ code?: number;
11071
+ template?: number;
11072
+ comments?: number;
11073
+ tabWidth?: number;
11074
+ ignorePattern?: string;
11075
+ ignoreComments?: boolean;
11076
+ ignoreTrailingComments?: boolean;
11077
+ ignoreUrls?: boolean;
11078
+ ignoreStrings?: boolean;
11079
+ ignoreTemplateLiterals?: boolean;
11080
+ ignoreRegExpLiterals?: boolean;
11081
+ ignoreHTMLAttributeValues?: boolean;
11082
+ ignoreHTMLTextContents?: boolean;
11083
+ } | number)] | [({
11084
+ code?: number;
11085
+ template?: number;
11086
+ comments?: number;
11087
+ tabWidth?: number;
11088
+ ignorePattern?: string;
11089
+ ignoreComments?: boolean;
11090
+ ignoreTrailingComments?: boolean;
11091
+ ignoreUrls?: boolean;
11092
+ ignoreStrings?: boolean;
11093
+ ignoreTemplateLiterals?: boolean;
11094
+ ignoreRegExpLiterals?: boolean;
11095
+ ignoreHTMLAttributeValues?: boolean;
11096
+ ignoreHTMLTextContents?: boolean;
11097
+ } | number), ({
11098
+ code?: number;
11099
+ template?: number;
11100
+ comments?: number;
11101
+ tabWidth?: number;
11102
+ ignorePattern?: string;
11103
+ ignoreComments?: boolean;
11104
+ ignoreTrailingComments?: boolean;
11105
+ ignoreUrls?: boolean;
11106
+ ignoreStrings?: boolean;
11107
+ ignoreTemplateLiterals?: boolean;
11108
+ ignoreRegExpLiterals?: boolean;
11109
+ ignoreHTMLAttributeValues?: boolean;
11110
+ ignoreHTMLTextContents?: boolean;
11111
+ } | number)] | [({
11112
+ code?: number;
11113
+ template?: number;
11114
+ comments?: number;
11115
+ tabWidth?: number;
11116
+ ignorePattern?: string;
11117
+ ignoreComments?: boolean;
11118
+ ignoreTrailingComments?: boolean;
11119
+ ignoreUrls?: boolean;
11120
+ ignoreStrings?: boolean;
11121
+ ignoreTemplateLiterals?: boolean;
11122
+ ignoreRegExpLiterals?: boolean;
11123
+ ignoreHTMLAttributeValues?: boolean;
11124
+ ignoreHTMLTextContents?: boolean;
11125
+ } | number), ({
11126
+ code?: number;
11127
+ template?: number;
11128
+ comments?: number;
11129
+ tabWidth?: number;
11130
+ ignorePattern?: string;
11131
+ ignoreComments?: boolean;
11132
+ ignoreTrailingComments?: boolean;
11133
+ ignoreUrls?: boolean;
11134
+ ignoreStrings?: boolean;
11135
+ ignoreTemplateLiterals?: boolean;
11136
+ ignoreRegExpLiterals?: boolean;
11137
+ ignoreHTMLAttributeValues?: boolean;
11138
+ ignoreHTMLTextContents?: boolean;
11139
+ } | number), {
11140
+ code?: number;
11141
+ template?: number;
11142
+ comments?: number;
11143
+ tabWidth?: number;
11144
+ ignorePattern?: string;
11145
+ ignoreComments?: boolean;
11146
+ ignoreTrailingComments?: boolean;
11147
+ ignoreUrls?: boolean;
11148
+ ignoreStrings?: boolean;
11149
+ ignoreTemplateLiterals?: boolean;
11150
+ ignoreRegExpLiterals?: boolean;
11151
+ ignoreHTMLAttributeValues?: boolean;
11152
+ ignoreHTMLTextContents?: boolean;
11153
+ }];
11154
+ // ----- vue/max-lines-per-block -----
11155
+ type VueMaxLinesPerBlock = [] | [{
11156
+ style?: number;
11157
+ template?: number;
11158
+ script?: number;
11159
+ skipBlankLines?: boolean;
8776
11160
  }];
8777
- // ----- typescript/no-meaningless-void-operator -----
8778
- type TypescriptNoMeaninglessVoidOperator = [] | [{
8779
- checkNever?: boolean;
11161
+ // ----- vue/max-props -----
11162
+ type VueMaxProps = [] | [{
11163
+ maxProps?: number;
8780
11164
  }];
8781
- // ----- typescript/no-misused-promises -----
8782
- type TypescriptNoMisusedPromises = [] | [{
8783
- checksConditionals?: boolean;
8784
- checksSpreads?: boolean;
8785
- checksVoidReturn?: (boolean | {
8786
- arguments?: boolean;
8787
- attributes?: boolean;
8788
- inheritedMethods?: boolean;
8789
- properties?: boolean;
8790
- returns?: boolean;
8791
- variables?: boolean;
8792
- });
11165
+ // ----- vue/max-template-depth -----
11166
+ type VueMaxTemplateDepth = [] | [{
11167
+ maxDepth?: number;
8793
11168
  }];
8794
- // ----- typescript/no-misused-spread -----
8795
- type TypescriptNoMisusedSpread = [] | [{
8796
- allow?: (string | {
8797
- from: "file";
8798
- name: (string | [string, ...(string)[]]);
8799
- path?: string;
8800
- } | {
8801
- from: "lib";
8802
- name: (string | [string, ...(string)[]]);
8803
- } | {
8804
- from: "package";
8805
- name: (string | [string, ...(string)[]]);
8806
- package: string;
8807
- })[];
11169
+ // ----- vue/multi-word-component-names -----
11170
+ type VueMultiWordComponentNames = [] | [{
11171
+ ignores?: string[];
8808
11172
  }];
8809
- // ----- typescript/no-namespace -----
8810
- type TypescriptNoNamespace = [] | [{
8811
- allowDeclarations?: boolean;
8812
- allowDefinitionFiles?: boolean;
11173
+ // ----- vue/multiline-html-element-content-newline -----
11174
+ type VueMultilineHtmlElementContentNewline = [] | [{
11175
+ ignoreWhenEmpty?: boolean;
11176
+ ignores?: string[];
11177
+ allowEmptyLines?: boolean;
11178
+ }];
11179
+ // ----- vue/multiline-ternary -----
11180
+ type VueMultilineTernary = [] | [("always" | "always-multiline" | "never")];
11181
+ // ----- vue/mustache-interpolation-spacing -----
11182
+ type VueMustacheInterpolationSpacing = [] | [("always" | "never")];
11183
+ // ----- vue/new-line-between-multi-line-property -----
11184
+ type VueNewLineBetweenMultiLineProperty = [] | [{
11185
+ minLineOfMultilineProperty?: number;
11186
+ }];
11187
+ // ----- vue/next-tick-style -----
11188
+ type VueNextTickStyle = [] | [("promise" | "callback")];
11189
+ // ----- vue/no-async-in-computed-properties -----
11190
+ type VueNoAsyncInComputedProperties = [] | [{
11191
+ ignoredObjectNames?: string[];
11192
+ }];
11193
+ // ----- vue/no-bare-strings-in-template -----
11194
+ type VueNoBareStringsInTemplate = [] | [{
11195
+ allowlist?: string[];
11196
+ attributes?: {
11197
+ [k: string]: string[];
11198
+ };
11199
+ directives?: string[];
8813
11200
  }];
8814
- // ----- typescript/no-redeclare -----
8815
- type TypescriptNoRedeclare = [] | [{
8816
- builtinGlobals?: boolean;
8817
- ignoreDeclarationMerge?: boolean;
11201
+ // ----- vue/no-boolean-default -----
11202
+ type VueNoBooleanDefault = [] | [("default-false" | "no-default")];
11203
+ // ----- vue/no-child-content -----
11204
+ type VueNoChildContent = [] | [{
11205
+ additionalDirectives: [string, ...(string)[]];
8818
11206
  }];
8819
- // ----- typescript/no-require-imports -----
8820
- type TypescriptNoRequireImports = [] | [{
8821
- allow?: string[];
8822
- allowAsImport?: boolean;
11207
+ // ----- vue/no-console -----
11208
+ type VueNoConsole = [] | [{
11209
+ allow?: [string, ...(string)[]];
8823
11210
  }];
8824
- // ----- typescript/no-restricted-imports -----
8825
- type TypescriptNoRestrictedImports = ((string | {
8826
- name: string;
8827
- message?: string;
8828
- importNames?: string[];
8829
- allowImportNames?: string[];
8830
- allowTypeImports?: boolean;
8831
- })[] | [] | [{
8832
- paths?: (string | {
8833
- name: string;
8834
- message?: string;
8835
- importNames?: string[];
8836
- allowImportNames?: string[];
8837
- allowTypeImports?: boolean;
8838
- })[];
8839
- patterns?: (string[] | {
8840
- importNames?: [string, ...(string)[]];
8841
- allowImportNames?: [string, ...(string)[]];
8842
- group?: [string, ...(string)[]];
8843
- regex?: string;
8844
- importNamePattern?: string;
8845
- allowImportNamePattern?: string;
8846
- message?: string;
8847
- caseSensitive?: boolean;
8848
- allowTypeImports?: boolean;
8849
- }[]);
8850
- }]);
8851
- // ----- typescript/no-restricted-types -----
8852
- type TypescriptNoRestrictedTypes = [] | [{
8853
- types?: {
8854
- [k: string]: (true | string | {
8855
- fixWith?: string;
8856
- message?: string;
8857
- suggest?: string[];
8858
- }) | undefined;
8859
- };
11211
+ // ----- vue/no-constant-condition -----
11212
+ type VueNoConstantCondition = [] | [{
11213
+ checkLoops?: ("all" | "allExceptWhileTrue" | "none" | true | false);
8860
11214
  }];
8861
- // ----- typescript/no-shadow -----
8862
- type TypescriptNoShadow = [] | [{
8863
- allow?: string[];
8864
- builtinGlobals?: boolean;
8865
- hoist?: ("all" | "functions" | "functions-and-types" | "never" | "types");
8866
- ignoreFunctionTypeParameterNameValueShadow?: boolean;
8867
- ignoreOnInitialization?: boolean;
8868
- ignoreTypeValueShadow?: boolean;
11215
+ // ----- vue/no-deprecated-model-definition -----
11216
+ type VueNoDeprecatedModelDefinition = [] | [{
11217
+ allowVue3Compat?: boolean;
8869
11218
  }];
8870
- // ----- typescript/no-this-alias -----
8871
- type TypescriptNoThisAlias = [] | [{
8872
- allowDestructuring?: boolean;
8873
- allowedNames?: string[];
11219
+ // ----- vue/no-deprecated-router-link-tag-prop -----
11220
+ type VueNoDeprecatedRouterLinkTagProp = [] | [{
11221
+ components?: [string, ...(string)[]];
8874
11222
  }];
8875
- // ----- typescript/no-type-alias -----
8876
- type TypescriptNoTypeAlias = [] | [{
8877
- allowAliases?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections");
8878
- allowCallbacks?: ("always" | "never");
8879
- allowConditionalTypes?: ("always" | "never");
8880
- allowConstructors?: ("always" | "never");
8881
- allowGenerics?: ("always" | "never");
8882
- allowLiterals?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections");
8883
- allowMappedTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections");
8884
- allowTupleTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections");
11223
+ // ----- vue/no-deprecated-slot-attribute -----
11224
+ type VueNoDeprecatedSlotAttribute = [] | [{
11225
+ ignore?: string[];
11226
+ ignoreParents?: string[];
8885
11227
  }];
8886
- // ----- typescript/no-unnecessary-boolean-literal-compare -----
8887
- type TypescriptNoUnnecessaryBooleanLiteralCompare = [] | [{
8888
- allowComparingNullableBooleansToFalse?: boolean;
8889
- allowComparingNullableBooleansToTrue?: boolean;
8890
- allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
11228
+ // ----- vue/no-dupe-keys -----
11229
+ type VueNoDupeKeys = [] | [{
11230
+ groups?: unknown[];
8891
11231
  }];
8892
- // ----- typescript/no-unnecessary-condition -----
8893
- type TypescriptNoUnnecessaryCondition = [] | [{
8894
- allowConstantLoopConditions?: (boolean | ("always" | "never" | "only-allowed-literals"));
8895
- allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
8896
- checkTypePredicates?: boolean;
11232
+ // ----- vue/no-duplicate-attr-inheritance -----
11233
+ type VueNoDuplicateAttrInheritance = [] | [{
11234
+ checkMultiRootNodes?: boolean;
8897
11235
  }];
8898
- // ----- typescript/no-unnecessary-type-assertion -----
8899
- type TypescriptNoUnnecessaryTypeAssertion = [] | [{
8900
- checkLiteralConstAssertions?: boolean;
8901
- typesToIgnore?: string[];
11236
+ // ----- vue/no-duplicate-attributes -----
11237
+ type VueNoDuplicateAttributes = [] | [{
11238
+ allowCoexistClass?: boolean;
11239
+ allowCoexistStyle?: boolean;
8902
11240
  }];
8903
- // ----- typescript/no-unused-expressions -----
8904
- type TypescriptNoUnusedExpressions = [] | [{
8905
- allowShortCircuit?: boolean;
8906
- allowTernary?: boolean;
8907
- allowTaggedTemplates?: boolean;
8908
- enforceForJSX?: boolean;
8909
- ignoreDirectives?: boolean;
11241
+ // ----- vue/no-empty-pattern -----
11242
+ type VueNoEmptyPattern = [] | [{
11243
+ allowObjectPatternsAsParameters?: boolean;
8910
11244
  }];
8911
- // ----- typescript/no-unused-vars -----
8912
- type TypescriptNoUnusedVars = [] | [(("all" | "local") | {
8913
- args?: ("all" | "after-used" | "none");
8914
- argsIgnorePattern?: string;
8915
- caughtErrors?: ("all" | "none");
8916
- caughtErrorsIgnorePattern?: string;
8917
- destructuredArrayIgnorePattern?: string;
8918
- ignoreClassWithStaticInitBlock?: boolean;
8919
- ignoreRestSiblings?: boolean;
8920
- reportUsedIgnorePattern?: boolean;
8921
- vars?: ("all" | "local");
8922
- varsIgnorePattern?: string;
8923
- })];
8924
- // ----- typescript/no-use-before-define -----
8925
- type TypescriptNoUseBeforeDefine = [] | [("nofunc" | {
8926
- allowNamedExports?: boolean;
8927
- classes?: boolean;
8928
- enums?: boolean;
8929
- functions?: boolean;
8930
- ignoreTypeReferences?: boolean;
8931
- typedefs?: boolean;
8932
- variables?: boolean;
8933
- })];
8934
- // ----- typescript/no-var-requires -----
8935
- type TypescriptNoVarRequires = [] | [{
8936
- allow?: string[];
11245
+ // ----- vue/no-extra-parens -----
11246
+ type VueNoExtraParens = ([] | ["functions"] | [] | ["all"] | ["all", {
11247
+ conditionalAssign?: boolean;
11248
+ ternaryOperandBinaryExpressions?: boolean;
11249
+ nestedBinaryExpressions?: boolean;
11250
+ returnAssign?: boolean;
11251
+ ignoreJSX?: ("none" | "all" | "single-line" | "multi-line");
11252
+ enforceForArrowConditionals?: boolean;
11253
+ enforceForSequenceExpressions?: boolean;
11254
+ enforceForNewInMemberExpressions?: boolean;
11255
+ enforceForFunctionPrototypeMethods?: boolean;
11256
+ allowParensAfterCommentPattern?: string;
11257
+ }]);
11258
+ // ----- vue/no-implicit-coercion -----
11259
+ type VueNoImplicitCoercion = [] | [{
11260
+ boolean?: boolean;
11261
+ number?: boolean;
11262
+ string?: boolean;
11263
+ disallowTemplateShorthand?: boolean;
11264
+ allow?: ("~" | "!!" | "+" | "- -" | "-" | "*")[];
8937
11265
  }];
8938
- // ----- typescript/only-throw-error -----
8939
- type TypescriptOnlyThrowError = [] | [{
8940
- allow?: (string | {
8941
- from: "file";
8942
- name: (string | [string, ...(string)[]]);
8943
- path?: string;
8944
- } | {
8945
- from: "lib";
8946
- name: (string | [string, ...(string)[]]);
8947
- } | {
8948
- from: "package";
8949
- name: (string | [string, ...(string)[]]);
8950
- package: string;
8951
- })[];
8952
- allowRethrowing?: boolean;
8953
- allowThrowingAny?: boolean;
8954
- allowThrowingUnknown?: boolean;
11266
+ // ----- vue/no-irregular-whitespace -----
11267
+ type VueNoIrregularWhitespace = [] | [{
11268
+ skipComments?: boolean;
11269
+ skipStrings?: boolean;
11270
+ skipTemplates?: boolean;
11271
+ skipRegExps?: boolean;
11272
+ skipHTMLAttributeValues?: boolean;
11273
+ skipHTMLTextContents?: boolean;
8955
11274
  }];
8956
- // ----- typescript/parameter-properties -----
8957
- type TypescriptParameterProperties = [] | [{
8958
- allow?: ("readonly" | "private" | "protected" | "public" | "private readonly" | "protected readonly" | "public readonly")[];
8959
- prefer?: ("class-property" | "parameter-property");
11275
+ // ----- vue/no-lone-template -----
11276
+ type VueNoLoneTemplate = [] | [{
11277
+ ignoreAccessible?: boolean;
8960
11278
  }];
8961
- // ----- typescript/prefer-destructuring -----
8962
- type TypescriptPreferDestructuring = [] | [({
8963
- AssignmentExpression?: {
8964
- array?: boolean;
8965
- object?: boolean;
8966
- };
8967
- VariableDeclarator?: {
8968
- array?: boolean;
8969
- object?: boolean;
8970
- };
8971
- } | {
8972
- array?: boolean;
8973
- object?: boolean;
8974
- })] | [({
8975
- AssignmentExpression?: {
8976
- array?: boolean;
8977
- object?: boolean;
8978
- };
8979
- VariableDeclarator?: {
8980
- array?: boolean;
8981
- object?: boolean;
8982
- };
8983
- } | {
8984
- array?: boolean;
8985
- object?: boolean;
8986
- }), {
8987
- enforceForDeclarationWithTypeAnnotation?: boolean;
8988
- enforceForRenamedProperties?: boolean;
11279
+ // ----- vue/no-multi-spaces -----
11280
+ type VueNoMultiSpaces = [] | [{
11281
+ ignoreProperties?: boolean;
11282
+ }];
11283
+ // ----- vue/no-multiple-template-root -----
11284
+ type VueNoMultipleTemplateRoot = [] | [{
11285
+ disallowComments?: boolean;
11286
+ }];
11287
+ // ----- vue/no-mutating-props -----
11288
+ type VueNoMutatingProps = [] | [{
11289
+ shallowOnly?: boolean;
11290
+ }];
11291
+ // ----- vue/no-parsing-error -----
11292
+ type VueNoParsingError = [] | [{
11293
+ "abrupt-closing-of-empty-comment"?: boolean;
11294
+ "absence-of-digits-in-numeric-character-reference"?: boolean;
11295
+ "cdata-in-html-content"?: boolean;
11296
+ "character-reference-outside-unicode-range"?: boolean;
11297
+ "control-character-in-input-stream"?: boolean;
11298
+ "control-character-reference"?: boolean;
11299
+ "eof-before-tag-name"?: boolean;
11300
+ "eof-in-cdata"?: boolean;
11301
+ "eof-in-comment"?: boolean;
11302
+ "eof-in-tag"?: boolean;
11303
+ "incorrectly-closed-comment"?: boolean;
11304
+ "incorrectly-opened-comment"?: boolean;
11305
+ "invalid-first-character-of-tag-name"?: boolean;
11306
+ "missing-attribute-value"?: boolean;
11307
+ "missing-end-tag-name"?: boolean;
11308
+ "missing-semicolon-after-character-reference"?: boolean;
11309
+ "missing-whitespace-between-attributes"?: boolean;
11310
+ "nested-comment"?: boolean;
11311
+ "noncharacter-character-reference"?: boolean;
11312
+ "noncharacter-in-input-stream"?: boolean;
11313
+ "null-character-reference"?: boolean;
11314
+ "surrogate-character-reference"?: boolean;
11315
+ "surrogate-in-input-stream"?: boolean;
11316
+ "unexpected-character-in-attribute-name"?: boolean;
11317
+ "unexpected-character-in-unquoted-attribute-value"?: boolean;
11318
+ "unexpected-equals-sign-before-attribute-name"?: boolean;
11319
+ "unexpected-null-character"?: boolean;
11320
+ "unexpected-question-mark-instead-of-tag-name"?: boolean;
11321
+ "unexpected-solidus-in-tag"?: boolean;
11322
+ "unknown-named-character-reference"?: boolean;
11323
+ "end-tag-with-attributes"?: boolean;
11324
+ "duplicate-attribute"?: boolean;
11325
+ "end-tag-with-trailing-solidus"?: boolean;
11326
+ "non-void-html-element-start-tag-with-trailing-solidus"?: boolean;
11327
+ "x-invalid-end-tag"?: boolean;
11328
+ "x-invalid-namespace"?: boolean;
11329
+ }];
11330
+ // ----- vue/no-potential-component-option-typo -----
11331
+ type VueNoPotentialComponentOptionTypo = [] | [{
11332
+ presets?: ("all" | "vue" | "vue-router" | "nuxt")[];
11333
+ custom?: string[];
11334
+ threshold?: number;
11335
+ }];
11336
+ // ----- vue/no-required-prop-with-default -----
11337
+ type VueNoRequiredPropWithDefault = [] | [{
11338
+ autofix?: boolean;
11339
+ }];
11340
+ // ----- vue/no-reserved-component-names -----
11341
+ type VueNoReservedComponentNames = [] | [{
11342
+ disallowVueBuiltInComponents?: boolean;
11343
+ disallowVue3BuiltInComponents?: boolean;
11344
+ htmlElementCaseSensitive?: boolean;
11345
+ }];
11346
+ // ----- vue/no-reserved-keys -----
11347
+ type VueNoReservedKeys = [] | [{
11348
+ reserved?: unknown[];
11349
+ groups?: unknown[];
11350
+ }];
11351
+ // ----- vue/no-reserved-props -----
11352
+ type VueNoReservedProps = [] | [{
11353
+ vueVersion?: (2 | 3);
11354
+ }];
11355
+ // ----- vue/no-restricted-block -----
11356
+ type VueNoRestrictedBlock = (string | {
11357
+ element: string;
11358
+ message?: string;
11359
+ })[];
11360
+ // ----- vue/no-restricted-call-after-await -----
11361
+ type VueNoRestrictedCallAfterAwait = {
11362
+ module: string;
11363
+ path?: (string | string[]);
11364
+ message?: string;
11365
+ }[];
11366
+ // ----- vue/no-restricted-class -----
11367
+ type VueNoRestrictedClass = string[];
11368
+ // ----- vue/no-restricted-component-names -----
11369
+ type VueNoRestrictedComponentNames = (string | {
11370
+ name: string;
11371
+ message?: string;
11372
+ suggest?: string;
11373
+ })[];
11374
+ // ----- vue/no-restricted-component-options -----
11375
+ type VueNoRestrictedComponentOptions = (string | string[] | {
11376
+ name: (string | string[]);
11377
+ message?: string;
11378
+ })[];
11379
+ // ----- vue/no-restricted-custom-event -----
11380
+ type VueNoRestrictedCustomEvent = (string | {
11381
+ event: string;
11382
+ message?: string;
11383
+ suggest?: string;
11384
+ })[];
11385
+ // ----- vue/no-restricted-html-elements -----
11386
+ type VueNoRestrictedHtmlElements = (string | {
11387
+ element: (string | string[]);
11388
+ message?: string;
11389
+ })[];
11390
+ // ----- vue/no-restricted-props -----
11391
+ type VueNoRestrictedProps = (string | {
11392
+ name: string;
11393
+ message?: string;
11394
+ suggest?: string;
11395
+ })[];
11396
+ // ----- vue/no-restricted-static-attribute -----
11397
+ type VueNoRestrictedStaticAttribute = (string | {
11398
+ key: string;
11399
+ value?: (string | true);
11400
+ element?: string;
11401
+ message?: string;
11402
+ })[];
11403
+ // ----- vue/no-restricted-syntax -----
11404
+ type VueNoRestrictedSyntax = (string | {
11405
+ selector: string;
11406
+ message?: string;
11407
+ })[];
11408
+ // ----- vue/no-restricted-v-bind -----
11409
+ type VueNoRestrictedVBind = ((string | null) | {
11410
+ argument: (string | null);
11411
+ modifiers?: ("prop" | "camel" | "sync" | "attr")[];
11412
+ element?: string;
11413
+ message?: string;
11414
+ })[];
11415
+ // ----- vue/no-restricted-v-on -----
11416
+ type VueNoRestrictedVOn = ((string | null) | {
11417
+ argument: (string | null);
11418
+ element?: string;
11419
+ message?: string;
11420
+ modifiers?: [("prevent" | "stop" | "capture" | "self" | "once" | "passive"), ...(("prevent" | "stop" | "capture" | "self" | "once" | "passive"))[]];
11421
+ })[];
11422
+ // ----- vue/no-static-inline-styles -----
11423
+ type VueNoStaticInlineStyles = [] | [{
11424
+ allowBinding?: boolean;
8989
11425
  }];
8990
- // ----- typescript/prefer-literal-enum-member -----
8991
- type TypescriptPreferLiteralEnumMember = [] | [{
8992
- allowBitwiseExpressions?: boolean;
11426
+ // ----- vue/no-template-shadow -----
11427
+ type VueNoTemplateShadow = [] | [{
11428
+ allow?: string[];
8993
11429
  }];
8994
- // ----- typescript/prefer-nullish-coalescing -----
8995
- type TypescriptPreferNullishCoalescing = [] | [{
8996
- allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
8997
- ignoreBooleanCoercion?: boolean;
8998
- ignoreConditionalTests?: boolean;
8999
- ignoreIfStatements?: boolean;
9000
- ignoreMixedLogicalExpressions?: boolean;
9001
- ignorePrimitives?: ({
9002
- bigint?: boolean;
9003
- boolean?: boolean;
9004
- number?: boolean;
9005
- string?: boolean;
9006
- } | true);
9007
- ignoreTernaryTests?: boolean;
11430
+ // ----- vue/no-template-target-blank -----
11431
+ type VueNoTemplateTargetBlank = [] | [{
11432
+ allowReferrer?: boolean;
11433
+ enforceDynamicLinks?: ("always" | "never");
9008
11434
  }];
9009
- // ----- typescript/prefer-optional-chain -----
9010
- type TypescriptPreferOptionalChain = [] | [{
9011
- allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean;
9012
- checkAny?: boolean;
9013
- checkBigInt?: boolean;
9014
- checkBoolean?: boolean;
9015
- checkNumber?: boolean;
9016
- checkString?: boolean;
9017
- checkUnknown?: boolean;
9018
- requireNullish?: boolean;
11435
+ // ----- vue/no-undef-components -----
11436
+ type VueNoUndefComponents = [] | [{
11437
+ ignorePatterns?: unknown[];
9019
11438
  }];
9020
- // ----- typescript/prefer-promise-reject-errors -----
9021
- type TypescriptPreferPromiseRejectErrors = [] | [{
9022
- allowEmptyReject?: boolean;
9023
- allowThrowingAny?: boolean;
9024
- allowThrowingUnknown?: boolean;
11439
+ // ----- vue/no-undef-properties -----
11440
+ type VueNoUndefProperties = [] | [{
11441
+ ignores?: string[];
9025
11442
  }];
9026
- // ----- typescript/prefer-readonly -----
9027
- type TypescriptPreferReadonly = [] | [{
9028
- onlyInlineLambdas?: boolean;
11443
+ // ----- vue/no-unsupported-features -----
11444
+ type VueNoUnsupportedFeatures = [] | [{
11445
+ version?: string;
11446
+ ignores?: ("slot-scope-attribute" | "dynamic-directive-arguments" | "v-slot" | "script-setup" | "style-css-vars-injection" | "v-model-argument" | "v-model-custom-modifiers" | "v-is" | "is-attribute-with-vue-prefix" | "v-memo" | "v-bind-prop-modifier-shorthand" | "v-bind-attr-modifier" | "define-options" | "define-slots" | "define-model" | "v-bind-same-name-shorthand")[];
9029
11447
  }];
9030
- // ----- typescript/prefer-readonly-parameter-types -----
9031
- type TypescriptPreferReadonlyParameterTypes = [] | [{
9032
- allow?: (string | {
9033
- from: "file";
9034
- name: (string | [string, ...(string)[]]);
9035
- path?: string;
9036
- } | {
9037
- from: "lib";
9038
- name: (string | [string, ...(string)[]]);
9039
- } | {
9040
- from: "package";
9041
- name: (string | [string, ...(string)[]]);
9042
- package: string;
9043
- })[];
9044
- checkParameterProperties?: boolean;
9045
- ignoreInferredTypes?: boolean;
9046
- treatMethodsAsReadonly?: boolean;
11448
+ // ----- vue/no-unused-components -----
11449
+ type VueNoUnusedComponents = [] | [{
11450
+ ignoreWhenBindingPresent?: boolean;
9047
11451
  }];
9048
- // ----- typescript/prefer-string-starts-ends-with -----
9049
- type TypescriptPreferStringStartsEndsWith = [] | [{
9050
- allowSingleElementEquality?: ("always" | "never");
11452
+ // ----- vue/no-unused-properties -----
11453
+ type VueNoUnusedProperties = [] | [{
11454
+ groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup")[];
11455
+ deepData?: boolean;
11456
+ ignorePublicMembers?: boolean;
11457
+ unreferencedOptions?: ("unknownMemberAsUnreferenced" | "returnAsUnreferenced")[];
9051
11458
  }];
9052
- // ----- typescript/promise-function-async -----
9053
- type TypescriptPromiseFunctionAsync = [] | [{
9054
- allowAny?: boolean;
9055
- allowedPromiseNames?: string[];
9056
- checkArrowFunctions?: boolean;
9057
- checkFunctionDeclarations?: boolean;
9058
- checkFunctionExpressions?: boolean;
9059
- checkMethodDeclarations?: boolean;
11459
+ // ----- vue/no-unused-vars -----
11460
+ type VueNoUnusedVars = [] | [{
11461
+ ignorePattern?: string;
9060
11462
  }];
9061
- // ----- typescript/require-array-sort-compare -----
9062
- type TypescriptRequireArraySortCompare = [] | [{
9063
- ignoreStringArrays?: boolean;
11463
+ // ----- vue/no-use-v-if-with-v-for -----
11464
+ type VueNoUseVIfWithVFor = [] | [{
11465
+ allowUsingIterationVar?: boolean;
9064
11466
  }];
9065
- // ----- typescript/restrict-plus-operands -----
9066
- type TypescriptRestrictPlusOperands = [] | [{
9067
- allowAny?: boolean;
9068
- allowBoolean?: boolean;
9069
- allowNullish?: boolean;
9070
- allowNumberAndString?: boolean;
9071
- allowRegExp?: boolean;
9072
- skipCompoundAssignments?: boolean;
11467
+ // ----- vue/no-useless-mustaches -----
11468
+ type VueNoUselessMustaches = [] | [{
11469
+ ignoreIncludesComment?: boolean;
11470
+ ignoreStringEscape?: boolean;
9073
11471
  }];
9074
- // ----- typescript/restrict-template-expressions -----
9075
- type TypescriptRestrictTemplateExpressions = [] | [{
9076
- allowAny?: boolean;
9077
- allowArray?: boolean;
9078
- allowBoolean?: boolean;
9079
- allowNullish?: boolean;
9080
- allowNumber?: boolean;
9081
- allowRegExp?: boolean;
9082
- allowNever?: boolean;
9083
- allow?: (string | {
9084
- from: "file";
9085
- name: (string | [string, ...(string)[]]);
9086
- path?: string;
9087
- } | {
9088
- from: "lib";
9089
- name: (string | [string, ...(string)[]]);
9090
- } | {
9091
- from: "package";
9092
- name: (string | [string, ...(string)[]]);
9093
- package: string;
9094
- })[];
11472
+ // ----- vue/no-useless-v-bind -----
11473
+ type VueNoUselessVBind = [] | [{
11474
+ ignoreIncludesComment?: boolean;
11475
+ ignoreStringEscape?: boolean;
9095
11476
  }];
9096
- // ----- typescript/return-await -----
9097
- type TypescriptReturnAwait = [] | [(("always" | "error-handling-correctness-only" | "in-try-catch" | "never") & string)];
9098
- // ----- typescript/sort-type-constituents -----
9099
- type TypescriptSortTypeConstituents = [] | [{
9100
- caseSensitive?: boolean;
9101
- checkIntersections?: boolean;
9102
- checkUnions?: boolean;
9103
- groupOrder?: ("conditional" | "function" | "import" | "intersection" | "keyword" | "nullish" | "literal" | "named" | "object" | "operator" | "tuple" | "union")[];
11477
+ // ----- vue/no-v-html -----
11478
+ type VueNoVHtml = [] | [{
11479
+ ignorePattern?: string;
9104
11480
  }];
9105
- // ----- typescript/strict-boolean-expressions -----
9106
- type TypescriptStrictBooleanExpressions = [] | [{
9107
- allowAny?: boolean;
9108
- allowNullableBoolean?: boolean;
9109
- allowNullableEnum?: boolean;
9110
- allowNullableNumber?: boolean;
9111
- allowNullableObject?: boolean;
9112
- allowNullableString?: boolean;
9113
- allowNumber?: boolean;
9114
- allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
9115
- allowString?: boolean;
11481
+ // ----- vue/no-v-text-v-html-on-component -----
11482
+ type VueNoVTextVHtmlOnComponent = [] | [{
11483
+ allow?: string[];
11484
+ ignoreElementNamespaces?: boolean;
9116
11485
  }];
9117
- // ----- typescript/switch-exhaustiveness-check -----
9118
- type TypescriptSwitchExhaustivenessCheck = [] | [{
9119
- allowDefaultCaseForExhaustiveSwitch?: boolean;
9120
- considerDefaultExhaustiveForUnions?: boolean;
9121
- defaultCaseCommentPattern?: string;
9122
- requireDefaultForNonUnion?: boolean;
11486
+ // ----- vue/object-curly-newline -----
11487
+ type VueObjectCurlyNewline = [] | [((("always" | "never") | {
11488
+ multiline?: boolean;
11489
+ minProperties?: number;
11490
+ consistent?: boolean;
11491
+ }) | {
11492
+ ObjectExpression?: (("always" | "never") | {
11493
+ multiline?: boolean;
11494
+ minProperties?: number;
11495
+ consistent?: boolean;
11496
+ });
11497
+ ObjectPattern?: (("always" | "never") | {
11498
+ multiline?: boolean;
11499
+ minProperties?: number;
11500
+ consistent?: boolean;
11501
+ });
11502
+ ImportDeclaration?: (("always" | "never") | {
11503
+ multiline?: boolean;
11504
+ minProperties?: number;
11505
+ consistent?: boolean;
11506
+ });
11507
+ ExportDeclaration?: (("always" | "never") | {
11508
+ multiline?: boolean;
11509
+ minProperties?: number;
11510
+ consistent?: boolean;
11511
+ });
11512
+ })];
11513
+ // ----- vue/object-curly-spacing -----
11514
+ type VueObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
11515
+ arraysInObjects?: boolean;
11516
+ objectsInObjects?: boolean;
9123
11517
  }];
9124
- // ----- typescript/triple-slash-reference -----
9125
- type TypescriptTripleSlashReference = [] | [{
9126
- lib?: ("always" | "never");
9127
- path?: ("always" | "never");
9128
- types?: ("always" | "never" | "prefer-import");
11518
+ // ----- vue/object-property-newline -----
11519
+ type VueObjectPropertyNewline = [] | [{
11520
+ allowAllPropertiesOnSameLine?: boolean;
11521
+ allowMultiplePropertiesPerLine?: boolean;
9129
11522
  }];
9130
- // ----- typescript/typedef -----
9131
- type TypescriptTypedef = [] | [{
9132
- arrayDestructuring?: boolean;
9133
- arrowParameter?: boolean;
9134
- memberVariableDeclaration?: boolean;
9135
- objectDestructuring?: boolean;
9136
- parameter?: boolean;
9137
- propertyDeclaration?: boolean;
9138
- variableDeclaration?: boolean;
9139
- variableDeclarationIgnoreFunction?: boolean;
11523
+ // ----- vue/object-shorthand -----
11524
+ type VueObjectShorthand = ([] | [("always" | "methods" | "properties" | "never" | "consistent" | "consistent-as-needed")] | [] | [("always" | "methods" | "properties")] | [("always" | "methods" | "properties"), {
11525
+ avoidQuotes?: boolean;
11526
+ }] | [] | [("always" | "methods")] | [("always" | "methods"), {
11527
+ ignoreConstructors?: boolean;
11528
+ methodsIgnorePattern?: string;
11529
+ avoidQuotes?: boolean;
11530
+ avoidExplicitReturnArrows?: boolean;
11531
+ }]);
11532
+ // ----- vue/operator-linebreak -----
11533
+ type VueOperatorLinebreak = [] | [("after" | "before" | "none" | null)] | [("after" | "before" | "none" | null), {
11534
+ overrides?: {
11535
+ [k: string]: ("after" | "before" | "none" | "ignore") | undefined;
11536
+ };
9140
11537
  }];
9141
- // ----- typescript/unbound-method -----
9142
- type TypescriptUnboundMethod = [] | [{
9143
- ignoreStatic?: boolean;
11538
+ // ----- vue/order-in-components -----
11539
+ type VueOrderInComponents = [] | [{
11540
+ order?: unknown[];
11541
+ }];
11542
+ // ----- vue/padding-line-between-blocks -----
11543
+ type VuePaddingLineBetweenBlocks = [] | [("never" | "always")];
11544
+ // ----- vue/padding-line-between-tags -----
11545
+ type VuePaddingLineBetweenTags = [] | [{
11546
+ blankLine: ("always" | "never" | "consistent");
11547
+ prev: string;
11548
+ next: string;
11549
+ }[]];
11550
+ // ----- vue/padding-lines-in-component-definition -----
11551
+ type VuePaddingLinesInComponentDefinition = [] | [(("always" | "never") | {
11552
+ betweenOptions?: ("never" | "always" | "ignore");
11553
+ withinOption?: (("never" | "always" | "ignore") | {
11554
+ [k: string]: (("never" | "always" | "ignore") | {
11555
+ betweenItems?: ("never" | "always" | "ignore");
11556
+ withinEach?: ("never" | "always" | "ignore");
11557
+ });
11558
+ });
11559
+ groupSingleLineProperties?: boolean;
11560
+ })];
11561
+ // ----- vue/prefer-true-attribute-shorthand -----
11562
+ type VuePreferTrueAttributeShorthand = [] | [("always" | "never")] | [("always" | "never"), {
11563
+ except?: string[];
9144
11564
  }];
9145
- // ----- typescript/unified-signatures -----
9146
- type TypescriptUnifiedSignatures = [] | [{
9147
- ignoreDifferentlyNamedParameters?: boolean;
9148
- ignoreOverloadsWithDifferentJSDoc?: boolean;
11565
+ // ----- vue/prop-name-casing -----
11566
+ type VuePropNameCasing = [] | [("camelCase" | "snake_case")] | [("camelCase" | "snake_case"), {
11567
+ ignoreProps?: string[];
9149
11568
  }];
9150
- // ----- unicode-bom -----
9151
- type UnicodeBom = [] | [("always" | "never")];
9152
- // ----- unused-imports/no-unused-imports -----
9153
- type UnusedImportsNoUnusedImports = [] | [(("all" | "local") | {
9154
- args?: ("all" | "after-used" | "none");
9155
- argsIgnorePattern?: string;
9156
- caughtErrors?: ("all" | "none");
9157
- caughtErrorsIgnorePattern?: string;
9158
- destructuredArrayIgnorePattern?: string;
9159
- ignoreClassWithStaticInitBlock?: boolean;
9160
- ignoreRestSiblings?: boolean;
9161
- reportUsedIgnorePattern?: boolean;
9162
- vars?: ("all" | "local");
9163
- varsIgnorePattern?: string;
9164
- })];
9165
- // ----- unused-imports/no-unused-vars -----
9166
- type UnusedImportsNoUnusedVars = [] | [(("all" | "local") | {
9167
- args?: ("all" | "after-used" | "none");
9168
- argsIgnorePattern?: string;
9169
- caughtErrors?: ("all" | "none");
9170
- caughtErrorsIgnorePattern?: string;
9171
- destructuredArrayIgnorePattern?: string;
9172
- ignoreClassWithStaticInitBlock?: boolean;
9173
- ignoreRestSiblings?: boolean;
9174
- reportUsedIgnorePattern?: boolean;
9175
- vars?: ("all" | "local");
9176
- varsIgnorePattern?: string;
11569
+ // ----- vue/quote-props -----
11570
+ type VueQuoteProps = ([] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
11571
+ keywords?: boolean;
11572
+ unnecessary?: boolean;
11573
+ numbers?: boolean;
11574
+ }]);
11575
+ // ----- vue/require-direct-export -----
11576
+ type VueRequireDirectExport = [] | [{
11577
+ disallowFunctionalComponentFunction?: boolean;
11578
+ }];
11579
+ // ----- vue/require-explicit-emits -----
11580
+ type VueRequireExplicitEmits = [] | [{
11581
+ allowProps?: boolean;
11582
+ }];
11583
+ // ----- vue/require-macro-variable-name -----
11584
+ type VueRequireMacroVariableName = [] | [{
11585
+ defineProps?: string;
11586
+ defineEmits?: string;
11587
+ defineSlots?: string;
11588
+ useSlots?: string;
11589
+ useAttrs?: string;
11590
+ }];
11591
+ // ----- vue/require-prop-comment -----
11592
+ type VueRequirePropComment = [] | [{
11593
+ type?: ("JSDoc" | "line" | "block" | "any");
11594
+ }];
11595
+ // ----- vue/require-toggle-inside-transition -----
11596
+ type VueRequireToggleInsideTransition = [] | [{
11597
+ additionalDirectives?: string[];
11598
+ }];
11599
+ // ----- vue/restricted-component-names -----
11600
+ type VueRestrictedComponentNames = [] | [{
11601
+ allow?: string[];
11602
+ }];
11603
+ // ----- vue/return-in-computed-property -----
11604
+ type VueReturnInComputedProperty = [] | [{
11605
+ treatUndefinedAsUnspecified?: boolean;
11606
+ }];
11607
+ // ----- vue/script-indent -----
11608
+ type VueScriptIndent = [] | [(number | "tab")] | [(number | "tab"), {
11609
+ baseIndent?: number;
11610
+ switchCase?: number;
11611
+ ignores?: (string & {
11612
+ [k: string]: unknown | undefined;
11613
+ } & {
11614
+ [k: string]: unknown | undefined;
11615
+ })[];
11616
+ }];
11617
+ // ----- vue/singleline-html-element-content-newline -----
11618
+ type VueSinglelineHtmlElementContentNewline = [] | [{
11619
+ ignoreWhenNoAttributes?: boolean;
11620
+ ignoreWhenEmpty?: boolean;
11621
+ ignores?: string[];
11622
+ externalIgnores?: string[];
11623
+ }];
11624
+ // ----- vue/slot-name-casing -----
11625
+ type VueSlotNameCasing = [] | [("camelCase" | "kebab-case" | "singleword")];
11626
+ // ----- vue/sort-keys -----
11627
+ type VueSortKeys = [] | [("asc" | "desc")] | [("asc" | "desc"), {
11628
+ caseSensitive?: boolean;
11629
+ ignoreChildrenOf?: unknown[];
11630
+ ignoreGrandchildrenOf?: unknown[];
11631
+ minKeys?: number;
11632
+ natural?: boolean;
11633
+ }];
11634
+ // ----- vue/space-in-parens -----
11635
+ type VueSpaceInParens = [] | [("always" | "never")] | [("always" | "never"), {
11636
+ exceptions?: ("{}" | "[]" | "()" | "empty")[];
11637
+ }];
11638
+ // ----- vue/space-infix-ops -----
11639
+ type VueSpaceInfixOps = [] | [{
11640
+ int32Hint?: boolean;
11641
+ }];
11642
+ // ----- vue/space-unary-ops -----
11643
+ type VueSpaceUnaryOps = [] | [{
11644
+ words?: boolean;
11645
+ nonwords?: boolean;
11646
+ overrides?: {
11647
+ [k: string]: boolean | undefined;
11648
+ };
11649
+ }];
11650
+ // ----- vue/template-curly-spacing -----
11651
+ type VueTemplateCurlySpacing = [] | [("always" | "never")];
11652
+ // ----- vue/this-in-template -----
11653
+ type VueThisInTemplate = [] | [("always" | "never")];
11654
+ // ----- vue/v-bind-style -----
11655
+ type VueVBindStyle = [] | [("shorthand" | "longform")] | [("shorthand" | "longform"), {
11656
+ sameNameShorthand?: ("always" | "never" | "ignore");
11657
+ }];
11658
+ // ----- vue/v-for-delimiter-style -----
11659
+ type VueVForDelimiterStyle = [] | [("in" | "of")];
11660
+ // ----- vue/v-on-event-hyphenation -----
11661
+ type VueVOnEventHyphenation = [] | [("always" | "never")] | [("always" | "never"), {
11662
+ autofix?: boolean;
11663
+ ignore?: (string & {
11664
+ [k: string]: unknown | undefined;
11665
+ } & {
11666
+ [k: string]: unknown | undefined;
11667
+ })[];
11668
+ ignoreTags?: string[];
11669
+ }];
11670
+ // ----- vue/v-on-handler-style -----
11671
+ type VueVOnHandlerStyle = [] | [(("inline" | "inline-function") | ["method", ("inline" | "inline-function")])] | [(("inline" | "inline-function") | ["method", ("inline" | "inline-function")]), {
11672
+ ignoreIncludesComment?: boolean;
11673
+ }];
11674
+ // ----- vue/v-on-style -----
11675
+ type VueVOnStyle = [] | [("shorthand" | "longform")];
11676
+ // ----- vue/v-slot-style -----
11677
+ type VueVSlotStyle = [] | [(("shorthand" | "longform") | {
11678
+ atComponent?: ("shorthand" | "longform" | "v-slot");
11679
+ default?: ("shorthand" | "longform" | "v-slot");
11680
+ named?: ("shorthand" | "longform");
9177
11681
  })];
9178
- // ----- use-isnan -----
9179
- type UseIsnan = [] | [{
9180
- enforceForSwitchCase?: boolean;
9181
- enforceForIndexOf?: boolean;
11682
+ // ----- vue/valid-v-on -----
11683
+ type VueValidVOn = [] | [{
11684
+ modifiers?: unknown[];
9182
11685
  }];
9183
- // ----- valid-typeof -----
9184
- type ValidTypeof = [] | [{
9185
- requireStringLiterals?: boolean;
11686
+ // ----- vue/valid-v-slot -----
11687
+ type VueValidVSlot = [] | [{
11688
+ allowModifiers?: boolean;
9186
11689
  }];
9187
11690
  // ----- wrap-iife -----
9188
11691
  type WrapIife = [] | [("outside" | "inside" | "any")] | [("outside" | "inside" | "any"), {
@@ -9204,6 +11707,7 @@ interface Options {
9204
11707
  stylistic?: StylisticOptions;
9205
11708
  ignores?: string[];
9206
11709
  rules?: RuleOptions;
11710
+ vue?: boolean;
9207
11711
  }
9208
11712
  type LinterConfig = Omit<Linter.Config, 'plugins'> & {
9209
11713
  plugins?: Record<string, any>;