@jsse/eslint-config 0.4.11 → 0.4.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/{chunk-CkHaCily.js → chunk-Bb8Gnt67.js} +3 -1
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +2 -1
- package/dist/index.d.ts +315 -222
- package/dist/index.js +46 -33
- package/dist/{version-Cmu7XVG1.js → version-Me0kOJKb.js} +1 -1
- package/package.json +22 -22
package/dist/index.d.ts
CHANGED
|
@@ -1392,6 +1392,11 @@ interface BuiltinsRuleOptions {
|
|
|
1392
1392
|
* @see https://eslint.org/docs/latest/rules/prefer-template
|
|
1393
1393
|
*/
|
|
1394
1394
|
"prefer-template"?: Linter.RuleEntry<[]>;
|
|
1395
|
+
/**
|
|
1396
|
+
* Disallow losing originally caught error when re-throwing custom errors
|
|
1397
|
+
* @see https://eslint.org/docs/latest/rules/preserve-caught-error
|
|
1398
|
+
*/
|
|
1399
|
+
"preserve-caught-error"?: Linter.RuleEntry<PreserveCaughtError>;
|
|
1395
1400
|
/**
|
|
1396
1401
|
* Require quotes around object literal property names
|
|
1397
1402
|
* @see https://eslint.org/docs/latest/rules/quote-props
|
|
@@ -1576,7 +1581,6 @@ interface BuiltinsRuleOptions {
|
|
|
1576
1581
|
*/
|
|
1577
1582
|
yoda?: Linter.RuleEntry<Yoda>;
|
|
1578
1583
|
}
|
|
1579
|
-
|
|
1580
1584
|
/* ======= Declarations ======= */
|
|
1581
1585
|
// ----- accessor-pairs -----
|
|
1582
1586
|
type AccessorPairs = [] | [{
|
|
@@ -2919,6 +2923,10 @@ type PreferReflect = [] | [{
|
|
|
2919
2923
|
type PreferRegexLiterals = [] | [{
|
|
2920
2924
|
disallowRedundantWrapping?: boolean;
|
|
2921
2925
|
}];
|
|
2926
|
+
// ----- preserve-caught-error -----
|
|
2927
|
+
type PreserveCaughtError = [] | [{
|
|
2928
|
+
requireCatchParameter?: boolean;
|
|
2929
|
+
}];
|
|
2922
2930
|
// ----- quote-props -----
|
|
2923
2931
|
type QuoteProps = [] | ["always" | "as-needed" | "consistent" | "consistent-as-needed"] | [] | ["always" | "as-needed" | "consistent" | "consistent-as-needed"] | ["always" | "as-needed" | "consistent" | "consistent-as-needed", {
|
|
2924
2932
|
keywords?: boolean;
|
|
@@ -3113,7 +3121,6 @@ interface AntfuRuleOptions {
|
|
|
3113
3121
|
*/
|
|
3114
3122
|
"antfu/top-level-function"?: Linter.RuleEntry<[]>;
|
|
3115
3123
|
}
|
|
3116
|
-
|
|
3117
3124
|
/* ======= Declarations ======= */
|
|
3118
3125
|
// ----- antfu/consistent-chaining -----
|
|
3119
3126
|
type AntfuConsistentChaining = [] | [{
|
|
@@ -3156,8 +3163,6 @@ interface CommandRuleOptions {
|
|
|
3156
3163
|
*/
|
|
3157
3164
|
"command/command"?: Linter.RuleEntry<[]>;
|
|
3158
3165
|
}
|
|
3159
|
-
|
|
3160
|
-
/* ======= Declarations ======= */
|
|
3161
3166
|
//#endregion
|
|
3162
3167
|
//#region src/generated/dts/de-morgan.d.ts
|
|
3163
3168
|
interface DeMorganRuleOptions {
|
|
@@ -3172,8 +3177,6 @@ interface DeMorganRuleOptions {
|
|
|
3172
3177
|
*/
|
|
3173
3178
|
"de-morgan/no-negated-disjunction"?: Linter.RuleEntry<[]>;
|
|
3174
3179
|
}
|
|
3175
|
-
|
|
3176
|
-
/* ======= Declarations ======= */
|
|
3177
3180
|
//#endregion
|
|
3178
3181
|
//#region src/generated/dts/eslint-comments.d.ts
|
|
3179
3182
|
interface EslintCommentsRuleOptions {
|
|
@@ -3223,7 +3226,6 @@ interface EslintCommentsRuleOptions {
|
|
|
3223
3226
|
*/
|
|
3224
3227
|
"eslint-comments/require-description"?: Linter.RuleEntry<EslintCommentsRequireDescription>;
|
|
3225
3228
|
}
|
|
3226
|
-
|
|
3227
3229
|
/* ======= Declarations ======= */
|
|
3228
3230
|
// ----- eslint-comments/disable-enable-pair -----
|
|
3229
3231
|
type EslintCommentsDisableEnablePair = [] | [{
|
|
@@ -3242,8 +3244,6 @@ type EslintCommentsRequireDescription = [] | [{
|
|
|
3242
3244
|
//#endregion
|
|
3243
3245
|
//#region src/generated/dts/ignores.d.ts
|
|
3244
3246
|
interface IgnoresRuleOptions {}
|
|
3245
|
-
|
|
3246
|
-
/* ======= Declarations ======= */
|
|
3247
3247
|
//#endregion
|
|
3248
3248
|
//#region src/generated/dts/imports.d.ts
|
|
3249
3249
|
interface ImportsRuleOptions {
|
|
@@ -3283,7 +3283,6 @@ interface ImportsRuleOptions {
|
|
|
3283
3283
|
*/
|
|
3284
3284
|
"import/no-named-default"?: Linter.RuleEntry<[]>;
|
|
3285
3285
|
}
|
|
3286
|
-
|
|
3287
3286
|
/* ======= Declarations ======= */
|
|
3288
3287
|
// ----- import/consistent-type-specifier-style -----
|
|
3289
3288
|
type ImportConsistentTypeSpecifierStyle$1 = [] | ["top-level" | "inline" | "prefer-top-level"];
|
|
@@ -3313,7 +3312,6 @@ interface JavascriptRuleOptions {
|
|
|
3313
3312
|
*/
|
|
3314
3313
|
"unused-imports/no-unused-vars"?: Linter.RuleEntry<UnusedImportsNoUnusedVars>;
|
|
3315
3314
|
}
|
|
3316
|
-
|
|
3317
3315
|
/* ======= Declarations ======= */
|
|
3318
3316
|
// ----- unused-imports/no-unused-imports -----
|
|
3319
3317
|
type UnusedImportsNoUnusedImports = [] | [("all" | "local") | {
|
|
@@ -3353,7 +3351,7 @@ interface JsdocRuleOptions {
|
|
|
3353
3351
|
* Reports invalid alignment of JSDoc block asterisks.
|
|
3354
3352
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-alignment.md#repos-sticky-header
|
|
3355
3353
|
*/
|
|
3356
|
-
"jsdoc/check-alignment"?: Linter.RuleEntry<
|
|
3354
|
+
"jsdoc/check-alignment"?: Linter.RuleEntry<JsdocCheckAlignment>;
|
|
3357
3355
|
/**
|
|
3358
3356
|
* Ensures that (JavaScript) examples within JSDoc adhere to ESLint rules.
|
|
3359
3357
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-examples.md#repos-sticky-header
|
|
@@ -3494,6 +3492,16 @@ interface JsdocRuleOptions {
|
|
|
3494
3492
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-undefined-types.md#repos-sticky-header
|
|
3495
3493
|
*/
|
|
3496
3494
|
"jsdoc/no-undefined-types"?: Linter.RuleEntry<JsdocNoUndefinedTypes>;
|
|
3495
|
+
/**
|
|
3496
|
+
* Reports use of `any` or `*` type
|
|
3497
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-any-type.md#repos-sticky-header
|
|
3498
|
+
*/
|
|
3499
|
+
"jsdoc/reject-any-type"?: Linter.RuleEntry<[]>;
|
|
3500
|
+
/**
|
|
3501
|
+
* Reports use of `Function` type
|
|
3502
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-function-type.md#repos-sticky-header
|
|
3503
|
+
*/
|
|
3504
|
+
"jsdoc/reject-function-type"?: Linter.RuleEntry<[]>;
|
|
3497
3505
|
/**
|
|
3498
3506
|
* Requires that each JSDoc line starts with an `*`.
|
|
3499
3507
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-asterisk-prefix.md#repos-sticky-header
|
|
@@ -3529,6 +3537,11 @@ interface JsdocRuleOptions {
|
|
|
3529
3537
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-jsdoc.md#repos-sticky-header
|
|
3530
3538
|
*/
|
|
3531
3539
|
"jsdoc/require-jsdoc"?: Linter.RuleEntry<JsdocRequireJsdoc>;
|
|
3540
|
+
/**
|
|
3541
|
+
* Requires a type for `@next` tags
|
|
3542
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-type.md#repos-sticky-header
|
|
3543
|
+
*/
|
|
3544
|
+
"jsdoc/require-next-type"?: Linter.RuleEntry<[]>;
|
|
3532
3545
|
/**
|
|
3533
3546
|
* Requires that all function parameters are documented.
|
|
3534
3547
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param.md#repos-sticky-header
|
|
@@ -3599,6 +3612,11 @@ interface JsdocRuleOptions {
|
|
|
3599
3612
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws.md#repos-sticky-header
|
|
3600
3613
|
*/
|
|
3601
3614
|
"jsdoc/require-throws"?: Linter.RuleEntry<JsdocRequireThrows>;
|
|
3615
|
+
/**
|
|
3616
|
+
* Requires a type for `@throws` tags
|
|
3617
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-type.md#repos-sticky-header
|
|
3618
|
+
*/
|
|
3619
|
+
"jsdoc/require-throws-type"?: Linter.RuleEntry<[]>;
|
|
3602
3620
|
/**
|
|
3603
3621
|
* Requires yields are documented.
|
|
3604
3622
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields.md#repos-sticky-header
|
|
@@ -3609,6 +3627,11 @@ interface JsdocRuleOptions {
|
|
|
3609
3627
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-check.md#repos-sticky-header
|
|
3610
3628
|
*/
|
|
3611
3629
|
"jsdoc/require-yields-check"?: Linter.RuleEntry<JsdocRequireYieldsCheck>;
|
|
3630
|
+
/**
|
|
3631
|
+
* Requires a type for `@yields` tags
|
|
3632
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-type.md#repos-sticky-header
|
|
3633
|
+
*/
|
|
3634
|
+
"jsdoc/require-yields-type"?: Linter.RuleEntry<[]>;
|
|
3612
3635
|
/**
|
|
3613
3636
|
* Sorts tags by a specified sequence according to tag name.
|
|
3614
3637
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/sort-tags.md#repos-sticky-header
|
|
@@ -3624,14 +3647,22 @@ interface JsdocRuleOptions {
|
|
|
3624
3647
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/text-escaping.md#repos-sticky-header
|
|
3625
3648
|
*/
|
|
3626
3649
|
"jsdoc/text-escaping"?: Linter.RuleEntry<JsdocTextEscaping>;
|
|
3650
|
+
/**
|
|
3651
|
+
* Formats JSDoc type values.
|
|
3652
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/type-formatting.md#repos-sticky-header
|
|
3653
|
+
*/
|
|
3654
|
+
"jsdoc/type-formatting"?: Linter.RuleEntry<JsdocTypeFormatting>;
|
|
3627
3655
|
/**
|
|
3628
3656
|
* Requires all types to be valid JSDoc or Closure compiler types without syntax errors.
|
|
3629
3657
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/valid-types.md#repos-sticky-header
|
|
3630
3658
|
*/
|
|
3631
3659
|
"jsdoc/valid-types"?: Linter.RuleEntry<JsdocValidTypes>;
|
|
3632
3660
|
}
|
|
3633
|
-
|
|
3634
3661
|
/* ======= Declarations ======= */
|
|
3662
|
+
// ----- jsdoc/check-alignment -----
|
|
3663
|
+
type JsdocCheckAlignment = [] | [{
|
|
3664
|
+
innerIndent?: number;
|
|
3665
|
+
}];
|
|
3635
3666
|
// ----- jsdoc/check-examples -----
|
|
3636
3667
|
type JsdocCheckExamples = [] | [{
|
|
3637
3668
|
allowInlineConfig?: boolean;
|
|
@@ -3921,6 +3952,7 @@ type JsdocRequireJsdoc = [] | [{
|
|
|
3921
3952
|
enableFixer?: boolean;
|
|
3922
3953
|
exemptEmptyConstructors?: boolean;
|
|
3923
3954
|
exemptEmptyFunctions?: boolean;
|
|
3955
|
+
exemptOverloadedImplementations?: boolean;
|
|
3924
3956
|
fixerMessage?: string;
|
|
3925
3957
|
minLineCount?: number;
|
|
3926
3958
|
publicOnly?: boolean | {
|
|
@@ -3937,6 +3969,7 @@ type JsdocRequireJsdoc = [] | [{
|
|
|
3937
3969
|
FunctionExpression?: boolean;
|
|
3938
3970
|
MethodDefinition?: boolean;
|
|
3939
3971
|
};
|
|
3972
|
+
skipInterveningOverloadedDeclarations?: boolean;
|
|
3940
3973
|
}];
|
|
3941
3974
|
// ----- jsdoc/require-param -----
|
|
3942
3975
|
type JsdocRequireParam = [] | [{
|
|
@@ -3957,6 +3990,7 @@ type JsdocRequireParam = [] | [{
|
|
|
3957
3990
|
enableRootFixer?: boolean;
|
|
3958
3991
|
exemptedBy?: string[];
|
|
3959
3992
|
ignoreWhenAllParamsMissing?: boolean;
|
|
3993
|
+
interfaceExemptsParamsCheck?: boolean;
|
|
3960
3994
|
unnamedRootBase?: string[];
|
|
3961
3995
|
useDefaultObjectProperties?: boolean;
|
|
3962
3996
|
}];
|
|
@@ -4027,6 +4061,7 @@ type JsdocRequireReturnsType = [] | [{
|
|
|
4027
4061
|
}];
|
|
4028
4062
|
// ----- jsdoc/require-template -----
|
|
4029
4063
|
type JsdocRequireTemplate = [] | [{
|
|
4064
|
+
exemptedBy?: string[];
|
|
4030
4065
|
requireSeparateTemplates?: boolean;
|
|
4031
4066
|
}];
|
|
4032
4067
|
// ----- jsdoc/require-throws -----
|
|
@@ -4088,6 +4123,22 @@ type JsdocTextEscaping = [] | [{
|
|
|
4088
4123
|
escapeHTML?: boolean;
|
|
4089
4124
|
escapeMarkdown?: boolean;
|
|
4090
4125
|
}];
|
|
4126
|
+
// ----- jsdoc/type-formatting -----
|
|
4127
|
+
type JsdocTypeFormatting = [] | [{
|
|
4128
|
+
arrayBrackets?: "angle" | "square";
|
|
4129
|
+
enableFixer?: boolean;
|
|
4130
|
+
genericDot?: boolean;
|
|
4131
|
+
objectFieldIndent?: string;
|
|
4132
|
+
objectFieldQuote?: "double" | "single" | null;
|
|
4133
|
+
objectFieldSeparator?: "comma" | "comma-and-linebreak" | "linebreak" | "semicolon" | "semicolon-and-linebreak";
|
|
4134
|
+
objectFieldSeparatorOptionalLinebreak?: boolean;
|
|
4135
|
+
objectFieldSeparatorTrailingPunctuation?: boolean;
|
|
4136
|
+
propertyQuotes?: "double" | "single" | null;
|
|
4137
|
+
separatorForSingleObjectField?: boolean;
|
|
4138
|
+
stringQuotes?: "double" | "single";
|
|
4139
|
+
typeBracketSpacing?: string;
|
|
4140
|
+
unionSpacing?: string;
|
|
4141
|
+
}];
|
|
4091
4142
|
// ----- jsdoc/valid-types -----
|
|
4092
4143
|
type JsdocValidTypes = [] | [{
|
|
4093
4144
|
allowEmptyNamepaths?: boolean;
|
|
@@ -4316,7 +4367,6 @@ interface JsoncRuleOptions {
|
|
|
4316
4367
|
*/
|
|
4317
4368
|
"jsonc/vue-custom-block/no-parsing-error"?: Linter.RuleEntry<[]>;
|
|
4318
4369
|
}
|
|
4319
|
-
|
|
4320
4370
|
/* ======= Declarations ======= */
|
|
4321
4371
|
// ----- jsonc/array-bracket-newline -----
|
|
4322
4372
|
type JsoncArrayBracketNewline = [] | [("always" | "never" | "consistent") | {
|
|
@@ -4595,7 +4645,7 @@ interface MarkdownRuleOptions {
|
|
|
4595
4645
|
* Enforce heading levels increment by one
|
|
4596
4646
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/heading-increment.md
|
|
4597
4647
|
*/
|
|
4598
|
-
"markdown/heading-increment"?: Linter.RuleEntry<
|
|
4648
|
+
"markdown/heading-increment"?: Linter.RuleEntry<MarkdownHeadingIncrement>;
|
|
4599
4649
|
/**
|
|
4600
4650
|
* Disallow bare URLs
|
|
4601
4651
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-bare-urls.md
|
|
@@ -4640,7 +4690,7 @@ interface MarkdownRuleOptions {
|
|
|
4640
4690
|
* Disallow headings without a space after the hash characters
|
|
4641
4691
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-atx-heading-space.md
|
|
4642
4692
|
*/
|
|
4643
|
-
"markdown/no-missing-atx-heading-space"?: Linter.RuleEntry<
|
|
4693
|
+
"markdown/no-missing-atx-heading-space"?: Linter.RuleEntry<MarkdownNoMissingAtxHeadingSpace>;
|
|
4644
4694
|
/**
|
|
4645
4695
|
* Disallow missing label references
|
|
4646
4696
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
|
|
@@ -4661,6 +4711,11 @@ interface MarkdownRuleOptions {
|
|
|
4661
4711
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reversed-media-syntax.md
|
|
4662
4712
|
*/
|
|
4663
4713
|
"markdown/no-reversed-media-syntax"?: Linter.RuleEntry<[]>;
|
|
4714
|
+
/**
|
|
4715
|
+
* Disallow spaces around emphasis markers
|
|
4716
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-space-in-emphasis.md
|
|
4717
|
+
*/
|
|
4718
|
+
"markdown/no-space-in-emphasis"?: Linter.RuleEntry<MarkdownNoSpaceInEmphasis>;
|
|
4664
4719
|
/**
|
|
4665
4720
|
* Disallow unused definitions
|
|
4666
4721
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-unused-definitions.md
|
|
@@ -4677,12 +4732,15 @@ interface MarkdownRuleOptions {
|
|
|
4677
4732
|
*/
|
|
4678
4733
|
"markdown/table-column-count"?: Linter.RuleEntry<MarkdownTableColumnCount>;
|
|
4679
4734
|
}
|
|
4680
|
-
|
|
4681
4735
|
/* ======= Declarations ======= */
|
|
4682
4736
|
// ----- markdown/fenced-code-language -----
|
|
4683
4737
|
type MarkdownFencedCodeLanguage = [] | [{
|
|
4684
4738
|
required?: string[];
|
|
4685
4739
|
}];
|
|
4740
|
+
// ----- markdown/heading-increment -----
|
|
4741
|
+
type MarkdownHeadingIncrement = [] | [{
|
|
4742
|
+
frontmatterTitle?: string;
|
|
4743
|
+
}];
|
|
4686
4744
|
// ----- markdown/no-duplicate-definitions -----
|
|
4687
4745
|
type MarkdownNoDuplicateDefinitions = [] | [{
|
|
4688
4746
|
allowDefinitions?: string[];
|
|
@@ -4701,6 +4759,11 @@ type MarkdownNoEmptyDefinitions = [] | [{
|
|
|
4701
4759
|
// ----- markdown/no-html -----
|
|
4702
4760
|
type MarkdownNoHtml = [] | [{
|
|
4703
4761
|
allowed?: string[];
|
|
4762
|
+
allowedIgnoreCase?: boolean;
|
|
4763
|
+
}];
|
|
4764
|
+
// ----- markdown/no-missing-atx-heading-space -----
|
|
4765
|
+
type MarkdownNoMissingAtxHeadingSpace = [] | [{
|
|
4766
|
+
checkClosedHeadings?: boolean;
|
|
4704
4767
|
}];
|
|
4705
4768
|
// ----- markdown/no-missing-link-fragments -----
|
|
4706
4769
|
type MarkdownNoMissingLinkFragments = [] | [{
|
|
@@ -4711,6 +4774,10 @@ type MarkdownNoMissingLinkFragments = [] | [{
|
|
|
4711
4774
|
type MarkdownNoMultipleH1 = [] | [{
|
|
4712
4775
|
frontmatterTitle?: string;
|
|
4713
4776
|
}];
|
|
4777
|
+
// ----- markdown/no-space-in-emphasis -----
|
|
4778
|
+
type MarkdownNoSpaceInEmphasis = [] | [{
|
|
4779
|
+
checkStrikethrough?: boolean;
|
|
4780
|
+
}];
|
|
4714
4781
|
// ----- markdown/no-unused-definitions -----
|
|
4715
4782
|
type MarkdownNoUnusedDefinitions = [] | [{
|
|
4716
4783
|
allowDefinitions?: string[];
|
|
@@ -4931,7 +4998,6 @@ interface NRuleOptions {
|
|
|
4931
4998
|
*/
|
|
4932
4999
|
"n/shebang"?: Linter.RuleEntry<NShebang>;
|
|
4933
5000
|
}
|
|
4934
|
-
|
|
4935
5001
|
/* ======= Declarations ======= */
|
|
4936
5002
|
// ----- n/callback-return -----
|
|
4937
5003
|
type NCallbackReturn = [] | [string[]];
|
|
@@ -4967,7 +5033,7 @@ type NHashbang = [] | [{
|
|
|
4967
5033
|
// ----- n/no-deprecated-api -----
|
|
4968
5034
|
type NNoDeprecatedApi = [] | [{
|
|
4969
5035
|
version?: string;
|
|
4970
|
-
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()")[];
|
|
5036
|
+
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()")[];
|
|
4971
5037
|
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")[];
|
|
4972
5038
|
ignoreIndirectDependencies?: boolean;
|
|
4973
5039
|
}];
|
|
@@ -5161,7 +5227,7 @@ type NNoUnsupportedFeaturesEsSyntax = [] | [{
|
|
|
5161
5227
|
type NNoUnsupportedFeaturesNodeBuiltins = [] | [{
|
|
5162
5228
|
version?: string;
|
|
5163
5229
|
allowExperimental?: boolean;
|
|
5164
|
-
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")[];
|
|
5230
|
+
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")[];
|
|
5165
5231
|
}];
|
|
5166
5232
|
// ----- n/prefer-global/buffer -----
|
|
5167
5233
|
type NPreferGlobalBuffer = [] | ["always" | "never"];
|
|
@@ -5209,7 +5275,6 @@ interface NoOnlyTestsRuleOptions {
|
|
|
5209
5275
|
*/
|
|
5210
5276
|
"no-only-tests/no-only-tests"?: Linter.RuleEntry<NoOnlyTestsNoOnlyTests>;
|
|
5211
5277
|
}
|
|
5212
|
-
|
|
5213
5278
|
/* ======= Declarations ======= */
|
|
5214
5279
|
// ----- no-only-tests/no-only-tests -----
|
|
5215
5280
|
type NoOnlyTestsNoOnlyTests = [] | [{
|
|
@@ -5322,7 +5387,6 @@ interface PerfectionistRuleOptions {
|
|
|
5322
5387
|
*/
|
|
5323
5388
|
"perfectionist/sort-variable-declarations"?: Linter.RuleEntry<PerfectionistSortVariableDeclarations>;
|
|
5324
5389
|
}
|
|
5325
|
-
|
|
5326
5390
|
/* ======= Declarations ======= */
|
|
5327
5391
|
// ----- perfectionist/sort-array-includes -----
|
|
5328
5392
|
type PerfectionistSortArrayIncludes = {
|
|
@@ -7066,7 +7130,6 @@ interface PnpmRuleOptions {
|
|
|
7066
7130
|
*/
|
|
7067
7131
|
"pnpm/yaml-no-unused-catalog-item"?: Linter.RuleEntry<[]>;
|
|
7068
7132
|
}
|
|
7069
|
-
|
|
7070
7133
|
/* ======= Declarations ======= */
|
|
7071
7134
|
// ----- pnpm/json-enforce-catalog -----
|
|
7072
7135
|
type PnpmJsonEnforceCatalog = [] | [{
|
|
@@ -7096,8 +7159,6 @@ type PnpmYamlNoDuplicateCatalogItem = [] | [{
|
|
|
7096
7159
|
//#endregion
|
|
7097
7160
|
//#region src/generated/dts/prettier.d.ts
|
|
7098
7161
|
interface PrettierRuleOptions {}
|
|
7099
|
-
|
|
7100
|
-
/* ======= Declarations ======= */
|
|
7101
7162
|
//#endregion
|
|
7102
7163
|
//#region src/generated/dts/react.d.ts
|
|
7103
7164
|
interface ReactRuleOptions {
|
|
@@ -7630,7 +7691,6 @@ interface ReactRuleOptions {
|
|
|
7630
7691
|
*/
|
|
7631
7692
|
"react/void-dom-elements-no-children"?: Linter.RuleEntry<[]>;
|
|
7632
7693
|
}
|
|
7633
|
-
|
|
7634
7694
|
/* ======= Declarations ======= */
|
|
7635
7695
|
// ----- react-hooks/exhaustive-deps -----
|
|
7636
7696
|
type ReactHooksExhaustiveDeps$1 = [] | [{
|
|
@@ -8119,7 +8179,6 @@ interface ReactHooksRuleOptions {
|
|
|
8119
8179
|
*/
|
|
8120
8180
|
"react-hooks/rules-of-hooks"?: Linter.RuleEntry<[]>;
|
|
8121
8181
|
}
|
|
8122
|
-
|
|
8123
8182
|
/* ======= Declarations ======= */
|
|
8124
8183
|
// ----- react-hooks/exhaustive-deps -----
|
|
8125
8184
|
type ReactHooksExhaustiveDeps = [] | [{
|
|
@@ -8129,13 +8188,9 @@ type ReactHooksExhaustiveDeps = [] | [{
|
|
|
8129
8188
|
//#endregion
|
|
8130
8189
|
//#region src/generated/dts/sort-package-json.d.ts
|
|
8131
8190
|
interface SortPackageJsonRuleOptions {}
|
|
8132
|
-
|
|
8133
|
-
/* ======= Declarations ======= */
|
|
8134
8191
|
//#endregion
|
|
8135
8192
|
//#region src/generated/dts/sort-tsconfig.d.ts
|
|
8136
8193
|
interface SortTsconfigRuleOptions {}
|
|
8137
|
-
|
|
8138
|
-
/* ======= Declarations ======= */
|
|
8139
8194
|
//#endregion
|
|
8140
8195
|
//#region src/generated/dts/stylistic.d.ts
|
|
8141
8196
|
interface StylisticRuleOptions {
|
|
@@ -8321,8 +8376,9 @@ interface StylisticRuleOptions {
|
|
|
8321
8376
|
*/
|
|
8322
8377
|
"@stylistic/jsx-pascal-case"?: Linter.RuleEntry<StylisticJsxPascalCase>;
|
|
8323
8378
|
/**
|
|
8324
|
-
* Disallow multiple spaces between inline JSX props
|
|
8379
|
+
* Disallow multiple spaces between inline JSX props. Deprecated, use `no-multi-spaces` rule instead.
|
|
8325
8380
|
* @see https://eslint.style/rules/jsx-props-no-multi-spaces
|
|
8381
|
+
* @deprecated
|
|
8326
8382
|
*/
|
|
8327
8383
|
"@stylistic/jsx-props-no-multi-spaces"?: Linter.RuleEntry<[]>;
|
|
8328
8384
|
/**
|
|
@@ -8616,7 +8672,6 @@ interface StylisticRuleOptions {
|
|
|
8616
8672
|
*/
|
|
8617
8673
|
"@stylistic/yield-star-spacing"?: Linter.RuleEntry<StylisticYieldStarSpacing>;
|
|
8618
8674
|
}
|
|
8619
|
-
|
|
8620
8675
|
/* ======= Declarations ======= */
|
|
8621
8676
|
// ----- @stylistic/array-bracket-newline -----
|
|
8622
8677
|
type StylisticArrayBracketNewline = [] | [("always" | "never" | "consistent") | {
|
|
@@ -8841,6 +8896,7 @@ type StylisticIndent = [] | ["tab" | number] | ["tab" | number, {
|
|
|
8841
8896
|
const?: number | ("first" | "off");
|
|
8842
8897
|
using?: number | ("first" | "off");
|
|
8843
8898
|
};
|
|
8899
|
+
assignmentOperator?: number | "off";
|
|
8844
8900
|
outerIIFEBody?: number | "off";
|
|
8845
8901
|
MemberExpression?: number | "off";
|
|
8846
8902
|
FunctionDeclaration?: {
|
|
@@ -9073,6 +9129,22 @@ type StylisticKeywordSpacing = [] | [{
|
|
|
9073
9129
|
before?: boolean;
|
|
9074
9130
|
after?: boolean;
|
|
9075
9131
|
};
|
|
9132
|
+
arguments?: {
|
|
9133
|
+
before?: boolean;
|
|
9134
|
+
after?: boolean;
|
|
9135
|
+
};
|
|
9136
|
+
as?: {
|
|
9137
|
+
before?: boolean;
|
|
9138
|
+
after?: boolean;
|
|
9139
|
+
};
|
|
9140
|
+
async?: {
|
|
9141
|
+
before?: boolean;
|
|
9142
|
+
after?: boolean;
|
|
9143
|
+
};
|
|
9144
|
+
await?: {
|
|
9145
|
+
before?: boolean;
|
|
9146
|
+
after?: boolean;
|
|
9147
|
+
};
|
|
9076
9148
|
boolean?: {
|
|
9077
9149
|
before?: boolean;
|
|
9078
9150
|
after?: boolean;
|
|
@@ -9137,6 +9209,10 @@ type StylisticKeywordSpacing = [] | [{
|
|
|
9137
9209
|
before?: boolean;
|
|
9138
9210
|
after?: boolean;
|
|
9139
9211
|
};
|
|
9212
|
+
eval?: {
|
|
9213
|
+
before?: boolean;
|
|
9214
|
+
after?: boolean;
|
|
9215
|
+
};
|
|
9140
9216
|
export?: {
|
|
9141
9217
|
before?: boolean;
|
|
9142
9218
|
after?: boolean;
|
|
@@ -9165,10 +9241,18 @@ type StylisticKeywordSpacing = [] | [{
|
|
|
9165
9241
|
before?: boolean;
|
|
9166
9242
|
after?: boolean;
|
|
9167
9243
|
};
|
|
9244
|
+
from?: {
|
|
9245
|
+
before?: boolean;
|
|
9246
|
+
after?: boolean;
|
|
9247
|
+
};
|
|
9168
9248
|
function?: {
|
|
9169
9249
|
before?: boolean;
|
|
9170
9250
|
after?: boolean;
|
|
9171
9251
|
};
|
|
9252
|
+
get?: {
|
|
9253
|
+
before?: boolean;
|
|
9254
|
+
after?: boolean;
|
|
9255
|
+
};
|
|
9172
9256
|
goto?: {
|
|
9173
9257
|
before?: boolean;
|
|
9174
9258
|
after?: boolean;
|
|
@@ -9201,6 +9285,10 @@ type StylisticKeywordSpacing = [] | [{
|
|
|
9201
9285
|
before?: boolean;
|
|
9202
9286
|
after?: boolean;
|
|
9203
9287
|
};
|
|
9288
|
+
let?: {
|
|
9289
|
+
before?: boolean;
|
|
9290
|
+
after?: boolean;
|
|
9291
|
+
};
|
|
9204
9292
|
long?: {
|
|
9205
9293
|
before?: boolean;
|
|
9206
9294
|
after?: boolean;
|
|
@@ -9217,6 +9305,10 @@ type StylisticKeywordSpacing = [] | [{
|
|
|
9217
9305
|
before?: boolean;
|
|
9218
9306
|
after?: boolean;
|
|
9219
9307
|
};
|
|
9308
|
+
of?: {
|
|
9309
|
+
before?: boolean;
|
|
9310
|
+
after?: boolean;
|
|
9311
|
+
};
|
|
9220
9312
|
package?: {
|
|
9221
9313
|
before?: boolean;
|
|
9222
9314
|
after?: boolean;
|
|
@@ -9237,6 +9329,10 @@ type StylisticKeywordSpacing = [] | [{
|
|
|
9237
9329
|
before?: boolean;
|
|
9238
9330
|
after?: boolean;
|
|
9239
9331
|
};
|
|
9332
|
+
set?: {
|
|
9333
|
+
before?: boolean;
|
|
9334
|
+
after?: boolean;
|
|
9335
|
+
};
|
|
9240
9336
|
short?: {
|
|
9241
9337
|
before?: boolean;
|
|
9242
9338
|
after?: boolean;
|
|
@@ -9281,59 +9377,43 @@ type StylisticKeywordSpacing = [] | [{
|
|
|
9281
9377
|
before?: boolean;
|
|
9282
9378
|
after?: boolean;
|
|
9283
9379
|
};
|
|
9284
|
-
|
|
9285
|
-
before?: boolean;
|
|
9286
|
-
after?: boolean;
|
|
9287
|
-
};
|
|
9288
|
-
var?: {
|
|
9289
|
-
before?: boolean;
|
|
9290
|
-
after?: boolean;
|
|
9291
|
-
};
|
|
9292
|
-
void?: {
|
|
9293
|
-
before?: boolean;
|
|
9294
|
-
after?: boolean;
|
|
9295
|
-
};
|
|
9296
|
-
volatile?: {
|
|
9297
|
-
before?: boolean;
|
|
9298
|
-
after?: boolean;
|
|
9299
|
-
};
|
|
9300
|
-
while?: {
|
|
9380
|
+
type?: {
|
|
9301
9381
|
before?: boolean;
|
|
9302
9382
|
after?: boolean;
|
|
9303
9383
|
};
|
|
9304
|
-
|
|
9384
|
+
typeof?: {
|
|
9305
9385
|
before?: boolean;
|
|
9306
9386
|
after?: boolean;
|
|
9307
9387
|
};
|
|
9308
|
-
|
|
9388
|
+
using?: {
|
|
9309
9389
|
before?: boolean;
|
|
9310
9390
|
after?: boolean;
|
|
9311
9391
|
};
|
|
9312
|
-
|
|
9392
|
+
var?: {
|
|
9313
9393
|
before?: boolean;
|
|
9314
9394
|
after?: boolean;
|
|
9315
9395
|
};
|
|
9316
|
-
|
|
9396
|
+
void?: {
|
|
9317
9397
|
before?: boolean;
|
|
9318
9398
|
after?: boolean;
|
|
9319
9399
|
};
|
|
9320
|
-
|
|
9400
|
+
volatile?: {
|
|
9321
9401
|
before?: boolean;
|
|
9322
9402
|
after?: boolean;
|
|
9323
9403
|
};
|
|
9324
|
-
|
|
9404
|
+
while?: {
|
|
9325
9405
|
before?: boolean;
|
|
9326
9406
|
after?: boolean;
|
|
9327
9407
|
};
|
|
9328
|
-
|
|
9408
|
+
with?: {
|
|
9329
9409
|
before?: boolean;
|
|
9330
9410
|
after?: boolean;
|
|
9331
9411
|
};
|
|
9332
|
-
|
|
9412
|
+
yield?: {
|
|
9333
9413
|
before?: boolean;
|
|
9334
9414
|
after?: boolean;
|
|
9335
9415
|
};
|
|
9336
|
-
|
|
9416
|
+
accessor?: {
|
|
9337
9417
|
before?: boolean;
|
|
9338
9418
|
after?: boolean;
|
|
9339
9419
|
};
|
|
@@ -9341,22 +9421,6 @@ type StylisticKeywordSpacing = [] | [{
|
|
|
9341
9421
|
before?: boolean;
|
|
9342
9422
|
after?: boolean;
|
|
9343
9423
|
};
|
|
9344
|
-
set?: {
|
|
9345
|
-
before?: boolean;
|
|
9346
|
-
after?: boolean;
|
|
9347
|
-
};
|
|
9348
|
-
using?: {
|
|
9349
|
-
before?: boolean;
|
|
9350
|
-
after?: boolean;
|
|
9351
|
-
};
|
|
9352
|
-
yield?: {
|
|
9353
|
-
before?: boolean;
|
|
9354
|
-
after?: boolean;
|
|
9355
|
-
};
|
|
9356
|
-
type?: {
|
|
9357
|
-
before?: boolean;
|
|
9358
|
-
after?: boolean;
|
|
9359
|
-
};
|
|
9360
9424
|
};
|
|
9361
9425
|
}];
|
|
9362
9426
|
// ----- @stylistic/line-comment-position -----
|
|
@@ -9556,6 +9620,7 @@ type StylisticNoExtraParens = [] | ["functions"] | [] | ["all"] | ["all", {
|
|
|
9556
9620
|
LogicalExpression?: boolean;
|
|
9557
9621
|
AwaitExpression?: boolean;
|
|
9558
9622
|
};
|
|
9623
|
+
ignoredNodes?: string[];
|
|
9559
9624
|
}];
|
|
9560
9625
|
// ----- @stylistic/no-mixed-operators -----
|
|
9561
9626
|
type StylisticNoMixedOperators = [] | [{
|
|
@@ -9671,7 +9736,7 @@ type StylisticPaddedBlocks = [] | [("always" | "never" | "start" | "end") | {
|
|
|
9671
9736
|
// ----- @stylistic/padding-line-between-statements -----
|
|
9672
9737
|
type _StylisticPaddingLineBetweenStatementsPaddingType = "any" | "never" | "always";
|
|
9673
9738
|
type _StylisticPaddingLineBetweenStatementsStatementOption = _StylisticPaddingLineBetweenStatementsStatementType | [_StylisticPaddingLineBetweenStatementsStatementType, ..._StylisticPaddingLineBetweenStatementsStatementType[]];
|
|
9674
|
-
type _StylisticPaddingLineBetweenStatementsStatementType = "*" | "exports" | "require" | "directive" | "iife" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "continue" | "debugger" | "default" | "do" | "for" | "if" | "import" | "
|
|
9739
|
+
type _StylisticPaddingLineBetweenStatementsStatementType = "*" | "exports" | "require" | "directive" | "iife" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "continue" | "debugger" | "default" | "do" | "for" | "if" | "import" | "switch" | "throw" | "try" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "function-overload" | "block-like" | "singleline-block-like" | "multiline-block-like" | "expression" | "singleline-expression" | "multiline-expression" | "return" | "singleline-return" | "multiline-return" | "export" | "singleline-export" | "multiline-export" | "var" | "singleline-var" | "multiline-var" | "let" | "singleline-let" | "multiline-let" | "const" | "singleline-const" | "multiline-const" | "using" | "singleline-using" | "multiline-using" | "type" | "singleline-type" | "multiline-type";
|
|
9675
9740
|
type StylisticPaddingLineBetweenStatements = {
|
|
9676
9741
|
blankLine: _StylisticPaddingLineBetweenStatementsPaddingType;
|
|
9677
9742
|
prev: _StylisticPaddingLineBetweenStatementsStatementOption;
|
|
@@ -9900,7 +9965,6 @@ interface TomlRuleOptions {
|
|
|
9900
9965
|
*/
|
|
9901
9966
|
"toml/vue-custom-block/no-parsing-error"?: Linter.RuleEntry<[]>;
|
|
9902
9967
|
}
|
|
9903
|
-
|
|
9904
9968
|
/* ======= Declarations ======= */
|
|
9905
9969
|
// ----- toml/array-bracket-newline -----
|
|
9906
9970
|
type TomlArrayBracketNewline = [] | [("always" | "never" | "consistent") | {
|
|
@@ -10035,8 +10099,6 @@ interface TsdocRuleOptions {
|
|
|
10035
10099
|
*/
|
|
10036
10100
|
"tsdoc/syntax"?: Linter.RuleEntry<[]>;
|
|
10037
10101
|
}
|
|
10038
|
-
|
|
10039
|
-
/* ======= Declarations ======= */
|
|
10040
10102
|
//#endregion
|
|
10041
10103
|
//#region src/generated/dts/typescript.d.ts
|
|
10042
10104
|
interface TypescriptRuleOptions {
|
|
@@ -10738,7 +10800,6 @@ interface TypescriptRuleOptions {
|
|
|
10738
10800
|
*/
|
|
10739
10801
|
"import/no-named-default"?: Linter.RuleEntry<[]>;
|
|
10740
10802
|
}
|
|
10741
|
-
|
|
10742
10803
|
/* ======= Declarations ======= */
|
|
10743
10804
|
// ----- @typescript-eslint/array-type -----
|
|
10744
10805
|
type TypescriptEslintArrayType = [] | [{
|
|
@@ -11703,694 +11764,713 @@ type ImportNoDuplicates = [] | [{
|
|
|
11703
11764
|
interface UnicornRuleOptions {
|
|
11704
11765
|
/**
|
|
11705
11766
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
11706
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11767
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/better-regex.md
|
|
11707
11768
|
*/
|
|
11708
11769
|
"unicorn/better-regex"?: Linter.RuleEntry<UnicornBetterRegex>;
|
|
11709
11770
|
/**
|
|
11710
11771
|
* Enforce a specific parameter name in catch clauses.
|
|
11711
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11772
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/catch-error-name.md
|
|
11712
11773
|
*/
|
|
11713
11774
|
"unicorn/catch-error-name"?: Linter.RuleEntry<UnicornCatchErrorName>;
|
|
11714
11775
|
/**
|
|
11715
11776
|
* Enforce consistent assertion style with `node:assert`.
|
|
11716
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11777
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-assert.md
|
|
11717
11778
|
*/
|
|
11718
11779
|
"unicorn/consistent-assert"?: Linter.RuleEntry<[]>;
|
|
11719
11780
|
/**
|
|
11720
11781
|
* Prefer passing `Date` directly to the constructor when cloning.
|
|
11721
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11782
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-date-clone.md
|
|
11722
11783
|
*/
|
|
11723
11784
|
"unicorn/consistent-date-clone"?: Linter.RuleEntry<[]>;
|
|
11724
11785
|
/**
|
|
11725
11786
|
* Use destructured variables over properties.
|
|
11726
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11787
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-destructuring.md
|
|
11727
11788
|
*/
|
|
11728
11789
|
"unicorn/consistent-destructuring"?: Linter.RuleEntry<[]>;
|
|
11729
11790
|
/**
|
|
11730
11791
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
11731
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11792
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-empty-array-spread.md
|
|
11732
11793
|
*/
|
|
11733
11794
|
"unicorn/consistent-empty-array-spread"?: Linter.RuleEntry<[]>;
|
|
11734
11795
|
/**
|
|
11735
11796
|
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
11736
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11797
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-existence-index-check.md
|
|
11737
11798
|
*/
|
|
11738
11799
|
"unicorn/consistent-existence-index-check"?: Linter.RuleEntry<[]>;
|
|
11739
11800
|
/**
|
|
11740
11801
|
* Move function definitions to the highest possible scope.
|
|
11741
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11802
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-function-scoping.md
|
|
11742
11803
|
*/
|
|
11743
11804
|
"unicorn/consistent-function-scoping"?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
|
|
11744
11805
|
/**
|
|
11745
11806
|
* Enforce correct `Error` subclassing.
|
|
11746
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11807
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/custom-error-definition.md
|
|
11747
11808
|
*/
|
|
11748
11809
|
"unicorn/custom-error-definition"?: Linter.RuleEntry<[]>;
|
|
11749
11810
|
/**
|
|
11750
11811
|
* Enforce no spaces between braces.
|
|
11751
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11812
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/empty-brace-spaces.md
|
|
11752
11813
|
*/
|
|
11753
11814
|
"unicorn/empty-brace-spaces"?: Linter.RuleEntry<[]>;
|
|
11754
11815
|
/**
|
|
11755
11816
|
* Enforce passing a `message` value when creating a built-in error.
|
|
11756
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11817
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/error-message.md
|
|
11757
11818
|
*/
|
|
11758
11819
|
"unicorn/error-message"?: Linter.RuleEntry<[]>;
|
|
11759
11820
|
/**
|
|
11760
11821
|
* Require escape sequences to use uppercase or lowercase values.
|
|
11761
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11822
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/escape-case.md
|
|
11762
11823
|
*/
|
|
11763
11824
|
"unicorn/escape-case"?: Linter.RuleEntry<UnicornEscapeCase>;
|
|
11764
11825
|
/**
|
|
11765
11826
|
* Add expiration conditions to TODO comments.
|
|
11766
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11827
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/expiring-todo-comments.md
|
|
11767
11828
|
*/
|
|
11768
11829
|
"unicorn/expiring-todo-comments"?: Linter.RuleEntry<UnicornExpiringTodoComments>;
|
|
11769
11830
|
/**
|
|
11770
11831
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
11771
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11832
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/explicit-length-check.md
|
|
11772
11833
|
*/
|
|
11773
11834
|
"unicorn/explicit-length-check"?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
|
|
11774
11835
|
/**
|
|
11775
11836
|
* Enforce a case style for filenames.
|
|
11776
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11837
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/filename-case.md
|
|
11777
11838
|
*/
|
|
11778
11839
|
"unicorn/filename-case"?: Linter.RuleEntry<UnicornFilenameCase>;
|
|
11779
11840
|
/**
|
|
11780
11841
|
* Enforce specific import styles per module.
|
|
11781
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11842
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/import-style.md
|
|
11782
11843
|
*/
|
|
11783
11844
|
"unicorn/import-style"?: Linter.RuleEntry<UnicornImportStyle>;
|
|
11784
11845
|
/**
|
|
11785
11846
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
11786
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11847
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/new-for-builtins.md
|
|
11787
11848
|
*/
|
|
11788
11849
|
"unicorn/new-for-builtins"?: Linter.RuleEntry<[]>;
|
|
11789
11850
|
/**
|
|
11790
11851
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
11791
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11852
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-abusive-eslint-disable.md
|
|
11792
11853
|
*/
|
|
11793
11854
|
"unicorn/no-abusive-eslint-disable"?: Linter.RuleEntry<[]>;
|
|
11794
11855
|
/**
|
|
11795
11856
|
* Disallow recursive access to `this` within getters and setters.
|
|
11796
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11857
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-accessor-recursion.md
|
|
11797
11858
|
*/
|
|
11798
11859
|
"unicorn/no-accessor-recursion"?: Linter.RuleEntry<[]>;
|
|
11799
11860
|
/**
|
|
11800
11861
|
* Disallow anonymous functions and classes as the default export.
|
|
11801
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11862
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-anonymous-default-export.md
|
|
11802
11863
|
*/
|
|
11803
11864
|
"unicorn/no-anonymous-default-export"?: Linter.RuleEntry<[]>;
|
|
11804
11865
|
/**
|
|
11805
11866
|
* Prevent passing a function reference directly to iterator methods.
|
|
11806
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11867
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-callback-reference.md
|
|
11807
11868
|
*/
|
|
11808
11869
|
"unicorn/no-array-callback-reference"?: Linter.RuleEntry<[]>;
|
|
11809
11870
|
/**
|
|
11810
11871
|
* Prefer `for…of` over the `forEach` method.
|
|
11811
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11872
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-for-each.md
|
|
11812
11873
|
*/
|
|
11813
11874
|
"unicorn/no-array-for-each"?: Linter.RuleEntry<[]>;
|
|
11814
11875
|
/**
|
|
11815
11876
|
* Disallow using the `this` argument in array methods.
|
|
11816
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11877
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-method-this-argument.md
|
|
11817
11878
|
*/
|
|
11818
11879
|
"unicorn/no-array-method-this-argument"?: Linter.RuleEntry<[]>;
|
|
11819
11880
|
/**
|
|
11820
11881
|
* Replaced by `unicorn/prefer-single-call` which covers more cases.
|
|
11821
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11882
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-array-push-push
|
|
11822
11883
|
* @deprecated
|
|
11823
11884
|
*/
|
|
11824
11885
|
"unicorn/no-array-push-push"?: Linter.RuleEntry<[]>;
|
|
11825
11886
|
/**
|
|
11826
11887
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
11827
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11888
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-reduce.md
|
|
11828
11889
|
*/
|
|
11829
11890
|
"unicorn/no-array-reduce"?: Linter.RuleEntry<UnicornNoArrayReduce>;
|
|
11830
11891
|
/**
|
|
11831
11892
|
* Prefer `Array#toReversed()` over `Array#reverse()`.
|
|
11832
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11893
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-reverse.md
|
|
11833
11894
|
*/
|
|
11834
11895
|
"unicorn/no-array-reverse"?: Linter.RuleEntry<UnicornNoArrayReverse>;
|
|
11896
|
+
/**
|
|
11897
|
+
* Prefer `Array#toSorted()` over `Array#sort()`.
|
|
11898
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-sort.md
|
|
11899
|
+
*/
|
|
11900
|
+
"unicorn/no-array-sort"?: Linter.RuleEntry<UnicornNoArraySort>;
|
|
11835
11901
|
/**
|
|
11836
11902
|
* Disallow member access from await expression.
|
|
11837
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11903
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-await-expression-member.md
|
|
11838
11904
|
*/
|
|
11839
11905
|
"unicorn/no-await-expression-member"?: Linter.RuleEntry<[]>;
|
|
11840
11906
|
/**
|
|
11841
11907
|
* Disallow using `await` in `Promise` method parameters.
|
|
11842
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11908
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-await-in-promise-methods.md
|
|
11843
11909
|
*/
|
|
11844
11910
|
"unicorn/no-await-in-promise-methods"?: Linter.RuleEntry<[]>;
|
|
11845
11911
|
/**
|
|
11846
11912
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
11847
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11913
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-console-spaces.md
|
|
11848
11914
|
*/
|
|
11849
11915
|
"unicorn/no-console-spaces"?: Linter.RuleEntry<[]>;
|
|
11850
11916
|
/**
|
|
11851
11917
|
* Do not use `document.cookie` directly.
|
|
11852
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11918
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-document-cookie.md
|
|
11853
11919
|
*/
|
|
11854
11920
|
"unicorn/no-document-cookie"?: Linter.RuleEntry<[]>;
|
|
11855
11921
|
/**
|
|
11856
11922
|
* Disallow empty files.
|
|
11857
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11923
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-empty-file.md
|
|
11858
11924
|
*/
|
|
11859
11925
|
"unicorn/no-empty-file"?: Linter.RuleEntry<[]>;
|
|
11860
11926
|
/**
|
|
11861
11927
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
11862
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11928
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-for-loop.md
|
|
11863
11929
|
*/
|
|
11864
11930
|
"unicorn/no-for-loop"?: Linter.RuleEntry<[]>;
|
|
11865
11931
|
/**
|
|
11866
11932
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
11867
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11933
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-hex-escape.md
|
|
11868
11934
|
*/
|
|
11869
11935
|
"unicorn/no-hex-escape"?: Linter.RuleEntry<[]>;
|
|
11870
11936
|
/**
|
|
11871
11937
|
* Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
|
|
11872
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11938
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-instanceof-array
|
|
11873
11939
|
* @deprecated
|
|
11874
11940
|
*/
|
|
11875
11941
|
"unicorn/no-instanceof-array"?: Linter.RuleEntry<[]>;
|
|
11876
11942
|
/**
|
|
11877
11943
|
* Disallow `instanceof` with built-in objects
|
|
11878
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11944
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-instanceof-builtins.md
|
|
11879
11945
|
*/
|
|
11880
11946
|
"unicorn/no-instanceof-builtins"?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
|
|
11881
11947
|
/**
|
|
11882
11948
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
11883
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11949
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-invalid-fetch-options.md
|
|
11884
11950
|
*/
|
|
11885
11951
|
"unicorn/no-invalid-fetch-options"?: Linter.RuleEntry<[]>;
|
|
11886
11952
|
/**
|
|
11887
11953
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
11888
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11954
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-invalid-remove-event-listener.md
|
|
11889
11955
|
*/
|
|
11890
11956
|
"unicorn/no-invalid-remove-event-listener"?: Linter.RuleEntry<[]>;
|
|
11891
11957
|
/**
|
|
11892
11958
|
* Disallow identifiers starting with `new` or `class`.
|
|
11893
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11959
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-keyword-prefix.md
|
|
11894
11960
|
*/
|
|
11895
11961
|
"unicorn/no-keyword-prefix"?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
|
|
11896
11962
|
/**
|
|
11897
11963
|
* Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
|
|
11898
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11964
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-length-as-slice-end
|
|
11899
11965
|
* @deprecated
|
|
11900
11966
|
*/
|
|
11901
11967
|
"unicorn/no-length-as-slice-end"?: Linter.RuleEntry<[]>;
|
|
11902
11968
|
/**
|
|
11903
11969
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
11904
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11970
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-lonely-if.md
|
|
11905
11971
|
*/
|
|
11906
11972
|
"unicorn/no-lonely-if"?: Linter.RuleEntry<[]>;
|
|
11907
11973
|
/**
|
|
11908
11974
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
11909
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11975
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-magic-array-flat-depth.md
|
|
11910
11976
|
*/
|
|
11911
11977
|
"unicorn/no-magic-array-flat-depth"?: Linter.RuleEntry<[]>;
|
|
11912
11978
|
/**
|
|
11913
11979
|
* Disallow named usage of default import and export.
|
|
11914
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11980
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-named-default.md
|
|
11915
11981
|
*/
|
|
11916
11982
|
"unicorn/no-named-default"?: Linter.RuleEntry<[]>;
|
|
11917
11983
|
/**
|
|
11918
11984
|
* Disallow negated conditions.
|
|
11919
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11985
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-negated-condition.md
|
|
11920
11986
|
*/
|
|
11921
11987
|
"unicorn/no-negated-condition"?: Linter.RuleEntry<[]>;
|
|
11922
11988
|
/**
|
|
11923
11989
|
* Disallow negated expression in equality check.
|
|
11924
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11990
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-negation-in-equality-check.md
|
|
11925
11991
|
*/
|
|
11926
11992
|
"unicorn/no-negation-in-equality-check"?: Linter.RuleEntry<[]>;
|
|
11927
11993
|
/**
|
|
11928
11994
|
* Disallow nested ternary expressions.
|
|
11929
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
11995
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-nested-ternary.md
|
|
11930
11996
|
*/
|
|
11931
11997
|
"unicorn/no-nested-ternary"?: Linter.RuleEntry<[]>;
|
|
11932
11998
|
/**
|
|
11933
11999
|
* Disallow `new Array()`.
|
|
11934
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12000
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-new-array.md
|
|
11935
12001
|
*/
|
|
11936
12002
|
"unicorn/no-new-array"?: Linter.RuleEntry<[]>;
|
|
11937
12003
|
/**
|
|
11938
12004
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
11939
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12005
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-new-buffer.md
|
|
11940
12006
|
*/
|
|
11941
12007
|
"unicorn/no-new-buffer"?: Linter.RuleEntry<[]>;
|
|
11942
12008
|
/**
|
|
11943
12009
|
* Disallow the use of the `null` literal.
|
|
11944
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12010
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-null.md
|
|
11945
12011
|
*/
|
|
11946
12012
|
"unicorn/no-null"?: Linter.RuleEntry<UnicornNoNull>;
|
|
11947
12013
|
/**
|
|
11948
12014
|
* Disallow the use of objects as default parameters.
|
|
11949
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12015
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-object-as-default-parameter.md
|
|
11950
12016
|
*/
|
|
11951
12017
|
"unicorn/no-object-as-default-parameter"?: Linter.RuleEntry<[]>;
|
|
11952
12018
|
/**
|
|
11953
12019
|
* Disallow `process.exit()`.
|
|
11954
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12020
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-process-exit.md
|
|
11955
12021
|
*/
|
|
11956
12022
|
"unicorn/no-process-exit"?: Linter.RuleEntry<[]>;
|
|
11957
12023
|
/**
|
|
11958
12024
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
11959
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12025
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-single-promise-in-promise-methods.md
|
|
11960
12026
|
*/
|
|
11961
12027
|
"unicorn/no-single-promise-in-promise-methods"?: Linter.RuleEntry<[]>;
|
|
11962
12028
|
/**
|
|
11963
12029
|
* Disallow classes that only have static members.
|
|
11964
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12030
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-static-only-class.md
|
|
11965
12031
|
*/
|
|
11966
12032
|
"unicorn/no-static-only-class"?: Linter.RuleEntry<[]>;
|
|
11967
12033
|
/**
|
|
11968
12034
|
* Disallow `then` property.
|
|
11969
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12035
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-thenable.md
|
|
11970
12036
|
*/
|
|
11971
12037
|
"unicorn/no-thenable"?: Linter.RuleEntry<[]>;
|
|
11972
12038
|
/**
|
|
11973
12039
|
* Disallow assigning `this` to a variable.
|
|
11974
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12040
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-this-assignment.md
|
|
11975
12041
|
*/
|
|
11976
12042
|
"unicorn/no-this-assignment"?: Linter.RuleEntry<[]>;
|
|
11977
12043
|
/**
|
|
11978
12044
|
* Disallow comparing `undefined` using `typeof`.
|
|
11979
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12045
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-typeof-undefined.md
|
|
11980
12046
|
*/
|
|
11981
12047
|
"unicorn/no-typeof-undefined"?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
|
|
11982
12048
|
/**
|
|
11983
12049
|
* Disallow using `1` as the `depth` argument of `Array#flat()`.
|
|
11984
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12050
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-array-flat-depth.md
|
|
11985
12051
|
*/
|
|
11986
12052
|
"unicorn/no-unnecessary-array-flat-depth"?: Linter.RuleEntry<[]>;
|
|
11987
12053
|
/**
|
|
11988
12054
|
* Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
|
|
11989
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12055
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-array-splice-count.md
|
|
11990
12056
|
*/
|
|
11991
12057
|
"unicorn/no-unnecessary-array-splice-count"?: Linter.RuleEntry<[]>;
|
|
11992
12058
|
/**
|
|
11993
12059
|
* Disallow awaiting non-promise values.
|
|
11994
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12060
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-await.md
|
|
11995
12061
|
*/
|
|
11996
12062
|
"unicorn/no-unnecessary-await"?: Linter.RuleEntry<[]>;
|
|
11997
12063
|
/**
|
|
11998
12064
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
11999
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12065
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-polyfills.md
|
|
12000
12066
|
*/
|
|
12001
12067
|
"unicorn/no-unnecessary-polyfills"?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
|
|
12002
12068
|
/**
|
|
12003
12069
|
* Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
12004
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12070
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-slice-end.md
|
|
12005
12071
|
*/
|
|
12006
12072
|
"unicorn/no-unnecessary-slice-end"?: Linter.RuleEntry<[]>;
|
|
12007
12073
|
/**
|
|
12008
12074
|
* Disallow unreadable array destructuring.
|
|
12009
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12075
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unreadable-array-destructuring.md
|
|
12010
12076
|
*/
|
|
12011
12077
|
"unicorn/no-unreadable-array-destructuring"?: Linter.RuleEntry<[]>;
|
|
12012
12078
|
/**
|
|
12013
12079
|
* Disallow unreadable IIFEs.
|
|
12014
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12080
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unreadable-iife.md
|
|
12015
12081
|
*/
|
|
12016
12082
|
"unicorn/no-unreadable-iife"?: Linter.RuleEntry<[]>;
|
|
12017
12083
|
/**
|
|
12018
12084
|
* Disallow unused object properties.
|
|
12019
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12085
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unused-properties.md
|
|
12020
12086
|
*/
|
|
12021
12087
|
"unicorn/no-unused-properties"?: Linter.RuleEntry<[]>;
|
|
12022
12088
|
/**
|
|
12023
12089
|
* Disallow unnecessary `Error.captureStackTrace(…)`.
|
|
12024
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12090
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-error-capture-stack-trace.md
|
|
12025
12091
|
*/
|
|
12026
12092
|
"unicorn/no-useless-error-capture-stack-trace"?: Linter.RuleEntry<[]>;
|
|
12027
12093
|
/**
|
|
12028
12094
|
* Disallow useless fallback when spreading in object literals.
|
|
12029
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12095
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-fallback-in-spread.md
|
|
12030
12096
|
*/
|
|
12031
12097
|
"unicorn/no-useless-fallback-in-spread"?: Linter.RuleEntry<[]>;
|
|
12032
12098
|
/**
|
|
12033
12099
|
* Disallow useless array length check.
|
|
12034
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12100
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-length-check.md
|
|
12035
12101
|
*/
|
|
12036
12102
|
"unicorn/no-useless-length-check"?: Linter.RuleEntry<[]>;
|
|
12037
12103
|
/**
|
|
12038
12104
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
12039
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12105
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-promise-resolve-reject.md
|
|
12040
12106
|
*/
|
|
12041
12107
|
"unicorn/no-useless-promise-resolve-reject"?: Linter.RuleEntry<[]>;
|
|
12042
12108
|
/**
|
|
12043
12109
|
* Disallow unnecessary spread.
|
|
12044
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12110
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-spread.md
|
|
12045
12111
|
*/
|
|
12046
12112
|
"unicorn/no-useless-spread"?: Linter.RuleEntry<[]>;
|
|
12047
12113
|
/**
|
|
12048
12114
|
* Disallow useless case in switch statements.
|
|
12049
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12115
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-switch-case.md
|
|
12050
12116
|
*/
|
|
12051
12117
|
"unicorn/no-useless-switch-case"?: Linter.RuleEntry<[]>;
|
|
12052
12118
|
/**
|
|
12053
12119
|
* Disallow useless `undefined`.
|
|
12054
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12120
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-undefined.md
|
|
12055
12121
|
*/
|
|
12056
12122
|
"unicorn/no-useless-undefined"?: Linter.RuleEntry<UnicornNoUselessUndefined>;
|
|
12057
12123
|
/**
|
|
12058
12124
|
* Disallow number literals with zero fractions or dangling dots.
|
|
12059
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12125
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-zero-fractions.md
|
|
12060
12126
|
*/
|
|
12061
12127
|
"unicorn/no-zero-fractions"?: Linter.RuleEntry<[]>;
|
|
12062
12128
|
/**
|
|
12063
12129
|
* Enforce proper case for numeric literals.
|
|
12064
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12130
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/number-literal-case.md
|
|
12065
12131
|
*/
|
|
12066
12132
|
"unicorn/number-literal-case"?: Linter.RuleEntry<UnicornNumberLiteralCase>;
|
|
12067
12133
|
/**
|
|
12068
12134
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
12069
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12135
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/numeric-separators-style.md
|
|
12070
12136
|
*/
|
|
12071
12137
|
"unicorn/numeric-separators-style"?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
|
|
12072
12138
|
/**
|
|
12073
12139
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
12074
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12140
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-add-event-listener.md
|
|
12075
12141
|
*/
|
|
12076
12142
|
"unicorn/prefer-add-event-listener"?: Linter.RuleEntry<UnicornPreferAddEventListener>;
|
|
12077
12143
|
/**
|
|
12078
12144
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
12079
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12145
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-find.md
|
|
12080
12146
|
*/
|
|
12081
12147
|
"unicorn/prefer-array-find"?: Linter.RuleEntry<UnicornPreferArrayFind>;
|
|
12082
12148
|
/**
|
|
12083
12149
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
12084
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12150
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-flat.md
|
|
12085
12151
|
*/
|
|
12086
12152
|
"unicorn/prefer-array-flat"?: Linter.RuleEntry<UnicornPreferArrayFlat>;
|
|
12087
12153
|
/**
|
|
12088
12154
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
12089
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12155
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-flat-map.md
|
|
12090
12156
|
*/
|
|
12091
12157
|
"unicorn/prefer-array-flat-map"?: Linter.RuleEntry<[]>;
|
|
12092
12158
|
/**
|
|
12093
12159
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
12094
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12160
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-index-of.md
|
|
12095
12161
|
*/
|
|
12096
12162
|
"unicorn/prefer-array-index-of"?: Linter.RuleEntry<[]>;
|
|
12097
12163
|
/**
|
|
12098
12164
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
12099
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12165
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-some.md
|
|
12100
12166
|
*/
|
|
12101
12167
|
"unicorn/prefer-array-some"?: Linter.RuleEntry<[]>;
|
|
12102
12168
|
/**
|
|
12103
12169
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
12104
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12170
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-at.md
|
|
12105
12171
|
*/
|
|
12106
12172
|
"unicorn/prefer-at"?: Linter.RuleEntry<UnicornPreferAt>;
|
|
12173
|
+
/**
|
|
12174
|
+
* Prefer `BigInt` literals over the constructor.
|
|
12175
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-bigint-literals.md
|
|
12176
|
+
*/
|
|
12177
|
+
"unicorn/prefer-bigint-literals"?: Linter.RuleEntry<[]>;
|
|
12107
12178
|
/**
|
|
12108
12179
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
12109
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12180
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-blob-reading-methods.md
|
|
12110
12181
|
*/
|
|
12111
12182
|
"unicorn/prefer-blob-reading-methods"?: Linter.RuleEntry<[]>;
|
|
12112
12183
|
/**
|
|
12113
12184
|
* Prefer class field declarations over `this` assignments in constructors.
|
|
12114
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12185
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-class-fields.md
|
|
12115
12186
|
*/
|
|
12116
12187
|
"unicorn/prefer-class-fields"?: Linter.RuleEntry<[]>;
|
|
12188
|
+
/**
|
|
12189
|
+
* Prefer using `Element#classList.toggle()` to toggle class names.
|
|
12190
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-classlist-toggle.md
|
|
12191
|
+
*/
|
|
12192
|
+
"unicorn/prefer-classlist-toggle"?: Linter.RuleEntry<[]>;
|
|
12117
12193
|
/**
|
|
12118
12194
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
12119
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12195
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-code-point.md
|
|
12120
12196
|
*/
|
|
12121
12197
|
"unicorn/prefer-code-point"?: Linter.RuleEntry<[]>;
|
|
12122
12198
|
/**
|
|
12123
12199
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
12124
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12200
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-date-now.md
|
|
12125
12201
|
*/
|
|
12126
12202
|
"unicorn/prefer-date-now"?: Linter.RuleEntry<[]>;
|
|
12127
12203
|
/**
|
|
12128
12204
|
* Prefer default parameters over reassignment.
|
|
12129
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12205
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-default-parameters.md
|
|
12130
12206
|
*/
|
|
12131
12207
|
"unicorn/prefer-default-parameters"?: Linter.RuleEntry<[]>;
|
|
12132
12208
|
/**
|
|
12133
12209
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
12134
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12210
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-append.md
|
|
12135
12211
|
*/
|
|
12136
12212
|
"unicorn/prefer-dom-node-append"?: Linter.RuleEntry<[]>;
|
|
12137
12213
|
/**
|
|
12138
12214
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
12139
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12215
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-dataset.md
|
|
12140
12216
|
*/
|
|
12141
12217
|
"unicorn/prefer-dom-node-dataset"?: Linter.RuleEntry<[]>;
|
|
12142
12218
|
/**
|
|
12143
12219
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
12144
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12220
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-remove.md
|
|
12145
12221
|
*/
|
|
12146
12222
|
"unicorn/prefer-dom-node-remove"?: Linter.RuleEntry<[]>;
|
|
12147
12223
|
/**
|
|
12148
12224
|
* Prefer `.textContent` over `.innerText`.
|
|
12149
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12225
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-text-content.md
|
|
12150
12226
|
*/
|
|
12151
12227
|
"unicorn/prefer-dom-node-text-content"?: Linter.RuleEntry<[]>;
|
|
12152
12228
|
/**
|
|
12153
12229
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
12154
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12230
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-event-target.md
|
|
12155
12231
|
*/
|
|
12156
12232
|
"unicorn/prefer-event-target"?: Linter.RuleEntry<[]>;
|
|
12157
12233
|
/**
|
|
12158
12234
|
* Prefer `export…from` when re-exporting.
|
|
12159
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12235
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-export-from.md
|
|
12160
12236
|
*/
|
|
12161
12237
|
"unicorn/prefer-export-from"?: Linter.RuleEntry<UnicornPreferExportFrom>;
|
|
12162
12238
|
/**
|
|
12163
12239
|
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
12164
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12240
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-global-this.md
|
|
12165
12241
|
*/
|
|
12166
12242
|
"unicorn/prefer-global-this"?: Linter.RuleEntry<[]>;
|
|
12167
12243
|
/**
|
|
12168
12244
|
* Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
|
|
12169
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12245
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-import-meta-properties.md
|
|
12170
12246
|
*/
|
|
12171
12247
|
"unicorn/prefer-import-meta-properties"?: Linter.RuleEntry<[]>;
|
|
12172
12248
|
/**
|
|
12173
12249
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
12174
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12250
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-includes.md
|
|
12175
12251
|
*/
|
|
12176
12252
|
"unicorn/prefer-includes"?: Linter.RuleEntry<[]>;
|
|
12177
12253
|
/**
|
|
12178
12254
|
* Prefer reading a JSON file as a buffer.
|
|
12179
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12255
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-json-parse-buffer.md
|
|
12180
12256
|
*/
|
|
12181
12257
|
"unicorn/prefer-json-parse-buffer"?: Linter.RuleEntry<[]>;
|
|
12182
12258
|
/**
|
|
12183
12259
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
12184
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12260
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-keyboard-event-key.md
|
|
12185
12261
|
*/
|
|
12186
12262
|
"unicorn/prefer-keyboard-event-key"?: Linter.RuleEntry<[]>;
|
|
12187
12263
|
/**
|
|
12188
12264
|
* Prefer using a logical operator over a ternary.
|
|
12189
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12265
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-logical-operator-over-ternary.md
|
|
12190
12266
|
*/
|
|
12191
12267
|
"unicorn/prefer-logical-operator-over-ternary"?: Linter.RuleEntry<[]>;
|
|
12192
12268
|
/**
|
|
12193
12269
|
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
12194
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12270
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-math-min-max.md
|
|
12195
12271
|
*/
|
|
12196
12272
|
"unicorn/prefer-math-min-max"?: Linter.RuleEntry<[]>;
|
|
12197
12273
|
/**
|
|
12198
12274
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
12199
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12275
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-math-trunc.md
|
|
12200
12276
|
*/
|
|
12201
12277
|
"unicorn/prefer-math-trunc"?: Linter.RuleEntry<[]>;
|
|
12202
12278
|
/**
|
|
12203
12279
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
12204
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12280
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-modern-dom-apis.md
|
|
12205
12281
|
*/
|
|
12206
12282
|
"unicorn/prefer-modern-dom-apis"?: Linter.RuleEntry<[]>;
|
|
12207
12283
|
/**
|
|
12208
12284
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
12209
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12285
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-modern-math-apis.md
|
|
12210
12286
|
*/
|
|
12211
12287
|
"unicorn/prefer-modern-math-apis"?: Linter.RuleEntry<[]>;
|
|
12212
12288
|
/**
|
|
12213
12289
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
12214
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12290
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-module.md
|
|
12215
12291
|
*/
|
|
12216
12292
|
"unicorn/prefer-module"?: Linter.RuleEntry<[]>;
|
|
12217
12293
|
/**
|
|
12218
12294
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
12219
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12295
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-native-coercion-functions.md
|
|
12220
12296
|
*/
|
|
12221
12297
|
"unicorn/prefer-native-coercion-functions"?: Linter.RuleEntry<[]>;
|
|
12222
12298
|
/**
|
|
12223
12299
|
* Prefer negative index over `.length - index` when possible.
|
|
12224
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12300
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-negative-index.md
|
|
12225
12301
|
*/
|
|
12226
12302
|
"unicorn/prefer-negative-index"?: Linter.RuleEntry<[]>;
|
|
12227
12303
|
/**
|
|
12228
12304
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
12229
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12305
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-node-protocol.md
|
|
12230
12306
|
*/
|
|
12231
12307
|
"unicorn/prefer-node-protocol"?: Linter.RuleEntry<[]>;
|
|
12232
12308
|
/**
|
|
12233
12309
|
* Prefer `Number` static properties over global ones.
|
|
12234
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12310
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-number-properties.md
|
|
12235
12311
|
*/
|
|
12236
12312
|
"unicorn/prefer-number-properties"?: Linter.RuleEntry<UnicornPreferNumberProperties>;
|
|
12237
12313
|
/**
|
|
12238
12314
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
12239
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12315
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-object-from-entries.md
|
|
12240
12316
|
*/
|
|
12241
12317
|
"unicorn/prefer-object-from-entries"?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
|
|
12242
12318
|
/**
|
|
12243
12319
|
* Prefer omitting the `catch` binding parameter.
|
|
12244
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12320
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-optional-catch-binding.md
|
|
12245
12321
|
*/
|
|
12246
12322
|
"unicorn/prefer-optional-catch-binding"?: Linter.RuleEntry<[]>;
|
|
12247
12323
|
/**
|
|
12248
12324
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
12249
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12325
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-prototype-methods.md
|
|
12250
12326
|
*/
|
|
12251
12327
|
"unicorn/prefer-prototype-methods"?: Linter.RuleEntry<[]>;
|
|
12252
12328
|
/**
|
|
12253
12329
|
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
12254
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12330
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-query-selector.md
|
|
12255
12331
|
*/
|
|
12256
12332
|
"unicorn/prefer-query-selector"?: Linter.RuleEntry<[]>;
|
|
12257
12333
|
/**
|
|
12258
12334
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
12259
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12335
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-reflect-apply.md
|
|
12260
12336
|
*/
|
|
12261
12337
|
"unicorn/prefer-reflect-apply"?: Linter.RuleEntry<[]>;
|
|
12262
12338
|
/**
|
|
12263
12339
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
12264
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12340
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-regexp-test.md
|
|
12265
12341
|
*/
|
|
12266
12342
|
"unicorn/prefer-regexp-test"?: Linter.RuleEntry<[]>;
|
|
12267
12343
|
/**
|
|
12268
12344
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
12269
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12345
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-set-has.md
|
|
12270
12346
|
*/
|
|
12271
12347
|
"unicorn/prefer-set-has"?: Linter.RuleEntry<[]>;
|
|
12272
12348
|
/**
|
|
12273
12349
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
12274
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12350
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-set-size.md
|
|
12275
12351
|
*/
|
|
12276
12352
|
"unicorn/prefer-set-size"?: Linter.RuleEntry<[]>;
|
|
12277
12353
|
/**
|
|
12278
12354
|
* Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
|
|
12279
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12355
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-single-call.md
|
|
12280
12356
|
*/
|
|
12281
12357
|
"unicorn/prefer-single-call"?: Linter.RuleEntry<UnicornPreferSingleCall>;
|
|
12282
12358
|
/**
|
|
12283
12359
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
12284
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12360
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-spread.md
|
|
12285
12361
|
*/
|
|
12286
12362
|
"unicorn/prefer-spread"?: Linter.RuleEntry<[]>;
|
|
12287
12363
|
/**
|
|
12288
12364
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
12289
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12365
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-raw.md
|
|
12290
12366
|
*/
|
|
12291
12367
|
"unicorn/prefer-string-raw"?: Linter.RuleEntry<[]>;
|
|
12292
12368
|
/**
|
|
12293
12369
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
12294
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12370
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-replace-all.md
|
|
12295
12371
|
*/
|
|
12296
12372
|
"unicorn/prefer-string-replace-all"?: Linter.RuleEntry<[]>;
|
|
12297
12373
|
/**
|
|
12298
12374
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
12299
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12375
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-slice.md
|
|
12300
12376
|
*/
|
|
12301
12377
|
"unicorn/prefer-string-slice"?: Linter.RuleEntry<[]>;
|
|
12302
12378
|
/**
|
|
12303
12379
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
12304
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12380
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-starts-ends-with.md
|
|
12305
12381
|
*/
|
|
12306
12382
|
"unicorn/prefer-string-starts-ends-with"?: Linter.RuleEntry<[]>;
|
|
12307
12383
|
/**
|
|
12308
12384
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
12309
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12385
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-trim-start-end.md
|
|
12310
12386
|
*/
|
|
12311
12387
|
"unicorn/prefer-string-trim-start-end"?: Linter.RuleEntry<[]>;
|
|
12312
12388
|
/**
|
|
12313
12389
|
* Prefer using `structuredClone` to create a deep clone.
|
|
12314
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12390
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-structured-clone.md
|
|
12315
12391
|
*/
|
|
12316
12392
|
"unicorn/prefer-structured-clone"?: Linter.RuleEntry<UnicornPreferStructuredClone>;
|
|
12317
12393
|
/**
|
|
12318
12394
|
* Prefer `switch` over multiple `else-if`.
|
|
12319
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12395
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-switch.md
|
|
12320
12396
|
*/
|
|
12321
12397
|
"unicorn/prefer-switch"?: Linter.RuleEntry<UnicornPreferSwitch>;
|
|
12322
12398
|
/**
|
|
12323
12399
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
12324
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12400
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-ternary.md
|
|
12325
12401
|
*/
|
|
12326
12402
|
"unicorn/prefer-ternary"?: Linter.RuleEntry<UnicornPreferTernary>;
|
|
12327
12403
|
/**
|
|
12328
12404
|
* Prefer top-level await over top-level promises and async function calls.
|
|
12329
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12405
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-top-level-await.md
|
|
12330
12406
|
*/
|
|
12331
12407
|
"unicorn/prefer-top-level-await"?: Linter.RuleEntry<[]>;
|
|
12332
12408
|
/**
|
|
12333
12409
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
12334
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12410
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-type-error.md
|
|
12335
12411
|
*/
|
|
12336
12412
|
"unicorn/prefer-type-error"?: Linter.RuleEntry<[]>;
|
|
12337
12413
|
/**
|
|
12338
12414
|
* Prevent abbreviations.
|
|
12339
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12415
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prevent-abbreviations.md
|
|
12340
12416
|
*/
|
|
12341
12417
|
"unicorn/prevent-abbreviations"?: Linter.RuleEntry<UnicornPreventAbbreviations>;
|
|
12342
12418
|
/**
|
|
12343
12419
|
* Enforce consistent relative URL style.
|
|
12344
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12420
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/relative-url-style.md
|
|
12345
12421
|
*/
|
|
12346
12422
|
"unicorn/relative-url-style"?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
|
|
12347
12423
|
/**
|
|
12348
12424
|
* Enforce using the separator argument with `Array#join()`.
|
|
12349
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12425
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-array-join-separator.md
|
|
12350
12426
|
*/
|
|
12351
12427
|
"unicorn/require-array-join-separator"?: Linter.RuleEntry<[]>;
|
|
12428
|
+
/**
|
|
12429
|
+
* Require non-empty module attributes for imports and exports
|
|
12430
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-module-attributes.md
|
|
12431
|
+
*/
|
|
12432
|
+
"unicorn/require-module-attributes"?: Linter.RuleEntry<[]>;
|
|
12352
12433
|
/**
|
|
12353
12434
|
* Require non-empty specifier list in import and export statements.
|
|
12354
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12435
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-module-specifiers.md
|
|
12355
12436
|
*/
|
|
12356
12437
|
"unicorn/require-module-specifiers"?: Linter.RuleEntry<[]>;
|
|
12357
12438
|
/**
|
|
12358
12439
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
12359
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12440
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-number-to-fixed-digits-argument.md
|
|
12360
12441
|
*/
|
|
12361
12442
|
"unicorn/require-number-to-fixed-digits-argument"?: Linter.RuleEntry<[]>;
|
|
12362
12443
|
/**
|
|
12363
12444
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
12364
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12445
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-post-message-target-origin.md
|
|
12365
12446
|
*/
|
|
12366
12447
|
"unicorn/require-post-message-target-origin"?: Linter.RuleEntry<[]>;
|
|
12367
12448
|
/**
|
|
12368
12449
|
* Enforce better string content.
|
|
12369
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12450
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/string-content.md
|
|
12370
12451
|
*/
|
|
12371
12452
|
"unicorn/string-content"?: Linter.RuleEntry<UnicornStringContent>;
|
|
12372
12453
|
/**
|
|
12373
12454
|
* Enforce consistent brace style for `case` clauses.
|
|
12374
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12455
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/switch-case-braces.md
|
|
12375
12456
|
*/
|
|
12376
12457
|
"unicorn/switch-case-braces"?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
|
|
12377
12458
|
/**
|
|
12378
12459
|
* Fix whitespace-insensitive template indentation.
|
|
12379
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12460
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/template-indent.md
|
|
12380
12461
|
*/
|
|
12381
12462
|
"unicorn/template-indent"?: Linter.RuleEntry<UnicornTemplateIndent>;
|
|
12382
12463
|
/**
|
|
12383
12464
|
* Enforce consistent case for text encoding identifiers.
|
|
12384
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12465
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/text-encoding-identifier-case.md
|
|
12385
12466
|
*/
|
|
12386
12467
|
"unicorn/text-encoding-identifier-case"?: Linter.RuleEntry<[]>;
|
|
12387
12468
|
/**
|
|
12388
12469
|
* Require `new` when creating an error.
|
|
12389
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
12470
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/throw-new-error.md
|
|
12390
12471
|
*/
|
|
12391
12472
|
"unicorn/throw-new-error"?: Linter.RuleEntry<[]>;
|
|
12392
12473
|
}
|
|
12393
|
-
|
|
12394
12474
|
/* ======= Declarations ======= */
|
|
12395
12475
|
// ----- unicorn/better-regex -----
|
|
12396
12476
|
type UnicornBetterRegex = [] | [{
|
|
@@ -12458,6 +12538,10 @@ type UnicornNoArrayReduce = [] | [{
|
|
|
12458
12538
|
type UnicornNoArrayReverse = [] | [{
|
|
12459
12539
|
allowExpressionStatement?: boolean;
|
|
12460
12540
|
}];
|
|
12541
|
+
// ----- unicorn/no-array-sort -----
|
|
12542
|
+
type UnicornNoArraySort = [] | [{
|
|
12543
|
+
allowExpressionStatement?: boolean;
|
|
12544
|
+
}];
|
|
12461
12545
|
// ----- unicorn/no-instanceof-builtins -----
|
|
12462
12546
|
type UnicornNoInstanceofBuiltins = [] | [{
|
|
12463
12547
|
useErrorIsError?: boolean;
|
|
@@ -12629,6 +12713,11 @@ interface VitestRuleOptions {
|
|
|
12629
12713
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/expect-expect.md
|
|
12630
12714
|
*/
|
|
12631
12715
|
"vitest/expect-expect"?: Linter.RuleEntry<VitestExpectExpect>;
|
|
12716
|
+
/**
|
|
12717
|
+
* enforce hoisted APIs to be on top of the file
|
|
12718
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/hoisted-apis-on-top.md
|
|
12719
|
+
*/
|
|
12720
|
+
"vitest/hoisted-apis-on-top"?: Linter.RuleEntry<[]>;
|
|
12632
12721
|
/**
|
|
12633
12722
|
* enforce a maximum number of expect per test
|
|
12634
12723
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/max-expects.md
|
|
@@ -12830,6 +12919,11 @@ interface VitestRuleOptions {
|
|
|
12830
12919
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-resolves.md
|
|
12831
12920
|
*/
|
|
12832
12921
|
"vitest/prefer-expect-resolves"?: Linter.RuleEntry<[]>;
|
|
12922
|
+
/**
|
|
12923
|
+
* enforce using `expectTypeOf` instead of `expect(typeof ...)`
|
|
12924
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
|
|
12925
|
+
*/
|
|
12926
|
+
"vitest/prefer-expect-type-of"?: Linter.RuleEntry<[]>;
|
|
12833
12927
|
/**
|
|
12834
12928
|
* enforce having hooks in consistent order
|
|
12835
12929
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-in-order.md
|
|
@@ -12966,7 +13060,6 @@ interface VitestRuleOptions {
|
|
|
12966
13060
|
*/
|
|
12967
13061
|
"vitest/warn-todo"?: Linter.RuleEntry<[]>;
|
|
12968
13062
|
}
|
|
12969
|
-
|
|
12970
13063
|
/* ======= Declarations ======= */
|
|
12971
13064
|
// ----- vitest/consistent-test-filename -----
|
|
12972
13065
|
type VitestConsistentTestFilename = [] | [{
|
|
@@ -13210,7 +13303,6 @@ interface YmlRuleOptions {
|
|
|
13210
13303
|
*/
|
|
13211
13304
|
"yaml/vue-custom-block/no-parsing-error"?: Linter.RuleEntry<[]>;
|
|
13212
13305
|
}
|
|
13213
|
-
|
|
13214
13306
|
/* ======= Declarations ======= */
|
|
13215
13307
|
// ----- yaml/block-mapping -----
|
|
13216
13308
|
type YamlBlockMapping = [] | [("always" | "never") | {
|
|
@@ -13750,7 +13842,7 @@ declare function defineConfig(options?: OptionsConfig & Config, ...userConfigs:
|
|
|
13750
13842
|
type DefineConfig = typeof defineConfig;
|
|
13751
13843
|
//#endregion
|
|
13752
13844
|
//#region src/generated/version.d.ts
|
|
13753
|
-
declare const VERSION = "0.4.
|
|
13845
|
+
declare const VERSION = "0.4.14";
|
|
13754
13846
|
declare namespace globs_d_exports {
|
|
13755
13847
|
export { GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_JS_SRC_EXT, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG, GLOB_TSX, GLOB_YAML };
|
|
13756
13848
|
}
|
|
@@ -13785,6 +13877,7 @@ declare function importPluginUnicorn(): Promise<{
|
|
|
13785
13877
|
pluginUnicorn: eslint0.ESLint.Plugin & {
|
|
13786
13878
|
configs: {
|
|
13787
13879
|
recommended: eslint0.Linter.FlatConfig;
|
|
13880
|
+
unopinionated: eslint0.Linter.FlatConfig;
|
|
13788
13881
|
all: eslint0.Linter.FlatConfig;
|
|
13789
13882
|
"flat/all": eslint0.Linter.FlatConfig;
|
|
13790
13883
|
"flat/recommended": eslint0.Linter.FlatConfig;
|
|
@@ -15323,7 +15416,7 @@ declare function importPluginMarkdown(): Promise<{
|
|
|
15323
15416
|
}>;
|
|
15324
15417
|
declare function importPluginJsdoc(): Promise<{
|
|
15325
15418
|
pluginJsdoc: eslint0.ESLint.Plugin & {
|
|
15326
|
-
configs: Record<`flat/${eslint_plugin_jsdoc0.ConfigGroups}${eslint_plugin_jsdoc0.ConfigVariants}${eslint_plugin_jsdoc0.ErrorLevelVariants}`, eslint0.Linter.Config>;
|
|
15419
|
+
configs: Record<`flat/${eslint_plugin_jsdoc0.ConfigGroups}${eslint_plugin_jsdoc0.ConfigVariants}${eslint_plugin_jsdoc0.ErrorLevelVariants}`, eslint0.Linter.Config> & Record<"examples" | "default-expressions" | "examples-and-default-expressions", eslint0.Linter.Config[]>;
|
|
15327
15420
|
};
|
|
15328
15421
|
}>;
|
|
15329
15422
|
declare function importPluginTsdoc(): Promise<{
|