@ntnyq/eslint-config 5.5.0 → 5.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +426 -183
- package/dist/index.js +239 -198
- package/package.json +36 -35
package/dist/index.d.ts
CHANGED
|
@@ -356,8 +356,23 @@ type ConfigDependOptions = OptionsFiles & OptionsOverrides & {
|
|
|
356
356
|
packageJson?: boolean;
|
|
357
357
|
/**
|
|
358
358
|
* Allowed dependencies
|
|
359
|
+
*
|
|
360
|
+
* @default []
|
|
359
361
|
*/
|
|
360
362
|
allowed?: string[];
|
|
363
|
+
/**
|
|
364
|
+
* Use customized modules to ban
|
|
365
|
+
*
|
|
366
|
+
* @default []
|
|
367
|
+
*/
|
|
368
|
+
modules?: string[];
|
|
369
|
+
/**
|
|
370
|
+
* Preset list
|
|
371
|
+
* @see {@link https://github.com/es-tooling/eslint-plugin-depend/blob/main/docs/rules/ban-dependencies.md#presets}
|
|
372
|
+
*
|
|
373
|
+
* @default ['native', 'microutilities', 'preferred']
|
|
374
|
+
*/
|
|
375
|
+
presets?: Array<'native' | 'microutilities' | 'preferred'>;
|
|
361
376
|
};
|
|
362
377
|
/**
|
|
363
378
|
* Config for optimisations dependency
|
|
@@ -679,6 +694,11 @@ type ConfigJavaScriptOptions = OptionsOverrides & {
|
|
|
679
694
|
* @default false
|
|
680
695
|
*/
|
|
681
696
|
strict?: boolean;
|
|
697
|
+
/**
|
|
698
|
+
* The ECMAScript version of the code being linted
|
|
699
|
+
* @default 'latest'
|
|
700
|
+
*/
|
|
701
|
+
ecmaVersion?: OptionsShareable['ecmaVersion'];
|
|
682
702
|
};
|
|
683
703
|
/**
|
|
684
704
|
* Config for JavaScript
|
|
@@ -695,7 +715,7 @@ declare const configJSX: () => TypedConfigItem[];
|
|
|
695
715
|
/**
|
|
696
716
|
* Options type of {@link configTypeScript}
|
|
697
717
|
*/
|
|
698
|
-
type ConfigTypeScriptOptions = OptionsFiles & OptionsOverrides & Pick<OptionsShareable, 'extraFileExtensions'> & {
|
|
718
|
+
type ConfigTypeScriptOptions = OptionsFiles & OptionsOverrides & Pick<OptionsShareable, 'extraFileExtensions' | 'ecmaVersion'> & {
|
|
699
719
|
/**
|
|
700
720
|
* Glob patterns for files that should be type aware.
|
|
701
721
|
* @default ['**\/*.{ts,tsx}']
|
|
@@ -1069,6 +1089,11 @@ interface RuleOptions {
|
|
|
1069
1089
|
* @see https://html-eslint.org/docs/rules/no-restricted-attrs
|
|
1070
1090
|
*/
|
|
1071
1091
|
'@html-eslint/no-restricted-attrs'?: Linter.RuleEntry<HtmlEslintNoRestrictedAttrs>;
|
|
1092
|
+
/**
|
|
1093
|
+
* Disallow specified tags
|
|
1094
|
+
* @see https://html-eslint.org/docs/rules/no-restricted-tags
|
|
1095
|
+
*/
|
|
1096
|
+
'@html-eslint/no-restricted-tags'?: Linter.RuleEntry<HtmlEslintNoRestrictedTags>;
|
|
1072
1097
|
/**
|
|
1073
1098
|
* Enforce to omit type attributes for style sheets and scripts
|
|
1074
1099
|
* @see https://html-eslint.org/docs/rules/no-script-style-type
|
|
@@ -1611,7 +1636,7 @@ interface RuleOptions {
|
|
|
1611
1636
|
* Disallow member access on a value with type `any`
|
|
1612
1637
|
* @see https://typescript-eslint.io/rules/no-unsafe-member-access
|
|
1613
1638
|
*/
|
|
1614
|
-
'@typescript-eslint/no-unsafe-member-access'?: Linter.RuleEntry<
|
|
1639
|
+
'@typescript-eslint/no-unsafe-member-access'?: Linter.RuleEntry<TypescriptEslintNoUnsafeMemberAccess>;
|
|
1615
1640
|
/**
|
|
1616
1641
|
* Disallow returning a value with type `any` from a function
|
|
1617
1642
|
* @see https://typescript-eslint.io/rules/no-unsafe-return
|
|
@@ -2965,7 +2990,7 @@ interface RuleOptions {
|
|
|
2965
2990
|
*/
|
|
2966
2991
|
'jsdoc/check-alignment'?: Linter.RuleEntry<JsdocCheckAlignment>;
|
|
2967
2992
|
/**
|
|
2968
|
-
*
|
|
2993
|
+
* @deprecated - Use `getJsdocProcessorPlugin` processor; ensures that (JavaScript) samples within `@example` tags adhere to ESLint rules.
|
|
2969
2994
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-examples.md#repos-sticky-header
|
|
2970
2995
|
*/
|
|
2971
2996
|
'jsdoc/check-examples'?: Linter.RuleEntry<JsdocCheckExamples>;
|
|
@@ -2980,7 +3005,7 @@ interface RuleOptions {
|
|
|
2980
3005
|
*/
|
|
2981
3006
|
'jsdoc/check-line-alignment'?: Linter.RuleEntry<JsdocCheckLineAlignment>;
|
|
2982
3007
|
/**
|
|
2983
|
-
*
|
|
3008
|
+
* Checks for dupe `@param` names, that nested param names have roots, and that parameter names in function declarations match JSDoc param names.
|
|
2984
3009
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-param-names.md#repos-sticky-header
|
|
2985
3010
|
*/
|
|
2986
3011
|
'jsdoc/check-param-names'?: Linter.RuleEntry<JsdocCheckParamNames>;
|
|
@@ -3005,7 +3030,7 @@ interface RuleOptions {
|
|
|
3005
3030
|
*/
|
|
3006
3031
|
'jsdoc/check-template-names'?: Linter.RuleEntry<[]>;
|
|
3007
3032
|
/**
|
|
3008
|
-
* Reports invalid
|
|
3033
|
+
* Reports types deemed invalid (customizable and with defaults, for preventing and/or recommending replacements).
|
|
3009
3034
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-types.md#repos-sticky-header
|
|
3010
3035
|
*/
|
|
3011
3036
|
'jsdoc/check-types'?: Linter.RuleEntry<JsdocCheckTypes>;
|
|
@@ -3020,12 +3045,17 @@ interface RuleOptions {
|
|
|
3020
3045
|
*/
|
|
3021
3046
|
'jsdoc/convert-to-jsdoc-comments'?: Linter.RuleEntry<JsdocConvertToJsdocComments>;
|
|
3022
3047
|
/**
|
|
3023
|
-
*
|
|
3048
|
+
* Checks tags that are expected to be empty (e.g., `@abstract` or `@async`), reporting if they have content
|
|
3024
3049
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/empty-tags.md#repos-sticky-header
|
|
3025
3050
|
*/
|
|
3026
3051
|
'jsdoc/empty-tags'?: Linter.RuleEntry<JsdocEmptyTags>;
|
|
3027
3052
|
/**
|
|
3028
|
-
* Reports
|
|
3053
|
+
* Reports use of JSDoc tags in non-tag positions (in the default "typescript" mode).
|
|
3054
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/escape-inline-tags.md#repos-sticky-header
|
|
3055
|
+
*/
|
|
3056
|
+
'jsdoc/escape-inline-tags'?: Linter.RuleEntry<JsdocEscapeInlineTags>;
|
|
3057
|
+
/**
|
|
3058
|
+
* Prohibits use of `@implements` on non-constructor functions (to enforce the tag only being used on classes/constructors).
|
|
3029
3059
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/implements-on-classes.md#repos-sticky-header
|
|
3030
3060
|
*/
|
|
3031
3061
|
'jsdoc/implements-on-classes'?: Linter.RuleEntry<JsdocImplementsOnClasses>;
|
|
@@ -3055,17 +3085,17 @@ interface RuleOptions {
|
|
|
3055
3085
|
*/
|
|
3056
3086
|
'jsdoc/match-name'?: Linter.RuleEntry<JsdocMatchName>;
|
|
3057
3087
|
/**
|
|
3058
|
-
* Controls how and whether
|
|
3088
|
+
* Controls how and whether JSDoc blocks can be expressed as single or multiple line blocks.
|
|
3059
3089
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/multiline-blocks.md#repos-sticky-header
|
|
3060
3090
|
*/
|
|
3061
3091
|
'jsdoc/multiline-blocks'?: Linter.RuleEntry<JsdocMultilineBlocks>;
|
|
3062
3092
|
/**
|
|
3063
|
-
* This rule checks for multi-line-style comments which fail to meet the criteria of a
|
|
3093
|
+
* This rule checks for multi-line-style comments which fail to meet the criteria of a JSDoc block.
|
|
3064
3094
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-bad-blocks.md#repos-sticky-header
|
|
3065
3095
|
*/
|
|
3066
3096
|
'jsdoc/no-bad-blocks'?: Linter.RuleEntry<JsdocNoBadBlocks>;
|
|
3067
3097
|
/**
|
|
3068
|
-
*
|
|
3098
|
+
* If tags are present, this rule will prevent empty lines in the block description. If no tags are present, this rule will prevent extra empty lines in the block description.
|
|
3069
3099
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-blank-block-descriptions.md#repos-sticky-header
|
|
3070
3100
|
*/
|
|
3071
3101
|
'jsdoc/no-blank-block-descriptions'?: Linter.RuleEntry<[]>;
|
|
@@ -3095,22 +3125,37 @@ interface RuleOptions {
|
|
|
3095
3125
|
*/
|
|
3096
3126
|
'jsdoc/no-restricted-syntax'?: Linter.RuleEntry<JsdocNoRestrictedSyntax>;
|
|
3097
3127
|
/**
|
|
3098
|
-
* This rule reports types being used on `@param` or `@returns
|
|
3128
|
+
* This rule reports types being used on `@param` or `@returns` (redundant with TypeScript).
|
|
3099
3129
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-types.md#repos-sticky-header
|
|
3100
3130
|
*/
|
|
3101
3131
|
'jsdoc/no-types'?: Linter.RuleEntry<JsdocNoTypes>;
|
|
3102
3132
|
/**
|
|
3103
|
-
*
|
|
3133
|
+
* Besides some expected built-in types, prohibits any types not specified as globals or within `@typedef`.
|
|
3104
3134
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-undefined-types.md#repos-sticky-header
|
|
3105
3135
|
*/
|
|
3106
3136
|
'jsdoc/no-undefined-types'?: Linter.RuleEntry<JsdocNoUndefinedTypes>;
|
|
3137
|
+
/**
|
|
3138
|
+
* Prefer `@import` tags to inline `import()` statements.
|
|
3139
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/prefer-import-tag.md#repos-sticky-header
|
|
3140
|
+
*/
|
|
3141
|
+
'jsdoc/prefer-import-tag'?: Linter.RuleEntry<JsdocPreferImportTag>;
|
|
3142
|
+
/**
|
|
3143
|
+
* Reports use of `any` or `*` type
|
|
3144
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-any-type.md#repos-sticky-header
|
|
3145
|
+
*/
|
|
3146
|
+
'jsdoc/reject-any-type'?: Linter.RuleEntry<[]>;
|
|
3147
|
+
/**
|
|
3148
|
+
* Reports use of `Function` type
|
|
3149
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-function-type.md#repos-sticky-header
|
|
3150
|
+
*/
|
|
3151
|
+
'jsdoc/reject-function-type'?: Linter.RuleEntry<[]>;
|
|
3107
3152
|
/**
|
|
3108
3153
|
* Requires that each JSDoc line starts with an `*`.
|
|
3109
3154
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-asterisk-prefix.md#repos-sticky-header
|
|
3110
3155
|
*/
|
|
3111
3156
|
'jsdoc/require-asterisk-prefix'?: Linter.RuleEntry<JsdocRequireAsteriskPrefix>;
|
|
3112
3157
|
/**
|
|
3113
|
-
* Requires that all functions have a description.
|
|
3158
|
+
* Requires that all functions (and potentially other contexts) have a description.
|
|
3114
3159
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-description.md#repos-sticky-header
|
|
3115
3160
|
*/
|
|
3116
3161
|
'jsdoc/require-description'?: Linter.RuleEntry<JsdocRequireDescription>;
|
|
@@ -3120,7 +3165,7 @@ interface RuleOptions {
|
|
|
3120
3165
|
*/
|
|
3121
3166
|
'jsdoc/require-description-complete-sentence'?: Linter.RuleEntry<JsdocRequireDescriptionCompleteSentence>;
|
|
3122
3167
|
/**
|
|
3123
|
-
* Requires that all functions have examples.
|
|
3168
|
+
* Requires that all functions (and potentially other contexts) have examples.
|
|
3124
3169
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-example.md#repos-sticky-header
|
|
3125
3170
|
*/
|
|
3126
3171
|
'jsdoc/require-example'?: Linter.RuleEntry<JsdocRequireExample>;
|
|
@@ -3130,17 +3175,27 @@ interface RuleOptions {
|
|
|
3130
3175
|
*/
|
|
3131
3176
|
'jsdoc/require-file-overview'?: Linter.RuleEntry<JsdocRequireFileOverview>;
|
|
3132
3177
|
/**
|
|
3133
|
-
* Requires a hyphen before the `@param` description.
|
|
3178
|
+
* Requires a hyphen before the `@param` description (and optionally before `@property` descriptions).
|
|
3134
3179
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-hyphen-before-param-description.md#repos-sticky-header
|
|
3135
3180
|
*/
|
|
3136
3181
|
'jsdoc/require-hyphen-before-param-description'?: Linter.RuleEntry<JsdocRequireHyphenBeforeParamDescription>;
|
|
3137
3182
|
/**
|
|
3138
|
-
*
|
|
3183
|
+
* Checks for presence of JSDoc comments, on functions and potentially other contexts (optionally limited to exports).
|
|
3139
3184
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-jsdoc.md#repos-sticky-header
|
|
3140
3185
|
*/
|
|
3141
3186
|
'jsdoc/require-jsdoc'?: Linter.RuleEntry<JsdocRequireJsdoc>;
|
|
3142
3187
|
/**
|
|
3143
|
-
* Requires
|
|
3188
|
+
* Requires a description for `@next` tags
|
|
3189
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-description.md#repos-sticky-header
|
|
3190
|
+
*/
|
|
3191
|
+
'jsdoc/require-next-description'?: Linter.RuleEntry<[]>;
|
|
3192
|
+
/**
|
|
3193
|
+
* Requires a type for `@next` tags
|
|
3194
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-type.md#repos-sticky-header
|
|
3195
|
+
*/
|
|
3196
|
+
'jsdoc/require-next-type'?: Linter.RuleEntry<[]>;
|
|
3197
|
+
/**
|
|
3198
|
+
* Requires that all function parameters are documented with a `@param` tag.
|
|
3144
3199
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param.md#repos-sticky-header
|
|
3145
3200
|
*/
|
|
3146
3201
|
'jsdoc/require-param'?: Linter.RuleEntry<JsdocRequireParam>;
|
|
@@ -3150,12 +3205,12 @@ interface RuleOptions {
|
|
|
3150
3205
|
*/
|
|
3151
3206
|
'jsdoc/require-param-description'?: Linter.RuleEntry<JsdocRequireParamDescription>;
|
|
3152
3207
|
/**
|
|
3153
|
-
* Requires that all
|
|
3208
|
+
* Requires that all `@param` tags have names.
|
|
3154
3209
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-name.md#repos-sticky-header
|
|
3155
3210
|
*/
|
|
3156
3211
|
'jsdoc/require-param-name'?: Linter.RuleEntry<JsdocRequireParamName>;
|
|
3157
3212
|
/**
|
|
3158
|
-
* Requires that each `@param` tag has a
|
|
3213
|
+
* Requires that each `@param` tag has a type value (in curly brackets).
|
|
3159
3214
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-type.md#repos-sticky-header
|
|
3160
3215
|
*/
|
|
3161
3216
|
'jsdoc/require-param-type'?: Linter.RuleEntry<JsdocRequireParamType>;
|
|
@@ -3170,62 +3225,92 @@ interface RuleOptions {
|
|
|
3170
3225
|
*/
|
|
3171
3226
|
'jsdoc/require-property-description'?: Linter.RuleEntry<[]>;
|
|
3172
3227
|
/**
|
|
3173
|
-
* Requires that all
|
|
3228
|
+
* Requires that all `@property` tags have names.
|
|
3174
3229
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-name.md#repos-sticky-header
|
|
3175
3230
|
*/
|
|
3176
3231
|
'jsdoc/require-property-name'?: Linter.RuleEntry<[]>;
|
|
3177
3232
|
/**
|
|
3178
|
-
* Requires that each `@property` tag has a
|
|
3233
|
+
* Requires that each `@property` tag has a type value (in curly brackets).
|
|
3179
3234
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-type.md#repos-sticky-header
|
|
3180
3235
|
*/
|
|
3181
3236
|
'jsdoc/require-property-type'?: Linter.RuleEntry<[]>;
|
|
3182
3237
|
/**
|
|
3183
|
-
* Requires that returns are documented
|
|
3238
|
+
* Requires that returns are documented with `@returns`.
|
|
3184
3239
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns.md#repos-sticky-header
|
|
3185
3240
|
*/
|
|
3186
3241
|
'jsdoc/require-returns'?: Linter.RuleEntry<JsdocRequireReturns>;
|
|
3187
3242
|
/**
|
|
3188
|
-
* Requires a return statement in function body if a `@returns` tag is specified in
|
|
3243
|
+
* Requires a return statement in function body if a `@returns` tag is specified in JSDoc comment(and reports if multiple `@returns` tags are present).
|
|
3189
3244
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-check.md#repos-sticky-header
|
|
3190
3245
|
*/
|
|
3191
3246
|
'jsdoc/require-returns-check'?: Linter.RuleEntry<JsdocRequireReturnsCheck>;
|
|
3192
3247
|
/**
|
|
3193
|
-
* Requires that the `@returns` tag has a `description` value.
|
|
3248
|
+
* Requires that the `@returns` tag has a `description` value (not including `void`/`undefined` type returns).
|
|
3194
3249
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-description.md#repos-sticky-header
|
|
3195
3250
|
*/
|
|
3196
3251
|
'jsdoc/require-returns-description'?: Linter.RuleEntry<JsdocRequireReturnsDescription>;
|
|
3197
3252
|
/**
|
|
3198
|
-
* Requires that `@returns` tag has
|
|
3253
|
+
* Requires that `@returns` tag has type value (in curly brackets).
|
|
3199
3254
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-type.md#repos-sticky-header
|
|
3200
3255
|
*/
|
|
3201
3256
|
'jsdoc/require-returns-type'?: Linter.RuleEntry<JsdocRequireReturnsType>;
|
|
3202
3257
|
/**
|
|
3203
|
-
* Requires
|
|
3258
|
+
* Requires tags be present, optionally for specific contexts
|
|
3259
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-tags.md#repos-sticky-header
|
|
3260
|
+
*/
|
|
3261
|
+
'jsdoc/require-tags'?: Linter.RuleEntry<JsdocRequireTags>;
|
|
3262
|
+
/**
|
|
3263
|
+
* Requires `@template` tags be present when type parameters are used.
|
|
3204
3264
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template.md#repos-sticky-header
|
|
3205
3265
|
*/
|
|
3206
3266
|
'jsdoc/require-template'?: Linter.RuleEntry<JsdocRequireTemplate>;
|
|
3207
3267
|
/**
|
|
3208
|
-
* Requires
|
|
3268
|
+
* Requires a description for `@template` tags
|
|
3269
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template-description.md#repos-sticky-header
|
|
3270
|
+
*/
|
|
3271
|
+
'jsdoc/require-template-description'?: Linter.RuleEntry<[]>;
|
|
3272
|
+
/**
|
|
3273
|
+
* Requires that throw statements are documented with `@throws` tags.
|
|
3209
3274
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws.md#repos-sticky-header
|
|
3210
3275
|
*/
|
|
3211
3276
|
'jsdoc/require-throws'?: Linter.RuleEntry<JsdocRequireThrows>;
|
|
3212
3277
|
/**
|
|
3213
|
-
* Requires
|
|
3278
|
+
* Requires a description for `@throws` tags
|
|
3279
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-description.md#repos-sticky-header
|
|
3280
|
+
*/
|
|
3281
|
+
'jsdoc/require-throws-description'?: Linter.RuleEntry<[]>;
|
|
3282
|
+
/**
|
|
3283
|
+
* Requires a type for `@throws` tags
|
|
3284
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-type.md#repos-sticky-header
|
|
3285
|
+
*/
|
|
3286
|
+
'jsdoc/require-throws-type'?: Linter.RuleEntry<[]>;
|
|
3287
|
+
/**
|
|
3288
|
+
* Requires yields are documented with `@yields` tags.
|
|
3214
3289
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields.md#repos-sticky-header
|
|
3215
3290
|
*/
|
|
3216
3291
|
'jsdoc/require-yields'?: Linter.RuleEntry<JsdocRequireYields>;
|
|
3217
3292
|
/**
|
|
3218
|
-
*
|
|
3293
|
+
* Ensures that if a `@yields` is present that a `yield` (or `yield` with a value) is present in the function body (or that if a `@next` is present that there is a yield with a return value present).
|
|
3219
3294
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-check.md#repos-sticky-header
|
|
3220
3295
|
*/
|
|
3221
3296
|
'jsdoc/require-yields-check'?: Linter.RuleEntry<JsdocRequireYieldsCheck>;
|
|
3222
3297
|
/**
|
|
3223
|
-
*
|
|
3298
|
+
* Requires a description for `@yields` tags
|
|
3299
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-description.md#repos-sticky-header
|
|
3300
|
+
*/
|
|
3301
|
+
'jsdoc/require-yields-description'?: Linter.RuleEntry<[]>;
|
|
3302
|
+
/**
|
|
3303
|
+
* Requires a type for `@yields` tags
|
|
3304
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-type.md#repos-sticky-header
|
|
3305
|
+
*/
|
|
3306
|
+
'jsdoc/require-yields-type'?: Linter.RuleEntry<[]>;
|
|
3307
|
+
/**
|
|
3308
|
+
* Sorts tags by a specified sequence according to tag name, optionally adding line breaks between tag groups.
|
|
3224
3309
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/sort-tags.md#repos-sticky-header
|
|
3225
3310
|
*/
|
|
3226
3311
|
'jsdoc/sort-tags'?: Linter.RuleEntry<JsdocSortTags>;
|
|
3227
3312
|
/**
|
|
3228
|
-
* Enforces lines (or no lines) between tags.
|
|
3313
|
+
* Enforces lines (or no lines) before, after, or between tags.
|
|
3229
3314
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/tag-lines.md#repos-sticky-header
|
|
3230
3315
|
*/
|
|
3231
3316
|
'jsdoc/tag-lines'?: Linter.RuleEntry<JsdocTagLines>;
|
|
@@ -3235,7 +3320,32 @@ interface RuleOptions {
|
|
|
3235
3320
|
*/
|
|
3236
3321
|
'jsdoc/text-escaping'?: Linter.RuleEntry<JsdocTextEscaping>;
|
|
3237
3322
|
/**
|
|
3238
|
-
*
|
|
3323
|
+
* Prefers either function properties or method signatures
|
|
3324
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-method-signature-style.md#repos-sticky-header
|
|
3325
|
+
*/
|
|
3326
|
+
'jsdoc/ts-method-signature-style'?: Linter.RuleEntry<JsdocTsMethodSignatureStyle>;
|
|
3327
|
+
/**
|
|
3328
|
+
* Warns against use of the empty object type
|
|
3329
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-no-empty-object-type.md#repos-sticky-header
|
|
3330
|
+
*/
|
|
3331
|
+
'jsdoc/ts-no-empty-object-type'?: Linter.RuleEntry<[]>;
|
|
3332
|
+
/**
|
|
3333
|
+
* Catches unnecessary template expressions such as string expressions within a template literal.
|
|
3334
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-no-unnecessary-template-expression.md#repos-sticky-header
|
|
3335
|
+
*/
|
|
3336
|
+
'jsdoc/ts-no-unnecessary-template-expression'?: Linter.RuleEntry<JsdocTsNoUnnecessaryTemplateExpression>;
|
|
3337
|
+
/**
|
|
3338
|
+
* Prefers function types over call signatures when there are no other properties.
|
|
3339
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-prefer-function-type.md#repos-sticky-header
|
|
3340
|
+
*/
|
|
3341
|
+
'jsdoc/ts-prefer-function-type'?: Linter.RuleEntry<JsdocTsPreferFunctionType>;
|
|
3342
|
+
/**
|
|
3343
|
+
* Formats JSDoc type values.
|
|
3344
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/type-formatting.md#repos-sticky-header
|
|
3345
|
+
*/
|
|
3346
|
+
'jsdoc/type-formatting'?: Linter.RuleEntry<JsdocTypeFormatting>;
|
|
3347
|
+
/**
|
|
3348
|
+
* Requires all types/namepaths to be valid JSDoc, Closure compiler, or TypeScript types (configurable in settings).
|
|
3239
3349
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/valid-types.md#repos-sticky-header
|
|
3240
3350
|
*/
|
|
3241
3351
|
'jsdoc/valid-types'?: Linter.RuleEntry<JsdocValidTypes>;
|
|
@@ -3571,7 +3681,7 @@ interface RuleOptions {
|
|
|
3571
3681
|
* Disallow missing label references
|
|
3572
3682
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
|
|
3573
3683
|
*/
|
|
3574
|
-
'markdown/no-missing-label-refs'?: Linter.RuleEntry<
|
|
3684
|
+
'markdown/no-missing-label-refs'?: Linter.RuleEntry<MarkdownNoMissingLabelRefs>;
|
|
3575
3685
|
/**
|
|
3576
3686
|
* Disallow link fragments that do not reference valid headings
|
|
3577
3687
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-link-fragments.md
|
|
@@ -3582,6 +3692,11 @@ interface RuleOptions {
|
|
|
3582
3692
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-multiple-h1.md
|
|
3583
3693
|
*/
|
|
3584
3694
|
'markdown/no-multiple-h1'?: Linter.RuleEntry<MarkdownNoMultipleH1>;
|
|
3695
|
+
/**
|
|
3696
|
+
* Disallow URLs that match defined reference identifiers
|
|
3697
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reference-like-urls.md
|
|
3698
|
+
*/
|
|
3699
|
+
'markdown/no-reference-like-urls'?: Linter.RuleEntry<[]>;
|
|
3585
3700
|
/**
|
|
3586
3701
|
* Disallow reversed link and image syntax
|
|
3587
3702
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reversed-media-syntax.md
|
|
@@ -4568,12 +4683,12 @@ interface RuleOptions {
|
|
|
4568
4683
|
*/
|
|
4569
4684
|
'node/no-hide-core-modules'?: Linter.RuleEntry<NodeNoHideCoreModules>;
|
|
4570
4685
|
/**
|
|
4571
|
-
* disallow `import` declarations which import
|
|
4686
|
+
* disallow `import` declarations which import missing modules
|
|
4572
4687
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-import.md
|
|
4573
4688
|
*/
|
|
4574
4689
|
'node/no-missing-import'?: Linter.RuleEntry<NodeNoMissingImport>;
|
|
4575
4690
|
/**
|
|
4576
|
-
* disallow `require()` expressions which import
|
|
4691
|
+
* disallow `require()` expressions which import missing modules
|
|
4577
4692
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-require.md
|
|
4578
4693
|
*/
|
|
4579
4694
|
'node/no-missing-require'?: Linter.RuleEntry<NodeNoMissingRequire>;
|
|
@@ -4951,6 +5066,11 @@ interface RuleOptions {
|
|
|
4951
5066
|
* @see https://github.com/antfu/pnpm-workspace-utils/tree/main/packages/eslint-plugin-pnpm/src/rules/yaml/yaml-no-unused-catalog-item.test.ts
|
|
4952
5067
|
*/
|
|
4953
5068
|
'pnpm/yaml-no-unused-catalog-item'?: Linter.RuleEntry<[]>;
|
|
5069
|
+
/**
|
|
5070
|
+
* Ensure all package patterns in `pnpm-workspace.yaml` match at least one directory
|
|
5071
|
+
* @see https://github.com/antfu/pnpm-workspace-utils/tree/main/packages/eslint-plugin-pnpm/src/rules/yaml/yaml-valid-packages.test.ts
|
|
5072
|
+
*/
|
|
5073
|
+
'pnpm/yaml-valid-packages'?: Linter.RuleEntry<[]>;
|
|
4954
5074
|
/**
|
|
4955
5075
|
* Require using arrow functions for callbacks
|
|
4956
5076
|
* @see https://eslint.org/docs/latest/rules/prefer-arrow-callback
|
|
@@ -5734,8 +5854,14 @@ interface RuleOptions {
|
|
|
5734
5854
|
/**
|
|
5735
5855
|
* disallow using navigation (links, goto, pushState, replaceState) without the base path
|
|
5736
5856
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-navigation-without-base/
|
|
5857
|
+
* @deprecated
|
|
5737
5858
|
*/
|
|
5738
5859
|
'svelte/no-navigation-without-base'?: Linter.RuleEntry<SvelteNoNavigationWithoutBase>;
|
|
5860
|
+
/**
|
|
5861
|
+
* disallow using navigation (links, goto, pushState, replaceState) without a resolve()
|
|
5862
|
+
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-navigation-without-resolve/
|
|
5863
|
+
*/
|
|
5864
|
+
'svelte/no-navigation-without-resolve'?: Linter.RuleEntry<SvelteNoNavigationWithoutResolve>;
|
|
5739
5865
|
/**
|
|
5740
5866
|
* disallow use of not function in event handler
|
|
5741
5867
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-not-function-handler/
|
|
@@ -6097,710 +6223,710 @@ interface RuleOptions {
|
|
|
6097
6223
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>;
|
|
6098
6224
|
/**
|
|
6099
6225
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
6100
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6226
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/better-regex.md
|
|
6101
6227
|
*/
|
|
6102
6228
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>;
|
|
6103
6229
|
/**
|
|
6104
6230
|
* Enforce a specific parameter name in catch clauses.
|
|
6105
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6231
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/catch-error-name.md
|
|
6106
6232
|
*/
|
|
6107
6233
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>;
|
|
6108
6234
|
/**
|
|
6109
6235
|
* Enforce consistent assertion style with `node:assert`.
|
|
6110
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6236
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-assert.md
|
|
6111
6237
|
*/
|
|
6112
6238
|
'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
|
|
6113
6239
|
/**
|
|
6114
6240
|
* Prefer passing `Date` directly to the constructor when cloning.
|
|
6115
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6241
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-date-clone.md
|
|
6116
6242
|
*/
|
|
6117
6243
|
'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
|
|
6118
6244
|
/**
|
|
6119
6245
|
* Use destructured variables over properties.
|
|
6120
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6246
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-destructuring.md
|
|
6121
6247
|
*/
|
|
6122
6248
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
|
|
6123
6249
|
/**
|
|
6124
6250
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
6125
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6251
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-empty-array-spread.md
|
|
6126
6252
|
*/
|
|
6127
6253
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
|
|
6128
6254
|
/**
|
|
6129
6255
|
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
6130
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6256
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-existence-index-check.md
|
|
6131
6257
|
*/
|
|
6132
6258
|
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
|
|
6133
6259
|
/**
|
|
6134
6260
|
* Move function definitions to the highest possible scope.
|
|
6135
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6261
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-function-scoping.md
|
|
6136
6262
|
*/
|
|
6137
6263
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
|
|
6138
6264
|
/**
|
|
6139
6265
|
* Enforce correct `Error` subclassing.
|
|
6140
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6266
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/custom-error-definition.md
|
|
6141
6267
|
*/
|
|
6142
6268
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
|
|
6143
6269
|
/**
|
|
6144
6270
|
* Enforce no spaces between braces.
|
|
6145
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6271
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/empty-brace-spaces.md
|
|
6146
6272
|
*/
|
|
6147
6273
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
|
|
6148
6274
|
/**
|
|
6149
6275
|
* Enforce passing a `message` value when creating a built-in error.
|
|
6150
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6276
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/error-message.md
|
|
6151
6277
|
*/
|
|
6152
6278
|
'unicorn/error-message'?: Linter.RuleEntry<[]>;
|
|
6153
6279
|
/**
|
|
6154
6280
|
* Require escape sequences to use uppercase or lowercase values.
|
|
6155
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6281
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/escape-case.md
|
|
6156
6282
|
*/
|
|
6157
6283
|
'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>;
|
|
6158
6284
|
/**
|
|
6159
6285
|
* Add expiration conditions to TODO comments.
|
|
6160
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6286
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/expiring-todo-comments.md
|
|
6161
6287
|
*/
|
|
6162
6288
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>;
|
|
6163
6289
|
/**
|
|
6164
6290
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
6165
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6291
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/explicit-length-check.md
|
|
6166
6292
|
*/
|
|
6167
6293
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
|
|
6168
6294
|
/**
|
|
6169
6295
|
* Enforce a case style for filenames.
|
|
6170
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6296
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/filename-case.md
|
|
6171
6297
|
*/
|
|
6172
6298
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>;
|
|
6173
6299
|
/**
|
|
6174
6300
|
* Enforce specific import styles per module.
|
|
6175
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6301
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/import-style.md
|
|
6176
6302
|
*/
|
|
6177
6303
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>;
|
|
6178
6304
|
/**
|
|
6179
6305
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
6180
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6306
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/new-for-builtins.md
|
|
6181
6307
|
*/
|
|
6182
6308
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
|
|
6183
6309
|
/**
|
|
6184
6310
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
6185
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6311
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-abusive-eslint-disable.md
|
|
6186
6312
|
*/
|
|
6187
6313
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
|
|
6188
6314
|
/**
|
|
6189
6315
|
* Disallow recursive access to `this` within getters and setters.
|
|
6190
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6316
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-accessor-recursion.md
|
|
6191
6317
|
*/
|
|
6192
6318
|
'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
|
|
6193
6319
|
/**
|
|
6194
6320
|
* Disallow anonymous functions and classes as the default export.
|
|
6195
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6321
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-anonymous-default-export.md
|
|
6196
6322
|
*/
|
|
6197
6323
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
|
|
6198
6324
|
/**
|
|
6199
6325
|
* Prevent passing a function reference directly to iterator methods.
|
|
6200
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6326
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-callback-reference.md
|
|
6201
6327
|
*/
|
|
6202
6328
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
|
|
6203
6329
|
/**
|
|
6204
6330
|
* Prefer `for…of` over the `forEach` method.
|
|
6205
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6331
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-for-each.md
|
|
6206
6332
|
*/
|
|
6207
6333
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
|
|
6208
6334
|
/**
|
|
6209
6335
|
* Disallow using the `this` argument in array methods.
|
|
6210
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6336
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-method-this-argument.md
|
|
6211
6337
|
*/
|
|
6212
6338
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
|
|
6213
6339
|
/**
|
|
6214
6340
|
* Replaced by `unicorn/prefer-single-call` which covers more cases.
|
|
6215
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6341
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-array-push-push
|
|
6216
6342
|
* @deprecated
|
|
6217
6343
|
*/
|
|
6218
6344
|
'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
|
|
6219
6345
|
/**
|
|
6220
6346
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
6221
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6347
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-reduce.md
|
|
6222
6348
|
*/
|
|
6223
6349
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>;
|
|
6224
6350
|
/**
|
|
6225
6351
|
* Prefer `Array#toReversed()` over `Array#reverse()`.
|
|
6226
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6352
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-reverse.md
|
|
6227
6353
|
*/
|
|
6228
6354
|
'unicorn/no-array-reverse'?: Linter.RuleEntry<UnicornNoArrayReverse>;
|
|
6229
6355
|
/**
|
|
6230
6356
|
* Prefer `Array#toSorted()` over `Array#sort()`.
|
|
6231
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6357
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-sort.md
|
|
6232
6358
|
*/
|
|
6233
6359
|
'unicorn/no-array-sort'?: Linter.RuleEntry<UnicornNoArraySort>;
|
|
6234
6360
|
/**
|
|
6235
6361
|
* Disallow member access from await expression.
|
|
6236
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6362
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-await-expression-member.md
|
|
6237
6363
|
*/
|
|
6238
6364
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
|
|
6239
6365
|
/**
|
|
6240
6366
|
* Disallow using `await` in `Promise` method parameters.
|
|
6241
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6367
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-await-in-promise-methods.md
|
|
6242
6368
|
*/
|
|
6243
6369
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
|
|
6244
6370
|
/**
|
|
6245
6371
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
6246
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6372
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-console-spaces.md
|
|
6247
6373
|
*/
|
|
6248
6374
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
|
|
6249
6375
|
/**
|
|
6250
6376
|
* Do not use `document.cookie` directly.
|
|
6251
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6377
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-document-cookie.md
|
|
6252
6378
|
*/
|
|
6253
6379
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
|
|
6254
6380
|
/**
|
|
6255
6381
|
* Disallow empty files.
|
|
6256
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6382
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-empty-file.md
|
|
6257
6383
|
*/
|
|
6258
6384
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
|
|
6259
6385
|
/**
|
|
6260
6386
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
6261
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6387
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-for-loop.md
|
|
6262
6388
|
*/
|
|
6263
6389
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
|
|
6264
6390
|
/**
|
|
6265
6391
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
6266
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6392
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-hex-escape.md
|
|
6267
6393
|
*/
|
|
6268
6394
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
|
|
6269
6395
|
/**
|
|
6270
6396
|
* Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
|
|
6271
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6397
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-instanceof-array
|
|
6272
6398
|
* @deprecated
|
|
6273
6399
|
*/
|
|
6274
6400
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
|
|
6275
6401
|
/**
|
|
6276
6402
|
* Disallow `instanceof` with built-in objects
|
|
6277
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6403
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-instanceof-builtins.md
|
|
6278
6404
|
*/
|
|
6279
6405
|
'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
|
|
6280
6406
|
/**
|
|
6281
6407
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
6282
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6408
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-invalid-fetch-options.md
|
|
6283
6409
|
*/
|
|
6284
6410
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
|
|
6285
6411
|
/**
|
|
6286
6412
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
6287
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6413
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-invalid-remove-event-listener.md
|
|
6288
6414
|
*/
|
|
6289
6415
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
|
|
6290
6416
|
/**
|
|
6291
6417
|
* Disallow identifiers starting with `new` or `class`.
|
|
6292
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6418
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-keyword-prefix.md
|
|
6293
6419
|
*/
|
|
6294
6420
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
|
|
6295
6421
|
/**
|
|
6296
6422
|
* Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
|
|
6297
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6423
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-length-as-slice-end
|
|
6298
6424
|
* @deprecated
|
|
6299
6425
|
*/
|
|
6300
6426
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
|
|
6301
6427
|
/**
|
|
6302
6428
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
6303
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6429
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-lonely-if.md
|
|
6304
6430
|
*/
|
|
6305
6431
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
|
|
6306
6432
|
/**
|
|
6307
6433
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
6308
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6434
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-magic-array-flat-depth.md
|
|
6309
6435
|
*/
|
|
6310
6436
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
|
|
6311
6437
|
/**
|
|
6312
6438
|
* Disallow named usage of default import and export.
|
|
6313
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6439
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-named-default.md
|
|
6314
6440
|
*/
|
|
6315
6441
|
'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
|
|
6316
6442
|
/**
|
|
6317
6443
|
* Disallow negated conditions.
|
|
6318
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6444
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-negated-condition.md
|
|
6319
6445
|
*/
|
|
6320
6446
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
|
|
6321
6447
|
/**
|
|
6322
6448
|
* Disallow negated expression in equality check.
|
|
6323
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6449
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-negation-in-equality-check.md
|
|
6324
6450
|
*/
|
|
6325
6451
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
|
|
6326
6452
|
/**
|
|
6327
6453
|
* Disallow nested ternary expressions.
|
|
6328
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6454
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-nested-ternary.md
|
|
6329
6455
|
*/
|
|
6330
6456
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
|
|
6331
6457
|
/**
|
|
6332
6458
|
* Disallow `new Array()`.
|
|
6333
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6459
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-new-array.md
|
|
6334
6460
|
*/
|
|
6335
6461
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
|
|
6336
6462
|
/**
|
|
6337
6463
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
6338
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6464
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-new-buffer.md
|
|
6339
6465
|
*/
|
|
6340
6466
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
|
|
6341
6467
|
/**
|
|
6342
6468
|
* Disallow the use of the `null` literal.
|
|
6343
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6469
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-null.md
|
|
6344
6470
|
*/
|
|
6345
6471
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>;
|
|
6346
6472
|
/**
|
|
6347
6473
|
* Disallow the use of objects as default parameters.
|
|
6348
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6474
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-object-as-default-parameter.md
|
|
6349
6475
|
*/
|
|
6350
6476
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
|
|
6351
6477
|
/**
|
|
6352
6478
|
* Disallow `process.exit()`.
|
|
6353
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6479
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-process-exit.md
|
|
6354
6480
|
*/
|
|
6355
6481
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
|
|
6356
6482
|
/**
|
|
6357
6483
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
6358
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6484
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-single-promise-in-promise-methods.md
|
|
6359
6485
|
*/
|
|
6360
6486
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
|
|
6361
6487
|
/**
|
|
6362
6488
|
* Disallow classes that only have static members.
|
|
6363
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6489
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-static-only-class.md
|
|
6364
6490
|
*/
|
|
6365
6491
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
|
|
6366
6492
|
/**
|
|
6367
6493
|
* Disallow `then` property.
|
|
6368
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6494
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-thenable.md
|
|
6369
6495
|
*/
|
|
6370
6496
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
|
|
6371
6497
|
/**
|
|
6372
6498
|
* Disallow assigning `this` to a variable.
|
|
6373
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6499
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-this-assignment.md
|
|
6374
6500
|
*/
|
|
6375
6501
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
|
|
6376
6502
|
/**
|
|
6377
6503
|
* Disallow comparing `undefined` using `typeof`.
|
|
6378
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6504
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-typeof-undefined.md
|
|
6379
6505
|
*/
|
|
6380
6506
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
|
|
6381
6507
|
/**
|
|
6382
6508
|
* Disallow using `1` as the `depth` argument of `Array#flat()`.
|
|
6383
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6509
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-array-flat-depth.md
|
|
6384
6510
|
*/
|
|
6385
6511
|
'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
|
|
6386
6512
|
/**
|
|
6387
6513
|
* Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
|
|
6388
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6514
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-array-splice-count.md
|
|
6389
6515
|
*/
|
|
6390
6516
|
'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
|
|
6391
6517
|
/**
|
|
6392
6518
|
* Disallow awaiting non-promise values.
|
|
6393
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6519
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-await.md
|
|
6394
6520
|
*/
|
|
6395
6521
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
|
|
6396
6522
|
/**
|
|
6397
6523
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
6398
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6524
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-polyfills.md
|
|
6399
6525
|
*/
|
|
6400
6526
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
|
|
6401
6527
|
/**
|
|
6402
6528
|
* Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
6403
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6529
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-slice-end.md
|
|
6404
6530
|
*/
|
|
6405
6531
|
'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
|
|
6406
6532
|
/**
|
|
6407
6533
|
* Disallow unreadable array destructuring.
|
|
6408
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6534
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unreadable-array-destructuring.md
|
|
6409
6535
|
*/
|
|
6410
6536
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
|
|
6411
6537
|
/**
|
|
6412
6538
|
* Disallow unreadable IIFEs.
|
|
6413
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6539
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unreadable-iife.md
|
|
6414
6540
|
*/
|
|
6415
6541
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
|
|
6416
6542
|
/**
|
|
6417
6543
|
* Disallow unused object properties.
|
|
6418
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6544
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unused-properties.md
|
|
6419
6545
|
*/
|
|
6420
6546
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
|
|
6421
6547
|
/**
|
|
6422
6548
|
* Disallow unnecessary `Error.captureStackTrace(…)`.
|
|
6423
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6549
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-error-capture-stack-trace.md
|
|
6424
6550
|
*/
|
|
6425
6551
|
'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
|
|
6426
6552
|
/**
|
|
6427
6553
|
* Disallow useless fallback when spreading in object literals.
|
|
6428
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6554
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-fallback-in-spread.md
|
|
6429
6555
|
*/
|
|
6430
6556
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
|
|
6431
6557
|
/**
|
|
6432
6558
|
* Disallow useless array length check.
|
|
6433
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6559
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-length-check.md
|
|
6434
6560
|
*/
|
|
6435
6561
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
|
|
6436
6562
|
/**
|
|
6437
6563
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
6438
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6564
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-promise-resolve-reject.md
|
|
6439
6565
|
*/
|
|
6440
6566
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
|
|
6441
6567
|
/**
|
|
6442
6568
|
* Disallow unnecessary spread.
|
|
6443
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6569
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-spread.md
|
|
6444
6570
|
*/
|
|
6445
6571
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
|
|
6446
6572
|
/**
|
|
6447
6573
|
* Disallow useless case in switch statements.
|
|
6448
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6574
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-switch-case.md
|
|
6449
6575
|
*/
|
|
6450
6576
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
|
|
6451
6577
|
/**
|
|
6452
6578
|
* Disallow useless `undefined`.
|
|
6453
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6579
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-undefined.md
|
|
6454
6580
|
*/
|
|
6455
6581
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>;
|
|
6456
6582
|
/**
|
|
6457
6583
|
* Disallow number literals with zero fractions or dangling dots.
|
|
6458
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6584
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-zero-fractions.md
|
|
6459
6585
|
*/
|
|
6460
6586
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
|
|
6461
6587
|
/**
|
|
6462
6588
|
* Enforce proper case for numeric literals.
|
|
6463
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6589
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/number-literal-case.md
|
|
6464
6590
|
*/
|
|
6465
6591
|
'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>;
|
|
6466
6592
|
/**
|
|
6467
6593
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
6468
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6594
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/numeric-separators-style.md
|
|
6469
6595
|
*/
|
|
6470
6596
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
|
|
6471
6597
|
/**
|
|
6472
6598
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
6473
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6599
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-add-event-listener.md
|
|
6474
6600
|
*/
|
|
6475
6601
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>;
|
|
6476
6602
|
/**
|
|
6477
6603
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
6478
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6604
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-find.md
|
|
6479
6605
|
*/
|
|
6480
6606
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>;
|
|
6481
6607
|
/**
|
|
6482
6608
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
6483
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6609
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-flat.md
|
|
6484
6610
|
*/
|
|
6485
6611
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>;
|
|
6486
6612
|
/**
|
|
6487
6613
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
6488
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6614
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-flat-map.md
|
|
6489
6615
|
*/
|
|
6490
6616
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
|
|
6491
6617
|
/**
|
|
6492
6618
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
6493
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6619
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-index-of.md
|
|
6494
6620
|
*/
|
|
6495
6621
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
|
|
6496
6622
|
/**
|
|
6497
6623
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
6498
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6624
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-some.md
|
|
6499
6625
|
*/
|
|
6500
6626
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
|
|
6501
6627
|
/**
|
|
6502
6628
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
6503
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6629
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-at.md
|
|
6504
6630
|
*/
|
|
6505
6631
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>;
|
|
6506
6632
|
/**
|
|
6507
6633
|
* Prefer `BigInt` literals over the constructor.
|
|
6508
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6634
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-bigint-literals.md
|
|
6509
6635
|
*/
|
|
6510
6636
|
'unicorn/prefer-bigint-literals'?: Linter.RuleEntry<[]>;
|
|
6511
6637
|
/**
|
|
6512
6638
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
6513
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6639
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-blob-reading-methods.md
|
|
6514
6640
|
*/
|
|
6515
6641
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
|
|
6516
6642
|
/**
|
|
6517
6643
|
* Prefer class field declarations over `this` assignments in constructors.
|
|
6518
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6644
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-class-fields.md
|
|
6519
6645
|
*/
|
|
6520
6646
|
'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
|
|
6521
6647
|
/**
|
|
6522
6648
|
* Prefer using `Element#classList.toggle()` to toggle class names.
|
|
6523
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6649
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-classlist-toggle.md
|
|
6524
6650
|
*/
|
|
6525
6651
|
'unicorn/prefer-classlist-toggle'?: Linter.RuleEntry<[]>;
|
|
6526
6652
|
/**
|
|
6527
6653
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
6528
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6654
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-code-point.md
|
|
6529
6655
|
*/
|
|
6530
6656
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
|
|
6531
6657
|
/**
|
|
6532
6658
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
6533
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6659
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-date-now.md
|
|
6534
6660
|
*/
|
|
6535
6661
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
|
|
6536
6662
|
/**
|
|
6537
6663
|
* Prefer default parameters over reassignment.
|
|
6538
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6664
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-default-parameters.md
|
|
6539
6665
|
*/
|
|
6540
6666
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
|
|
6541
6667
|
/**
|
|
6542
6668
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
6543
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6669
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-append.md
|
|
6544
6670
|
*/
|
|
6545
6671
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
|
|
6546
6672
|
/**
|
|
6547
6673
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
6548
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6674
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-dataset.md
|
|
6549
6675
|
*/
|
|
6550
6676
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
|
|
6551
6677
|
/**
|
|
6552
6678
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
6553
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6679
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-remove.md
|
|
6554
6680
|
*/
|
|
6555
6681
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
|
|
6556
6682
|
/**
|
|
6557
6683
|
* Prefer `.textContent` over `.innerText`.
|
|
6558
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6684
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-text-content.md
|
|
6559
6685
|
*/
|
|
6560
6686
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
|
|
6561
6687
|
/**
|
|
6562
6688
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
6563
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6689
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-event-target.md
|
|
6564
6690
|
*/
|
|
6565
6691
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
|
|
6566
6692
|
/**
|
|
6567
6693
|
* Prefer `export…from` when re-exporting.
|
|
6568
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6694
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-export-from.md
|
|
6569
6695
|
*/
|
|
6570
6696
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>;
|
|
6571
6697
|
/**
|
|
6572
6698
|
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
6573
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6699
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-global-this.md
|
|
6574
6700
|
*/
|
|
6575
6701
|
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
|
|
6576
6702
|
/**
|
|
6577
6703
|
* Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
|
|
6578
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6704
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-import-meta-properties.md
|
|
6579
6705
|
*/
|
|
6580
6706
|
'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
|
|
6581
6707
|
/**
|
|
6582
6708
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
6583
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6709
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-includes.md
|
|
6584
6710
|
*/
|
|
6585
6711
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
|
|
6586
6712
|
/**
|
|
6587
6713
|
* Prefer reading a JSON file as a buffer.
|
|
6588
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6714
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-json-parse-buffer.md
|
|
6589
6715
|
*/
|
|
6590
6716
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
|
|
6591
6717
|
/**
|
|
6592
6718
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
6593
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6719
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-keyboard-event-key.md
|
|
6594
6720
|
*/
|
|
6595
6721
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
|
|
6596
6722
|
/**
|
|
6597
6723
|
* Prefer using a logical operator over a ternary.
|
|
6598
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6724
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-logical-operator-over-ternary.md
|
|
6599
6725
|
*/
|
|
6600
6726
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
|
|
6601
6727
|
/**
|
|
6602
6728
|
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
6603
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6729
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-math-min-max.md
|
|
6604
6730
|
*/
|
|
6605
6731
|
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
|
|
6606
6732
|
/**
|
|
6607
6733
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
6608
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6734
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-math-trunc.md
|
|
6609
6735
|
*/
|
|
6610
6736
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
|
|
6611
6737
|
/**
|
|
6612
6738
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
6613
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6739
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-modern-dom-apis.md
|
|
6614
6740
|
*/
|
|
6615
6741
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
|
|
6616
6742
|
/**
|
|
6617
6743
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
6618
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6744
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-modern-math-apis.md
|
|
6619
6745
|
*/
|
|
6620
6746
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
|
|
6621
6747
|
/**
|
|
6622
6748
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
6623
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6749
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-module.md
|
|
6624
6750
|
*/
|
|
6625
6751
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
|
|
6626
6752
|
/**
|
|
6627
6753
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
6628
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6754
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-native-coercion-functions.md
|
|
6629
6755
|
*/
|
|
6630
6756
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
|
|
6631
6757
|
/**
|
|
6632
6758
|
* Prefer negative index over `.length - index` when possible.
|
|
6633
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6759
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-negative-index.md
|
|
6634
6760
|
*/
|
|
6635
6761
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
|
|
6636
6762
|
/**
|
|
6637
6763
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
6638
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6764
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-node-protocol.md
|
|
6639
6765
|
*/
|
|
6640
6766
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
|
|
6641
6767
|
/**
|
|
6642
6768
|
* Prefer `Number` static properties over global ones.
|
|
6643
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6769
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-number-properties.md
|
|
6644
6770
|
*/
|
|
6645
6771
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>;
|
|
6646
6772
|
/**
|
|
6647
6773
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
6648
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6774
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-object-from-entries.md
|
|
6649
6775
|
*/
|
|
6650
6776
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
|
|
6651
6777
|
/**
|
|
6652
6778
|
* Prefer omitting the `catch` binding parameter.
|
|
6653
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6779
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-optional-catch-binding.md
|
|
6654
6780
|
*/
|
|
6655
6781
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
|
|
6656
6782
|
/**
|
|
6657
6783
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
6658
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6784
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-prototype-methods.md
|
|
6659
6785
|
*/
|
|
6660
6786
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
|
|
6661
6787
|
/**
|
|
6662
6788
|
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
6663
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6789
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-query-selector.md
|
|
6664
6790
|
*/
|
|
6665
6791
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
|
|
6666
6792
|
/**
|
|
6667
6793
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
6668
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6794
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-reflect-apply.md
|
|
6669
6795
|
*/
|
|
6670
6796
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
|
|
6671
6797
|
/**
|
|
6672
6798
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
6673
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6799
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-regexp-test.md
|
|
6674
6800
|
*/
|
|
6675
6801
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
|
|
6676
6802
|
/**
|
|
6677
6803
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
6678
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6804
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-set-has.md
|
|
6679
6805
|
*/
|
|
6680
6806
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
|
|
6681
6807
|
/**
|
|
6682
6808
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
6683
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6809
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-set-size.md
|
|
6684
6810
|
*/
|
|
6685
6811
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
|
|
6686
6812
|
/**
|
|
6687
6813
|
* Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
|
|
6688
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6814
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-single-call.md
|
|
6689
6815
|
*/
|
|
6690
6816
|
'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>;
|
|
6691
6817
|
/**
|
|
6692
6818
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
6693
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6819
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-spread.md
|
|
6694
6820
|
*/
|
|
6695
6821
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
|
|
6696
6822
|
/**
|
|
6697
6823
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
6698
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6824
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-raw.md
|
|
6699
6825
|
*/
|
|
6700
6826
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
|
|
6701
6827
|
/**
|
|
6702
6828
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
6703
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6829
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-replace-all.md
|
|
6704
6830
|
*/
|
|
6705
6831
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
|
|
6706
6832
|
/**
|
|
6707
6833
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
6708
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6834
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-slice.md
|
|
6709
6835
|
*/
|
|
6710
6836
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
|
|
6711
6837
|
/**
|
|
6712
6838
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
6713
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6839
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-starts-ends-with.md
|
|
6714
6840
|
*/
|
|
6715
6841
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
|
|
6716
6842
|
/**
|
|
6717
6843
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
6718
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6844
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-trim-start-end.md
|
|
6719
6845
|
*/
|
|
6720
6846
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
|
|
6721
6847
|
/**
|
|
6722
6848
|
* Prefer using `structuredClone` to create a deep clone.
|
|
6723
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6849
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-structured-clone.md
|
|
6724
6850
|
*/
|
|
6725
6851
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>;
|
|
6726
6852
|
/**
|
|
6727
6853
|
* Prefer `switch` over multiple `else-if`.
|
|
6728
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6854
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-switch.md
|
|
6729
6855
|
*/
|
|
6730
6856
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>;
|
|
6731
6857
|
/**
|
|
6732
6858
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
6733
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6859
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-ternary.md
|
|
6734
6860
|
*/
|
|
6735
6861
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>;
|
|
6736
6862
|
/**
|
|
6737
6863
|
* Prefer top-level await over top-level promises and async function calls.
|
|
6738
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6864
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-top-level-await.md
|
|
6739
6865
|
*/
|
|
6740
6866
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
|
|
6741
6867
|
/**
|
|
6742
6868
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
6743
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6869
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-type-error.md
|
|
6744
6870
|
*/
|
|
6745
6871
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
|
|
6746
6872
|
/**
|
|
6747
6873
|
* Prevent abbreviations.
|
|
6748
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6874
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prevent-abbreviations.md
|
|
6749
6875
|
*/
|
|
6750
6876
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>;
|
|
6751
6877
|
/**
|
|
6752
6878
|
* Enforce consistent relative URL style.
|
|
6753
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6879
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/relative-url-style.md
|
|
6754
6880
|
*/
|
|
6755
6881
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
|
|
6756
6882
|
/**
|
|
6757
6883
|
* Enforce using the separator argument with `Array#join()`.
|
|
6758
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6884
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-array-join-separator.md
|
|
6759
6885
|
*/
|
|
6760
6886
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
|
|
6761
6887
|
/**
|
|
6762
6888
|
* Require non-empty module attributes for imports and exports
|
|
6763
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6889
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-module-attributes.md
|
|
6764
6890
|
*/
|
|
6765
6891
|
'unicorn/require-module-attributes'?: Linter.RuleEntry<[]>;
|
|
6766
6892
|
/**
|
|
6767
6893
|
* Require non-empty specifier list in import and export statements.
|
|
6768
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6894
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-module-specifiers.md
|
|
6769
6895
|
*/
|
|
6770
6896
|
'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
|
|
6771
6897
|
/**
|
|
6772
6898
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
6773
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6899
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-number-to-fixed-digits-argument.md
|
|
6774
6900
|
*/
|
|
6775
6901
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
|
|
6776
6902
|
/**
|
|
6777
6903
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
6778
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6904
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-post-message-target-origin.md
|
|
6779
6905
|
*/
|
|
6780
6906
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
|
|
6781
6907
|
/**
|
|
6782
6908
|
* Enforce better string content.
|
|
6783
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6909
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/string-content.md
|
|
6784
6910
|
*/
|
|
6785
6911
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>;
|
|
6786
6912
|
/**
|
|
6787
6913
|
* Enforce consistent brace style for `case` clauses.
|
|
6788
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6914
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/switch-case-braces.md
|
|
6789
6915
|
*/
|
|
6790
6916
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
|
|
6791
6917
|
/**
|
|
6792
6918
|
* Fix whitespace-insensitive template indentation.
|
|
6793
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6919
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/template-indent.md
|
|
6794
6920
|
*/
|
|
6795
6921
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>;
|
|
6796
6922
|
/**
|
|
6797
6923
|
* Enforce consistent case for text encoding identifiers.
|
|
6798
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6924
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/text-encoding-identifier-case.md
|
|
6799
6925
|
*/
|
|
6800
6926
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>;
|
|
6801
6927
|
/**
|
|
6802
6928
|
* Require `new` when creating an error.
|
|
6803
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.
|
|
6929
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/throw-new-error.md
|
|
6804
6930
|
*/
|
|
6805
6931
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
|
|
6806
6932
|
/**
|
|
@@ -6849,7 +6975,7 @@ interface RuleOptions {
|
|
|
6849
6975
|
*/
|
|
6850
6976
|
'vars-on-top'?: Linter.RuleEntry<[]>;
|
|
6851
6977
|
/**
|
|
6852
|
-
* require
|
|
6978
|
+
* require test file pattern
|
|
6853
6979
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/consistent-test-filename.md
|
|
6854
6980
|
*/
|
|
6855
6981
|
'vitest/consistent-test-filename'?: Linter.RuleEntry<VitestConsistentTestFilename>;
|
|
@@ -7029,6 +7155,11 @@ interface RuleOptions {
|
|
|
7029
7155
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
|
|
7030
7156
|
*/
|
|
7031
7157
|
'vitest/padding-around-test-blocks'?: Linter.RuleEntry<[]>;
|
|
7158
|
+
/**
|
|
7159
|
+
* Prefer `toHaveBeenCalledExactlyOnceWith` over `toHaveBeenCalledOnce` and `toHaveBeenCalledWith`
|
|
7160
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-called-exactly-once-with.md
|
|
7161
|
+
*/
|
|
7162
|
+
'vitest/prefer-called-exactly-once-with'?: Linter.RuleEntry<[]>;
|
|
7032
7163
|
/**
|
|
7033
7164
|
* enforce using `toBeCalledOnce()` or `toHaveBeenCalledOnce()`
|
|
7034
7165
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-called-once.md
|
|
@@ -7089,6 +7220,11 @@ interface RuleOptions {
|
|
|
7089
7220
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-on-top.md
|
|
7090
7221
|
*/
|
|
7091
7222
|
'vitest/prefer-hooks-on-top'?: Linter.RuleEntry<[]>;
|
|
7223
|
+
/**
|
|
7224
|
+
* prefer dynamic import in mock
|
|
7225
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-import-in-mock.md
|
|
7226
|
+
*/
|
|
7227
|
+
'vitest/prefer-import-in-mock'?: Linter.RuleEntry<[]>;
|
|
7092
7228
|
/**
|
|
7093
7229
|
* enforce importing Vitest globals
|
|
7094
7230
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-importing-vitest-globals.md
|
|
@@ -7508,7 +7644,7 @@ interface RuleOptions {
|
|
|
7508
7644
|
* disallow asynchronous actions in computed properties
|
|
7509
7645
|
* @see https://eslint.vuejs.org/rules/no-async-in-computed-properties.html
|
|
7510
7646
|
*/
|
|
7511
|
-
'vue/no-async-in-computed-properties'?: Linter.RuleEntry<
|
|
7647
|
+
'vue/no-async-in-computed-properties'?: Linter.RuleEntry<VueNoAsyncInComputedProperties>;
|
|
7512
7648
|
/**
|
|
7513
7649
|
* disallow the use of bare strings in `<template>`
|
|
7514
7650
|
* @see https://eslint.vuejs.org/rules/no-bare-strings-in-template.html
|
|
@@ -8009,7 +8145,7 @@ interface RuleOptions {
|
|
|
8009
8145
|
* disallow use of v-html to prevent XSS attack
|
|
8010
8146
|
* @see https://eslint.vuejs.org/rules/no-v-html.html
|
|
8011
8147
|
*/
|
|
8012
|
-
'vue/no-v-html'?: Linter.RuleEntry<
|
|
8148
|
+
'vue/no-v-html'?: Linter.RuleEntry<VueNoVHtml>;
|
|
8013
8149
|
/**
|
|
8014
8150
|
* disallow adding an argument to `v-model` used in custom component
|
|
8015
8151
|
* @see https://eslint.vuejs.org/rules/no-v-model-argument.html
|
|
@@ -8617,7 +8753,6 @@ interface RuleOptions {
|
|
|
8617
8753
|
*/
|
|
8618
8754
|
'yoda'?: Linter.RuleEntry<Yoda>;
|
|
8619
8755
|
}
|
|
8620
|
-
|
|
8621
8756
|
/* ======= Declarations ======= */
|
|
8622
8757
|
// ----- @eslint-community/eslint-comments/disable-enable-pair -----
|
|
8623
8758
|
type EslintCommunityEslintCommentsDisableEnablePair = [] | [{
|
|
@@ -8686,6 +8821,11 @@ type HtmlEslintNoRestrictedAttrs = {
|
|
|
8686
8821
|
attrPatterns: string[];
|
|
8687
8822
|
message?: string;
|
|
8688
8823
|
}[];
|
|
8824
|
+
// ----- @html-eslint/no-restricted-tags -----
|
|
8825
|
+
type HtmlEslintNoRestrictedTags = {
|
|
8826
|
+
tagPatterns: string[];
|
|
8827
|
+
message?: string;
|
|
8828
|
+
}[];
|
|
8689
8829
|
// ----- @html-eslint/quotes -----
|
|
8690
8830
|
type HtmlEslintQuotes = [] | [("single" | "double")] | [("single" | "double"), {
|
|
8691
8831
|
enforceTemplatedAttrValue?: boolean;
|
|
@@ -9420,6 +9560,10 @@ type TypescriptEslintNoUnnecessaryTypeAssertion = [] | [{
|
|
|
9420
9560
|
checkLiteralConstAssertions?: boolean;
|
|
9421
9561
|
typesToIgnore?: string[];
|
|
9422
9562
|
}];
|
|
9563
|
+
// ----- @typescript-eslint/no-unsafe-member-access -----
|
|
9564
|
+
type TypescriptEslintNoUnsafeMemberAccess = [] | [{
|
|
9565
|
+
allowOptionalChaining?: boolean;
|
|
9566
|
+
}];
|
|
9423
9567
|
// ----- @typescript-eslint/no-unused-expressions -----
|
|
9424
9568
|
type TypescriptEslintNoUnusedExpressions = [] | [{
|
|
9425
9569
|
allowShortCircuit?: boolean;
|
|
@@ -9437,6 +9581,7 @@ type TypescriptEslintNoUnusedVars = [] | [(("all" | "local") | {
|
|
|
9437
9581
|
destructuredArrayIgnorePattern?: string;
|
|
9438
9582
|
ignoreClassWithStaticInitBlock?: boolean;
|
|
9439
9583
|
ignoreRestSiblings?: boolean;
|
|
9584
|
+
ignoreUsingDeclarations?: boolean;
|
|
9440
9585
|
reportUsedIgnorePattern?: boolean;
|
|
9441
9586
|
vars?: ("all" | "local");
|
|
9442
9587
|
varsIgnorePattern?: string;
|
|
@@ -10413,6 +10558,7 @@ type JsdocCheckPropertyNames = [] | [{
|
|
|
10413
10558
|
type JsdocCheckTagNames = [] | [{
|
|
10414
10559
|
definedTags?: string[];
|
|
10415
10560
|
enableFixer?: boolean;
|
|
10561
|
+
inlineTags?: string[];
|
|
10416
10562
|
jsxTags?: boolean;
|
|
10417
10563
|
typed?: boolean;
|
|
10418
10564
|
}];
|
|
@@ -10455,6 +10601,12 @@ type JsdocConvertToJsdocComments = [] | [{
|
|
|
10455
10601
|
type JsdocEmptyTags = [] | [{
|
|
10456
10602
|
tags?: string[];
|
|
10457
10603
|
}];
|
|
10604
|
+
// ----- jsdoc/escape-inline-tags -----
|
|
10605
|
+
type JsdocEscapeInlineTags = [] | [{
|
|
10606
|
+
allowedInlineTags?: string[];
|
|
10607
|
+
enableFixer?: boolean;
|
|
10608
|
+
fixType?: ("backticks" | "backslash");
|
|
10609
|
+
}];
|
|
10458
10610
|
// ----- jsdoc/implements-on-classes -----
|
|
10459
10611
|
type JsdocImplementsOnClasses = [] | [{
|
|
10460
10612
|
contexts?: (string | {
|
|
@@ -10571,10 +10723,17 @@ type JsdocNoTypes = [] | [{
|
|
|
10571
10723
|
}];
|
|
10572
10724
|
// ----- jsdoc/no-undefined-types -----
|
|
10573
10725
|
type JsdocNoUndefinedTypes = [] | [{
|
|
10726
|
+
checkUsedTypedefs?: boolean;
|
|
10574
10727
|
definedTypes?: string[];
|
|
10575
10728
|
disableReporting?: boolean;
|
|
10576
10729
|
markVariablesAsUsed?: boolean;
|
|
10577
10730
|
}];
|
|
10731
|
+
// ----- jsdoc/prefer-import-tag -----
|
|
10732
|
+
type JsdocPreferImportTag = [] | [{
|
|
10733
|
+
enableFixer?: boolean;
|
|
10734
|
+
exemptTypedefs?: boolean;
|
|
10735
|
+
outputType?: ("named-import" | "namespaced-import");
|
|
10736
|
+
}];
|
|
10578
10737
|
// ----- jsdoc/require-asterisk-prefix -----
|
|
10579
10738
|
type JsdocRequireAsteriskPrefix = [] | [("always" | "never" | "any")] | [("always" | "never" | "any"), {
|
|
10580
10739
|
tags?: {
|
|
@@ -10681,6 +10840,7 @@ type JsdocRequireParam = [] | [{
|
|
|
10681
10840
|
enableRootFixer?: boolean;
|
|
10682
10841
|
exemptedBy?: string[];
|
|
10683
10842
|
ignoreWhenAllParamsMissing?: boolean;
|
|
10843
|
+
interfaceExemptsParamsCheck?: boolean;
|
|
10684
10844
|
unnamedRootBase?: string[];
|
|
10685
10845
|
useDefaultObjectProperties?: boolean;
|
|
10686
10846
|
}];
|
|
@@ -10733,6 +10893,7 @@ type JsdocRequireReturns = [] | [{
|
|
|
10733
10893
|
type JsdocRequireReturnsCheck = [] | [{
|
|
10734
10894
|
exemptAsync?: boolean;
|
|
10735
10895
|
exemptGenerators?: boolean;
|
|
10896
|
+
noNativeTypes?: boolean;
|
|
10736
10897
|
reportMissingReturnForUndefinedTypes?: boolean;
|
|
10737
10898
|
}];
|
|
10738
10899
|
// ----- jsdoc/require-returns-description -----
|
|
@@ -10749,6 +10910,14 @@ type JsdocRequireReturnsType = [] | [{
|
|
|
10749
10910
|
context?: string;
|
|
10750
10911
|
})[];
|
|
10751
10912
|
}];
|
|
10913
|
+
// ----- jsdoc/require-tags -----
|
|
10914
|
+
type JsdocRequireTags = [] | [{
|
|
10915
|
+
tags?: (string | {
|
|
10916
|
+
context?: string;
|
|
10917
|
+
tag?: string;
|
|
10918
|
+
[k: string]: unknown | undefined;
|
|
10919
|
+
})[];
|
|
10920
|
+
}];
|
|
10752
10921
|
// ----- jsdoc/require-template -----
|
|
10753
10922
|
type JsdocRequireTemplate = [] | [{
|
|
10754
10923
|
exemptedBy?: string[];
|
|
@@ -10782,7 +10951,6 @@ type JsdocRequireYieldsCheck = [] | [{
|
|
|
10782
10951
|
comment?: string;
|
|
10783
10952
|
context?: string;
|
|
10784
10953
|
})[];
|
|
10785
|
-
exemptedBy?: string[];
|
|
10786
10954
|
next?: boolean;
|
|
10787
10955
|
}];
|
|
10788
10956
|
// ----- jsdoc/sort-tags -----
|
|
@@ -10800,6 +10968,7 @@ type JsdocTagLines = [] | [("always" | "any" | "never")] | [("always" | "any" |
|
|
|
10800
10968
|
applyToEndTag?: boolean;
|
|
10801
10969
|
count?: number;
|
|
10802
10970
|
endLines?: (number | null);
|
|
10971
|
+
maxBlockLines?: (number | null);
|
|
10803
10972
|
startLines?: (number | null);
|
|
10804
10973
|
tags?: {
|
|
10805
10974
|
[k: string]: {
|
|
@@ -10813,6 +10982,49 @@ type JsdocTextEscaping = [] | [{
|
|
|
10813
10982
|
escapeHTML?: boolean;
|
|
10814
10983
|
escapeMarkdown?: boolean;
|
|
10815
10984
|
}];
|
|
10985
|
+
// ----- jsdoc/ts-method-signature-style -----
|
|
10986
|
+
type JsdocTsMethodSignatureStyle = [] | [("method" | "property")] | [("method" | "property"), {
|
|
10987
|
+
enableFixer?: boolean;
|
|
10988
|
+
}];
|
|
10989
|
+
// ----- jsdoc/ts-no-unnecessary-template-expression -----
|
|
10990
|
+
type JsdocTsNoUnnecessaryTemplateExpression = [] | [{
|
|
10991
|
+
enableFixer?: boolean;
|
|
10992
|
+
}];
|
|
10993
|
+
// ----- jsdoc/ts-prefer-function-type -----
|
|
10994
|
+
type JsdocTsPreferFunctionType = [] | [{
|
|
10995
|
+
enableFixer?: boolean;
|
|
10996
|
+
}];
|
|
10997
|
+
// ----- jsdoc/type-formatting -----
|
|
10998
|
+
type JsdocTypeFormatting = [] | [{
|
|
10999
|
+
arrayBrackets?: ("angle" | "square");
|
|
11000
|
+
arrowFunctionPostReturnMarkerSpacing?: string;
|
|
11001
|
+
arrowFunctionPreReturnMarkerSpacing?: string;
|
|
11002
|
+
enableFixer?: boolean;
|
|
11003
|
+
functionOrClassParameterSpacing?: string;
|
|
11004
|
+
functionOrClassPostGenericSpacing?: string;
|
|
11005
|
+
functionOrClassPostReturnMarkerSpacing?: string;
|
|
11006
|
+
functionOrClassPreReturnMarkerSpacing?: string;
|
|
11007
|
+
functionOrClassTypeParameterSpacing?: string;
|
|
11008
|
+
genericAndTupleElementSpacing?: string;
|
|
11009
|
+
genericDot?: boolean;
|
|
11010
|
+
keyValuePostColonSpacing?: string;
|
|
11011
|
+
keyValuePostKeySpacing?: string;
|
|
11012
|
+
keyValuePostOptionalSpacing?: string;
|
|
11013
|
+
keyValuePostVariadicSpacing?: string;
|
|
11014
|
+
methodQuotes?: ("double" | "single");
|
|
11015
|
+
objectFieldIndent?: string;
|
|
11016
|
+
objectFieldQuote?: ("double" | "single" | null);
|
|
11017
|
+
objectFieldSeparator?: ("comma" | "comma-and-linebreak" | "linebreak" | "semicolon" | "semicolon-and-linebreak");
|
|
11018
|
+
objectFieldSeparatorOptionalLinebreak?: boolean;
|
|
11019
|
+
objectFieldSeparatorTrailingPunctuation?: boolean;
|
|
11020
|
+
parameterDefaultValueSpacing?: string;
|
|
11021
|
+
postMethodNameSpacing?: string;
|
|
11022
|
+
postNewSpacing?: string;
|
|
11023
|
+
separatorForSingleObjectField?: boolean;
|
|
11024
|
+
stringQuotes?: ("double" | "single");
|
|
11025
|
+
typeBracketSpacing?: string;
|
|
11026
|
+
unionSpacing?: string;
|
|
11027
|
+
}];
|
|
10816
11028
|
// ----- jsdoc/valid-types -----
|
|
10817
11029
|
type JsdocValidTypes = [] | [{
|
|
10818
11030
|
allowEmptyNamepaths?: boolean;
|
|
@@ -11501,6 +11713,10 @@ type MarkdownNoHtml = [] | [{
|
|
|
11501
11713
|
type MarkdownNoMissingAtxHeadingSpace = [] | [{
|
|
11502
11714
|
checkClosedHeadings?: boolean;
|
|
11503
11715
|
}];
|
|
11716
|
+
// ----- markdown/no-missing-label-refs -----
|
|
11717
|
+
type MarkdownNoMissingLabelRefs = [] | [{
|
|
11718
|
+
allowLabels?: string[];
|
|
11719
|
+
}];
|
|
11504
11720
|
// ----- markdown/no-missing-link-fragments -----
|
|
11505
11721
|
type MarkdownNoMissingLinkFragments = [] | [{
|
|
11506
11722
|
ignoreCase?: boolean;
|
|
@@ -11892,12 +12108,14 @@ type NoRestrictedImports = ((string | {
|
|
|
11892
12108
|
message?: string;
|
|
11893
12109
|
importNames?: string[];
|
|
11894
12110
|
allowImportNames?: string[];
|
|
12111
|
+
allowTypeImports?: boolean;
|
|
11895
12112
|
})[] | [] | [{
|
|
11896
12113
|
paths?: (string | {
|
|
11897
12114
|
name: string;
|
|
11898
12115
|
message?: string;
|
|
11899
12116
|
importNames?: string[];
|
|
11900
12117
|
allowImportNames?: string[];
|
|
12118
|
+
allowTypeImports?: boolean;
|
|
11901
12119
|
})[];
|
|
11902
12120
|
patterns?: (string[] | ({
|
|
11903
12121
|
[k: string]: unknown | undefined;
|
|
@@ -12085,7 +12303,7 @@ type NodeHashbang = [] | [{
|
|
|
12085
12303
|
// ----- node/no-deprecated-api -----
|
|
12086
12304
|
type NodeNoDeprecatedApi = [] | [{
|
|
12087
12305
|
version?: string;
|
|
12088
|
-
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()")[];
|
|
12306
|
+
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()")[];
|
|
12089
12307
|
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")[];
|
|
12090
12308
|
ignoreIndirectDependencies?: boolean;
|
|
12091
12309
|
}];
|
|
@@ -12279,7 +12497,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
|
|
|
12279
12497
|
type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
|
|
12280
12498
|
version?: string;
|
|
12281
12499
|
allowExperimental?: boolean;
|
|
12282
|
-
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")[];
|
|
12500
|
+
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")[];
|
|
12283
12501
|
}];
|
|
12284
12502
|
// ----- node/prefer-global/buffer -----
|
|
12285
12503
|
type NodePreferGlobalBuffer = [] | [("always" | "never")];
|
|
@@ -14151,6 +14369,7 @@ type PnpmJsonEnforceCatalog = [] | [{
|
|
|
14151
14369
|
reuseExistingCatalog?: boolean;
|
|
14152
14370
|
conflicts?: ("new-catalog" | "overrides" | "error");
|
|
14153
14371
|
fields?: string[];
|
|
14372
|
+
ignores?: string[];
|
|
14154
14373
|
}];
|
|
14155
14374
|
// ----- pnpm/json-prefer-workspace-settings -----
|
|
14156
14375
|
type PnpmJsonPreferWorkspaceSettings = [] | [{
|
|
@@ -14167,6 +14386,7 @@ type PnpmJsonValidCatalog = [] | [{
|
|
|
14167
14386
|
// ----- pnpm/yaml-no-duplicate-catalog-item -----
|
|
14168
14387
|
type PnpmYamlNoDuplicateCatalogItem = [] | [{
|
|
14169
14388
|
allow?: string[];
|
|
14389
|
+
checkDuplicates?: ("name-only" | "exact-version");
|
|
14170
14390
|
}];
|
|
14171
14391
|
// ----- prefer-arrow-callback -----
|
|
14172
14392
|
type PreferArrowCallback = [] | [{
|
|
@@ -14561,6 +14781,13 @@ type SvelteNoNavigationWithoutBase = [] | [{
|
|
|
14561
14781
|
ignorePushState?: boolean;
|
|
14562
14782
|
ignoreReplaceState?: boolean;
|
|
14563
14783
|
}];
|
|
14784
|
+
// ----- svelte/no-navigation-without-resolve -----
|
|
14785
|
+
type SvelteNoNavigationWithoutResolve = [] | [{
|
|
14786
|
+
ignoreGoto?: boolean;
|
|
14787
|
+
ignoreLinks?: boolean;
|
|
14788
|
+
ignorePushState?: boolean;
|
|
14789
|
+
ignoreReplaceState?: boolean;
|
|
14790
|
+
}];
|
|
14564
14791
|
// ----- svelte/no-reactive-reassign -----
|
|
14565
14792
|
type SvelteNoReactiveReassign = [] | [{
|
|
14566
14793
|
props?: boolean;
|
|
@@ -15514,6 +15741,7 @@ type UnusedImportsNoUnusedImports = [] | [(("all" | "local") | {
|
|
|
15514
15741
|
destructuredArrayIgnorePattern?: string;
|
|
15515
15742
|
ignoreClassWithStaticInitBlock?: boolean;
|
|
15516
15743
|
ignoreRestSiblings?: boolean;
|
|
15744
|
+
ignoreUsingDeclarations?: boolean;
|
|
15517
15745
|
reportUsedIgnorePattern?: boolean;
|
|
15518
15746
|
vars?: ("all" | "local");
|
|
15519
15747
|
varsIgnorePattern?: string;
|
|
@@ -15527,6 +15755,7 @@ type UnusedImportsNoUnusedVars = [] | [(("all" | "local") | {
|
|
|
15527
15755
|
destructuredArrayIgnorePattern?: string;
|
|
15528
15756
|
ignoreClassWithStaticInitBlock?: boolean;
|
|
15529
15757
|
ignoreRestSiblings?: boolean;
|
|
15758
|
+
ignoreUsingDeclarations?: boolean;
|
|
15530
15759
|
reportUsedIgnorePattern?: boolean;
|
|
15531
15760
|
vars?: ("all" | "local");
|
|
15532
15761
|
varsIgnorePattern?: string;
|
|
@@ -15676,6 +15905,7 @@ type VueAttributeHyphenation = [] | [("always" | "never")] | [("always" | "never
|
|
|
15676
15905
|
type VueAttributesOrder = [] | [{
|
|
15677
15906
|
order?: (("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT") | ("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT")[])[];
|
|
15678
15907
|
alphabetical?: boolean;
|
|
15908
|
+
sortLineLength?: boolean;
|
|
15679
15909
|
}];
|
|
15680
15910
|
// ----- vue/block-lang -----
|
|
15681
15911
|
type VueBlockLang = [] | [{
|
|
@@ -16322,6 +16552,10 @@ type VueNewLineBetweenMultiLineProperty = [] | [{
|
|
|
16322
16552
|
}];
|
|
16323
16553
|
// ----- vue/next-tick-style -----
|
|
16324
16554
|
type VueNextTickStyle = [] | [("promise" | "callback")];
|
|
16555
|
+
// ----- vue/no-async-in-computed-properties -----
|
|
16556
|
+
type VueNoAsyncInComputedProperties = [] | [{
|
|
16557
|
+
ignoredObjectNames?: string[];
|
|
16558
|
+
}];
|
|
16325
16559
|
// ----- vue/no-bare-strings-in-template -----
|
|
16326
16560
|
type VueNoBareStringsInTemplate = [] | [{
|
|
16327
16561
|
allowlist?: string[];
|
|
@@ -16606,6 +16840,10 @@ type VueNoUselessVBind = [] | [{
|
|
|
16606
16840
|
ignoreIncludesComment?: boolean;
|
|
16607
16841
|
ignoreStringEscape?: boolean;
|
|
16608
16842
|
}];
|
|
16843
|
+
// ----- vue/no-v-html -----
|
|
16844
|
+
type VueNoVHtml = [] | [{
|
|
16845
|
+
ignorePattern?: string;
|
|
16846
|
+
}];
|
|
16609
16847
|
// ----- vue/no-v-text-v-html-on-component -----
|
|
16610
16848
|
type VueNoVTextVHtmlOnComponent = [] | [{
|
|
16611
16849
|
allow?: string[];
|
|
@@ -17104,6 +17342,11 @@ interface OptionsOverrides<Rules extends TypedConfigItem['rules'] = TypedConfigI
|
|
|
17104
17342
|
* Options for shareable cross plugins
|
|
17105
17343
|
*/
|
|
17106
17344
|
interface OptionsShareable {
|
|
17345
|
+
/**
|
|
17346
|
+
* The ECMAScript version of the code being linted
|
|
17347
|
+
* @default 'latest'
|
|
17348
|
+
*/
|
|
17349
|
+
ecmaVersion?: Linter.EcmaVersion;
|
|
17107
17350
|
/**
|
|
17108
17351
|
* @see {@link https://typescript-eslint.io/packages/parser/#extrafileextensions}
|
|
17109
17352
|
*/
|