@coderwyd/eslint-config 4.10.5 → 4.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -271,6 +271,7 @@ interface RuleOptions {
271
271
  /**
272
272
  * disallow unused `eslint-disable` comments
273
273
  * @see https://eslint-community.github.io/eslint-plugin-eslint-comments/rules/no-unused-disable.html
274
+ * @deprecated
274
275
  */
275
276
  'eslint-comments/no-unused-disable'?: Linter.RuleEntry<[]>;
276
277
  /**
@@ -2146,6 +2147,11 @@ interface RuleOptions {
2146
2147
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/console.md
2147
2148
  */
2148
2149
  'node/prefer-global/console'?: Linter.RuleEntry<NodePreferGlobalConsole>;
2150
+ /**
2151
+ * enforce either `crypto` or `require("crypto").webcrypto`
2152
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/crypto.md
2153
+ */
2154
+ 'node/prefer-global/crypto'?: Linter.RuleEntry<NodePreferGlobalCrypto>;
2149
2155
  /**
2150
2156
  * enforce either `process` or `require("process")`
2151
2157
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/process.md
@@ -2161,6 +2167,11 @@ interface RuleOptions {
2161
2167
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/text-encoder.md
2162
2168
  */
2163
2169
  'node/prefer-global/text-encoder'?: Linter.RuleEntry<NodePreferGlobalTextEncoder>;
2170
+ /**
2171
+ * enforce either global timer functions or `require("timers")`
2172
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/timers.md
2173
+ */
2174
+ 'node/prefer-global/timers'?: Linter.RuleEntry<NodePreferGlobalTimers>;
2164
2175
  /**
2165
2176
  * enforce either `URL` or `require("url").URL`
2166
2177
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/url.md
@@ -2494,7 +2505,7 @@ interface RuleOptions {
2494
2505
  */
2495
2506
  'quotes'?: Linter.RuleEntry<Quotes>;
2496
2507
  /**
2497
- * Enforce the consistent use of the radix argument when using `parseInt()`
2508
+ * Enforce the use of the radix argument when using `parseInt()`
2498
2509
  * @see https://eslint.org/docs/latest/rules/radix
2499
2510
  */
2500
2511
  'radix'?: Linter.RuleEntry<Radix>;
@@ -2564,7 +2575,7 @@ interface RuleOptions {
2564
2575
  */
2565
2576
  'react-dom/no-unknown-property'?: Linter.RuleEntry<ReactDomNoUnknownProperty>;
2566
2577
  /**
2567
- * Enforces 'sandbox' attribute for 'iframe' elements is not set to unsafe combinations.
2578
+ * Enforces that the 'sandbox' attribute for 'iframe' elements is not set to unsafe combinations.
2568
2579
  * @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-iframe-sandbox
2569
2580
  */
2570
2581
  'react-dom/no-unsafe-iframe-sandbox'?: Linter.RuleEntry<[]>;
@@ -2731,6 +2742,11 @@ interface RuleOptions {
2731
2742
  * @see https://eslint-react.xyz/docs/rules/naming-convention-filename-extension
2732
2743
  */
2733
2744
  'react-naming-convention/filename-extension'?: Linter.RuleEntry<ReactNamingConventionFilenameExtension>;
2745
+ /**
2746
+ * Enforces identifier names assigned from 'useId' calls to be either 'id' or end with 'Id'.
2747
+ * @see https://eslint-react.xyz/docs/rules/naming-convention-id-name
2748
+ */
2749
+ 'react-naming-convention/id-name'?: Linter.RuleEntry<[]>;
2734
2750
  /**
2735
2751
  * Enforces identifier names assigned from 'useRef' calls to be either 'ref' or end with 'Ref'.
2736
2752
  * @see https://eslint-react.xyz/docs/rules/naming-convention-ref-name
@@ -2763,7 +2779,7 @@ interface RuleOptions {
2763
2779
  */
2764
2780
  'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>;
2765
2781
  /**
2766
- * Prevents unnecessary '$' symbols before JSX expressions.
2782
+ * Prevents unintentional '$' sign before expression.
2767
2783
  * @see https://eslint-react.xyz/docs/rules/jsx-dollar
2768
2784
  */
2769
2785
  'react/jsx-dollar'?: Linter.RuleEntry<[]>;
@@ -2914,7 +2930,7 @@ interface RuleOptions {
2914
2930
  */
2915
2931
  'react/no-forward-ref'?: Linter.RuleEntry<[]>;
2916
2932
  /**
2917
- * Prevents 'key' from not being explicitly specified (e.g., spreading 'key' from objects).
2933
+ * Prevents implicitly passing the 'key' prop to components.
2918
2934
  * @see https://eslint-react.xyz/docs/rules/no-implicit-key
2919
2935
  */
2920
2936
  'react/no-implicit-key'?: Linter.RuleEntry<[]>;
@@ -2924,12 +2940,12 @@ interface RuleOptions {
2924
2940
  */
2925
2941
  'react/no-leaked-conditional-rendering'?: Linter.RuleEntry<[]>;
2926
2942
  /**
2927
- * Enforces that all components have a 'displayName' that can be used in devtools.
2943
+ * Enforces that all components have a 'displayName' that can be used in DevTools.
2928
2944
  * @see https://eslint-react.xyz/docs/rules/no-missing-component-display-name
2929
2945
  */
2930
2946
  'react/no-missing-component-display-name'?: Linter.RuleEntry<[]>;
2931
2947
  /**
2932
- * Enforces that all contexts have a 'displayName' that can be used in devtools.
2948
+ * Enforces that all contexts have a 'displayName' that can be used in DevTools.
2933
2949
  * @see https://eslint-react.xyz/docs/rules/no-missing-context-display-name
2934
2950
  */
2935
2951
  'react/no-missing-context-display-name'?: Linter.RuleEntry<[]>;
@@ -2984,7 +3000,7 @@ interface RuleOptions {
2984
3000
  */
2985
3001
  'react/no-string-refs'?: Linter.RuleEntry<[]>;
2986
3002
  /**
2987
- * Disallows unnecessary 'key' props on elements.
3003
+ * Disallows unnecessary 'key' props on nested child elements when rendering lists.
2988
3004
  * @see https://eslint-react.xyz/docs/rules/no-unnecessary-key
2989
3005
  */
2990
3006
  'react/no-unnecessary-key'?: Linter.RuleEntry<[]>;
@@ -4933,7 +4949,7 @@ interface RuleOptions {
4933
4949
  * Disallow default values that will never be used
4934
4950
  * @see https://typescript-eslint.io/rules/no-useless-default-assignment
4935
4951
  */
4936
- 'ts/no-useless-default-assignment'?: Linter.RuleEntry<[]>;
4952
+ 'ts/no-useless-default-assignment'?: Linter.RuleEntry<TsNoUselessDefaultAssignment>;
4937
4953
  /**
4938
4954
  * Disallow empty exports that don't change anything in a module file
4939
4955
  * @see https://typescript-eslint.io/rules/no-useless-empty-export
@@ -5150,725 +5166,730 @@ interface RuleOptions {
5150
5166
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>;
5151
5167
  /**
5152
5168
  * Improve regexes by making them shorter, consistent, and safer.
5153
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/better-regex.md
5169
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/better-regex.md
5154
5170
  */
5155
5171
  'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>;
5156
5172
  /**
5157
5173
  * Enforce a specific parameter name in catch clauses.
5158
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/catch-error-name.md
5174
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/catch-error-name.md
5159
5175
  */
5160
5176
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>;
5161
5177
  /**
5162
5178
  * Enforce consistent assertion style with `node:assert`.
5163
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-assert.md
5179
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-assert.md
5164
5180
  */
5165
5181
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
5166
5182
  /**
5167
5183
  * Prefer passing `Date` directly to the constructor when cloning.
5168
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-date-clone.md
5184
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-date-clone.md
5169
5185
  */
5170
5186
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
5171
5187
  /**
5172
5188
  * Use destructured variables over properties.
5173
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-destructuring.md
5189
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-destructuring.md
5174
5190
  */
5175
5191
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
5176
5192
  /**
5177
5193
  * Prefer consistent types when spreading a ternary in an array literal.
5178
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-empty-array-spread.md
5194
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-empty-array-spread.md
5179
5195
  */
5180
5196
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
5181
5197
  /**
5182
5198
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
5183
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-existence-index-check.md
5199
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-existence-index-check.md
5184
5200
  */
5185
5201
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
5186
5202
  /**
5187
5203
  * Move function definitions to the highest possible scope.
5188
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-function-scoping.md
5204
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-function-scoping.md
5189
5205
  */
5190
5206
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
5191
5207
  /**
5192
5208
  * Enforce correct `Error` subclassing.
5193
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/custom-error-definition.md
5209
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/custom-error-definition.md
5194
5210
  */
5195
5211
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
5196
5212
  /**
5197
5213
  * Enforce no spaces between braces.
5198
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/empty-brace-spaces.md
5214
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/empty-brace-spaces.md
5199
5215
  */
5200
5216
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
5201
5217
  /**
5202
5218
  * Enforce passing a `message` value when creating a built-in error.
5203
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/error-message.md
5219
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/error-message.md
5204
5220
  */
5205
5221
  'unicorn/error-message'?: Linter.RuleEntry<[]>;
5206
5222
  /**
5207
5223
  * Require escape sequences to use uppercase or lowercase values.
5208
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/escape-case.md
5224
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/escape-case.md
5209
5225
  */
5210
5226
  'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>;
5211
5227
  /**
5212
5228
  * Add expiration conditions to TODO comments.
5213
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/expiring-todo-comments.md
5229
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/expiring-todo-comments.md
5214
5230
  */
5215
5231
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>;
5216
5232
  /**
5217
5233
  * Enforce explicitly comparing the `length` or `size` property of a value.
5218
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/explicit-length-check.md
5234
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/explicit-length-check.md
5219
5235
  */
5220
5236
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
5221
5237
  /**
5222
5238
  * Enforce a case style for filenames.
5223
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/filename-case.md
5239
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/filename-case.md
5224
5240
  */
5225
5241
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>;
5226
5242
  /**
5227
5243
  * Enforce specific import styles per module.
5228
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/import-style.md
5244
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/import-style.md
5229
5245
  */
5230
5246
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>;
5247
+ /**
5248
+ * Prevent usage of variables from outside the scope of isolated functions.
5249
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/isolated-functions.md
5250
+ */
5251
+ 'unicorn/isolated-functions'?: Linter.RuleEntry<UnicornIsolatedFunctions>;
5231
5252
  /**
5232
5253
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
5233
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/new-for-builtins.md
5254
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/new-for-builtins.md
5234
5255
  */
5235
5256
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
5236
5257
  /**
5237
5258
  * Enforce specifying rules to disable in `eslint-disable` comments.
5238
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-abusive-eslint-disable.md
5259
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-abusive-eslint-disable.md
5239
5260
  */
5240
5261
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
5241
5262
  /**
5242
5263
  * Disallow recursive access to `this` within getters and setters.
5243
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-accessor-recursion.md
5264
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-accessor-recursion.md
5244
5265
  */
5245
5266
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
5246
5267
  /**
5247
5268
  * Disallow anonymous functions and classes as the default export.
5248
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-anonymous-default-export.md
5269
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-anonymous-default-export.md
5249
5270
  */
5250
5271
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
5251
5272
  /**
5252
5273
  * Prevent passing a function reference directly to iterator methods.
5253
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-callback-reference.md
5274
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-callback-reference.md
5254
5275
  */
5255
5276
  'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
5256
5277
  /**
5257
5278
  * Prefer `for…of` over the `forEach` method.
5258
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-for-each.md
5279
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-for-each.md
5259
5280
  */
5260
5281
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
5261
5282
  /**
5262
5283
  * Disallow using the `this` argument in array methods.
5263
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-method-this-argument.md
5284
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-method-this-argument.md
5264
5285
  */
5265
5286
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
5266
5287
  /**
5267
5288
  * Replaced by `unicorn/prefer-single-call` which covers more cases.
5268
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-array-push-push
5289
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-array-push-push
5269
5290
  * @deprecated
5270
5291
  */
5271
5292
  'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
5272
5293
  /**
5273
5294
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
5274
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-reduce.md
5295
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-reduce.md
5275
5296
  */
5276
5297
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>;
5277
5298
  /**
5278
5299
  * Prefer `Array#toReversed()` over `Array#reverse()`.
5279
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-reverse.md
5300
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-reverse.md
5280
5301
  */
5281
5302
  'unicorn/no-array-reverse'?: Linter.RuleEntry<UnicornNoArrayReverse>;
5282
5303
  /**
5283
5304
  * Prefer `Array#toSorted()` over `Array#sort()`.
5284
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-sort.md
5305
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-sort.md
5285
5306
  */
5286
5307
  'unicorn/no-array-sort'?: Linter.RuleEntry<UnicornNoArraySort>;
5287
5308
  /**
5288
5309
  * Disallow member access from await expression.
5289
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-await-expression-member.md
5310
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-await-expression-member.md
5290
5311
  */
5291
5312
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
5292
5313
  /**
5293
5314
  * Disallow using `await` in `Promise` method parameters.
5294
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-await-in-promise-methods.md
5315
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-await-in-promise-methods.md
5295
5316
  */
5296
5317
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
5297
5318
  /**
5298
5319
  * Do not use leading/trailing space between `console.log` parameters.
5299
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-console-spaces.md
5320
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-console-spaces.md
5300
5321
  */
5301
5322
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
5302
5323
  /**
5303
5324
  * Do not use `document.cookie` directly.
5304
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-document-cookie.md
5325
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-document-cookie.md
5305
5326
  */
5306
5327
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
5307
5328
  /**
5308
5329
  * Disallow empty files.
5309
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-empty-file.md
5330
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-empty-file.md
5310
5331
  */
5311
5332
  'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
5312
5333
  /**
5313
5334
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
5314
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-for-loop.md
5335
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-for-loop.md
5315
5336
  */
5316
5337
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
5317
5338
  /**
5318
5339
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
5319
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-hex-escape.md
5340
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-hex-escape.md
5320
5341
  */
5321
5342
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
5322
5343
  /**
5323
5344
  * Disallow immediate mutation after variable assignment.
5324
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-immediate-mutation.md
5345
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-immediate-mutation.md
5325
5346
  */
5326
5347
  'unicorn/no-immediate-mutation'?: Linter.RuleEntry<[]>;
5327
5348
  /**
5328
5349
  * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
5329
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-instanceof-array
5350
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-instanceof-array
5330
5351
  * @deprecated
5331
5352
  */
5332
5353
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
5333
5354
  /**
5334
5355
  * Disallow `instanceof` with built-in objects
5335
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-instanceof-builtins.md
5356
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-instanceof-builtins.md
5336
5357
  */
5337
5358
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
5338
5359
  /**
5339
5360
  * Disallow invalid options in `fetch()` and `new Request()`.
5340
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-invalid-fetch-options.md
5361
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-invalid-fetch-options.md
5341
5362
  */
5342
5363
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
5343
5364
  /**
5344
5365
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
5345
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-invalid-remove-event-listener.md
5366
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-invalid-remove-event-listener.md
5346
5367
  */
5347
5368
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
5348
5369
  /**
5349
5370
  * Disallow identifiers starting with `new` or `class`.
5350
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-keyword-prefix.md
5371
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-keyword-prefix.md
5351
5372
  */
5352
5373
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
5353
5374
  /**
5354
5375
  * Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
5355
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-length-as-slice-end
5376
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
5356
5377
  * @deprecated
5357
5378
  */
5358
5379
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
5359
5380
  /**
5360
5381
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
5361
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-lonely-if.md
5382
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-lonely-if.md
5362
5383
  */
5363
5384
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
5364
5385
  /**
5365
5386
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
5366
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-magic-array-flat-depth.md
5387
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-magic-array-flat-depth.md
5367
5388
  */
5368
5389
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
5369
5390
  /**
5370
5391
  * Disallow named usage of default import and export.
5371
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-named-default.md
5392
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-named-default.md
5372
5393
  */
5373
5394
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
5374
5395
  /**
5375
5396
  * Disallow negated conditions.
5376
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-negated-condition.md
5397
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-negated-condition.md
5377
5398
  */
5378
5399
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
5379
5400
  /**
5380
5401
  * Disallow negated expression in equality check.
5381
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-negation-in-equality-check.md
5402
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-negation-in-equality-check.md
5382
5403
  */
5383
5404
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
5384
5405
  /**
5385
5406
  * Disallow nested ternary expressions.
5386
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-nested-ternary.md
5407
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-nested-ternary.md
5387
5408
  */
5388
5409
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
5389
5410
  /**
5390
5411
  * Disallow `new Array()`.
5391
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-new-array.md
5412
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-new-array.md
5392
5413
  */
5393
5414
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
5394
5415
  /**
5395
5416
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
5396
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-new-buffer.md
5417
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-new-buffer.md
5397
5418
  */
5398
5419
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
5399
5420
  /**
5400
5421
  * Disallow the use of the `null` literal.
5401
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-null.md
5422
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-null.md
5402
5423
  */
5403
5424
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>;
5404
5425
  /**
5405
5426
  * Disallow the use of objects as default parameters.
5406
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-object-as-default-parameter.md
5427
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-object-as-default-parameter.md
5407
5428
  */
5408
5429
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
5409
5430
  /**
5410
5431
  * Disallow `process.exit()`.
5411
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-process-exit.md
5432
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-process-exit.md
5412
5433
  */
5413
5434
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
5414
5435
  /**
5415
5436
  * Disallow passing single-element arrays to `Promise` methods.
5416
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-single-promise-in-promise-methods.md
5437
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-single-promise-in-promise-methods.md
5417
5438
  */
5418
5439
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
5419
5440
  /**
5420
5441
  * Disallow classes that only have static members.
5421
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-static-only-class.md
5442
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-static-only-class.md
5422
5443
  */
5423
5444
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
5424
5445
  /**
5425
5446
  * Disallow `then` property.
5426
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-thenable.md
5447
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-thenable.md
5427
5448
  */
5428
5449
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
5429
5450
  /**
5430
5451
  * Disallow assigning `this` to a variable.
5431
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-this-assignment.md
5452
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-this-assignment.md
5432
5453
  */
5433
5454
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
5434
5455
  /**
5435
5456
  * Disallow comparing `undefined` using `typeof`.
5436
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-typeof-undefined.md
5457
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-typeof-undefined.md
5437
5458
  */
5438
5459
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
5439
5460
  /**
5440
5461
  * Disallow using `1` as the `depth` argument of `Array#flat()`.
5441
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-array-flat-depth.md
5462
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-array-flat-depth.md
5442
5463
  */
5443
5464
  'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
5444
5465
  /**
5445
5466
  * Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
5446
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-array-splice-count.md
5467
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-array-splice-count.md
5447
5468
  */
5448
5469
  'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
5449
5470
  /**
5450
5471
  * Disallow awaiting non-promise values.
5451
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-await.md
5472
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-await.md
5452
5473
  */
5453
5474
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
5454
5475
  /**
5455
5476
  * Enforce the use of built-in methods instead of unnecessary polyfills.
5456
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-polyfills.md
5477
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-polyfills.md
5457
5478
  */
5458
5479
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
5459
5480
  /**
5460
5481
  * Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
5461
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-slice-end.md
5482
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-slice-end.md
5462
5483
  */
5463
5484
  'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
5464
5485
  /**
5465
5486
  * Disallow unreadable array destructuring.
5466
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unreadable-array-destructuring.md
5487
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unreadable-array-destructuring.md
5467
5488
  */
5468
5489
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
5469
5490
  /**
5470
5491
  * Disallow unreadable IIFEs.
5471
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unreadable-iife.md
5492
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unreadable-iife.md
5472
5493
  */
5473
5494
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
5474
5495
  /**
5475
5496
  * Disallow unused object properties.
5476
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unused-properties.md
5497
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unused-properties.md
5477
5498
  */
5478
5499
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
5479
5500
  /**
5480
5501
  * Disallow useless values or fallbacks in `Set`, `Map`, `WeakSet`, or `WeakMap`.
5481
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-collection-argument.md
5502
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-collection-argument.md
5482
5503
  */
5483
5504
  'unicorn/no-useless-collection-argument'?: Linter.RuleEntry<[]>;
5484
5505
  /**
5485
5506
  * Disallow unnecessary `Error.captureStackTrace(…)`.
5486
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-error-capture-stack-trace.md
5507
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-error-capture-stack-trace.md
5487
5508
  */
5488
5509
  'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
5489
5510
  /**
5490
5511
  * Disallow useless fallback when spreading in object literals.
5491
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-fallback-in-spread.md
5512
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-fallback-in-spread.md
5492
5513
  */
5493
5514
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
5494
5515
  /**
5495
5516
  * Disallow useless array length check.
5496
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-length-check.md
5517
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-length-check.md
5497
5518
  */
5498
5519
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
5499
5520
  /**
5500
5521
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
5501
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-promise-resolve-reject.md
5522
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-promise-resolve-reject.md
5502
5523
  */
5503
5524
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
5504
5525
  /**
5505
5526
  * Disallow unnecessary spread.
5506
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-spread.md
5527
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-spread.md
5507
5528
  */
5508
5529
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
5509
5530
  /**
5510
5531
  * Disallow useless case in switch statements.
5511
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-switch-case.md
5532
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-switch-case.md
5512
5533
  */
5513
5534
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
5514
5535
  /**
5515
5536
  * Disallow useless `undefined`.
5516
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-undefined.md
5537
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-undefined.md
5517
5538
  */
5518
5539
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>;
5519
5540
  /**
5520
5541
  * Disallow number literals with zero fractions or dangling dots.
5521
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-zero-fractions.md
5542
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-zero-fractions.md
5522
5543
  */
5523
5544
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
5524
5545
  /**
5525
5546
  * Enforce proper case for numeric literals.
5526
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/number-literal-case.md
5547
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/number-literal-case.md
5527
5548
  */
5528
5549
  'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>;
5529
5550
  /**
5530
5551
  * Enforce the style of numeric separators by correctly grouping digits.
5531
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/numeric-separators-style.md
5552
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/numeric-separators-style.md
5532
5553
  */
5533
5554
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
5534
5555
  /**
5535
5556
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
5536
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-add-event-listener.md
5557
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-add-event-listener.md
5537
5558
  */
5538
5559
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>;
5539
5560
  /**
5540
5561
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
5541
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-find.md
5562
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-find.md
5542
5563
  */
5543
5564
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>;
5544
5565
  /**
5545
5566
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
5546
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-flat.md
5567
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-flat.md
5547
5568
  */
5548
5569
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>;
5549
5570
  /**
5550
5571
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
5551
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-flat-map.md
5572
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-flat-map.md
5552
5573
  */
5553
5574
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
5554
5575
  /**
5555
5576
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
5556
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-index-of.md
5577
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-index-of.md
5557
5578
  */
5558
5579
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
5559
5580
  /**
5560
5581
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
5561
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-some.md
5582
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-some.md
5562
5583
  */
5563
5584
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
5564
5585
  /**
5565
5586
  * Prefer `.at()` method for index access and `String#charAt()`.
5566
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-at.md
5587
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-at.md
5567
5588
  */
5568
5589
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>;
5569
5590
  /**
5570
5591
  * Prefer `BigInt` literals over the constructor.
5571
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-bigint-literals.md
5592
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-bigint-literals.md
5572
5593
  */
5573
5594
  'unicorn/prefer-bigint-literals'?: Linter.RuleEntry<[]>;
5574
5595
  /**
5575
5596
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
5576
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-blob-reading-methods.md
5597
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-blob-reading-methods.md
5577
5598
  */
5578
5599
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
5579
5600
  /**
5580
5601
  * Prefer class field declarations over `this` assignments in constructors.
5581
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-class-fields.md
5602
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-class-fields.md
5582
5603
  */
5583
5604
  'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
5584
5605
  /**
5585
5606
  * Prefer using `Element#classList.toggle()` to toggle class names.
5586
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-classlist-toggle.md
5607
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-classlist-toggle.md
5587
5608
  */
5588
5609
  'unicorn/prefer-classlist-toggle'?: Linter.RuleEntry<[]>;
5589
5610
  /**
5590
5611
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
5591
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-code-point.md
5612
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-code-point.md
5592
5613
  */
5593
5614
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
5594
5615
  /**
5595
5616
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
5596
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-date-now.md
5617
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-date-now.md
5597
5618
  */
5598
5619
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
5599
5620
  /**
5600
5621
  * Prefer default parameters over reassignment.
5601
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-default-parameters.md
5622
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-default-parameters.md
5602
5623
  */
5603
5624
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
5604
5625
  /**
5605
5626
  * Prefer `Node#append()` over `Node#appendChild()`.
5606
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-append.md
5627
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-append.md
5607
5628
  */
5608
5629
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
5609
5630
  /**
5610
5631
  * Prefer using `.dataset` on DOM elements over calling attribute methods.
5611
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-dataset.md
5632
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-dataset.md
5612
5633
  */
5613
5634
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
5614
5635
  /**
5615
5636
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
5616
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-remove.md
5637
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-remove.md
5617
5638
  */
5618
5639
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
5619
5640
  /**
5620
5641
  * Prefer `.textContent` over `.innerText`.
5621
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-text-content.md
5642
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-text-content.md
5622
5643
  */
5623
5644
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
5624
5645
  /**
5625
5646
  * Prefer `EventTarget` over `EventEmitter`.
5626
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-event-target.md
5647
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-event-target.md
5627
5648
  */
5628
5649
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
5629
5650
  /**
5630
5651
  * Prefer `export…from` when re-exporting.
5631
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-export-from.md
5652
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-export-from.md
5632
5653
  */
5633
5654
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>;
5634
5655
  /**
5635
5656
  * Prefer `globalThis` over `window`, `self`, and `global`.
5636
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-global-this.md
5657
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-global-this.md
5637
5658
  */
5638
5659
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
5639
5660
  /**
5640
5661
  * Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
5641
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-import-meta-properties.md
5662
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-import-meta-properties.md
5642
5663
  */
5643
5664
  'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
5644
5665
  /**
5645
5666
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
5646
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-includes.md
5667
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-includes.md
5647
5668
  */
5648
5669
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
5649
5670
  /**
5650
5671
  * Prefer reading a JSON file as a buffer.
5651
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-json-parse-buffer.md
5672
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-json-parse-buffer.md
5652
5673
  */
5653
5674
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
5654
5675
  /**
5655
5676
  * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
5656
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-keyboard-event-key.md
5677
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-keyboard-event-key.md
5657
5678
  */
5658
5679
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
5659
5680
  /**
5660
5681
  * Prefer using a logical operator over a ternary.
5661
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-logical-operator-over-ternary.md
5682
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-logical-operator-over-ternary.md
5662
5683
  */
5663
5684
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
5664
5685
  /**
5665
5686
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
5666
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-math-min-max.md
5687
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-math-min-max.md
5667
5688
  */
5668
5689
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
5669
5690
  /**
5670
5691
  * Enforce the use of `Math.trunc` instead of bitwise operators.
5671
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-math-trunc.md
5692
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-math-trunc.md
5672
5693
  */
5673
5694
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
5674
5695
  /**
5675
5696
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
5676
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-modern-dom-apis.md
5697
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-modern-dom-apis.md
5677
5698
  */
5678
5699
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
5679
5700
  /**
5680
5701
  * Prefer modern `Math` APIs over legacy patterns.
5681
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-modern-math-apis.md
5702
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-modern-math-apis.md
5682
5703
  */
5683
5704
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
5684
5705
  /**
5685
5706
  * Prefer JavaScript modules (ESM) over CommonJS.
5686
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-module.md
5707
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-module.md
5687
5708
  */
5688
5709
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
5689
5710
  /**
5690
5711
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
5691
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-native-coercion-functions.md
5712
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-native-coercion-functions.md
5692
5713
  */
5693
5714
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
5694
5715
  /**
5695
5716
  * Prefer negative index over `.length - index` when possible.
5696
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-negative-index.md
5717
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-negative-index.md
5697
5718
  */
5698
5719
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
5699
5720
  /**
5700
5721
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
5701
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-node-protocol.md
5722
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-node-protocol.md
5702
5723
  */
5703
5724
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
5704
5725
  /**
5705
5726
  * Prefer `Number` static properties over global ones.
5706
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-number-properties.md
5727
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-number-properties.md
5707
5728
  */
5708
5729
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>;
5709
5730
  /**
5710
5731
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
5711
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-object-from-entries.md
5732
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-object-from-entries.md
5712
5733
  */
5713
5734
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
5714
5735
  /**
5715
5736
  * Prefer omitting the `catch` binding parameter.
5716
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-optional-catch-binding.md
5737
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-optional-catch-binding.md
5717
5738
  */
5718
5739
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
5719
5740
  /**
5720
5741
  * Prefer borrowing methods from the prototype instead of the instance.
5721
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-prototype-methods.md
5742
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-prototype-methods.md
5722
5743
  */
5723
5744
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
5724
5745
  /**
5725
5746
  * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
5726
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-query-selector.md
5747
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-query-selector.md
5727
5748
  */
5728
5749
  'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
5729
5750
  /**
5730
5751
  * Prefer `Reflect.apply()` over `Function#apply()`.
5731
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-reflect-apply.md
5752
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-reflect-apply.md
5732
5753
  */
5733
5754
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
5734
5755
  /**
5735
5756
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
5736
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-regexp-test.md
5757
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-regexp-test.md
5737
5758
  */
5738
5759
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
5739
5760
  /**
5740
5761
  * Prefer `Response.json()` over `new Response(JSON.stringify())`.
5741
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-response-static-json.md
5762
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-response-static-json.md
5742
5763
  */
5743
5764
  'unicorn/prefer-response-static-json'?: Linter.RuleEntry<[]>;
5744
5765
  /**
5745
5766
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
5746
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-set-has.md
5767
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-set-has.md
5747
5768
  */
5748
5769
  'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
5749
5770
  /**
5750
5771
  * Prefer using `Set#size` instead of `Array#length`.
5751
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-set-size.md
5772
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-set-size.md
5752
5773
  */
5753
5774
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
5754
5775
  /**
5755
5776
  * Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
5756
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-single-call.md
5777
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-single-call.md
5757
5778
  */
5758
5779
  'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>;
5759
5780
  /**
5760
5781
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
5761
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-spread.md
5782
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-spread.md
5762
5783
  */
5763
5784
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
5764
5785
  /**
5765
5786
  * Prefer using the `String.raw` tag to avoid escaping `\`.
5766
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-raw.md
5787
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-raw.md
5767
5788
  */
5768
5789
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
5769
5790
  /**
5770
5791
  * Prefer `String#replaceAll()` over regex searches with the global flag.
5771
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-replace-all.md
5792
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-replace-all.md
5772
5793
  */
5773
5794
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
5774
5795
  /**
5775
5796
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
5776
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-slice.md
5797
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-slice.md
5777
5798
  */
5778
5799
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
5779
5800
  /**
5780
5801
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
5781
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-starts-ends-with.md
5802
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-starts-ends-with.md
5782
5803
  */
5783
5804
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
5784
5805
  /**
5785
5806
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
5786
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-trim-start-end.md
5807
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-trim-start-end.md
5787
5808
  */
5788
5809
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
5789
5810
  /**
5790
5811
  * Prefer using `structuredClone` to create a deep clone.
5791
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-structured-clone.md
5812
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-structured-clone.md
5792
5813
  */
5793
5814
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>;
5794
5815
  /**
5795
5816
  * Prefer `switch` over multiple `else-if`.
5796
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-switch.md
5817
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-switch.md
5797
5818
  */
5798
5819
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>;
5799
5820
  /**
5800
5821
  * Prefer ternary expressions over simple `if-else` statements.
5801
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-ternary.md
5822
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-ternary.md
5802
5823
  */
5803
5824
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>;
5804
5825
  /**
5805
5826
  * Prefer top-level await over top-level promises and async function calls.
5806
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-top-level-await.md
5827
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-top-level-await.md
5807
5828
  */
5808
5829
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
5809
5830
  /**
5810
5831
  * Enforce throwing `TypeError` in type checking conditions.
5811
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-type-error.md
5832
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-type-error.md
5812
5833
  */
5813
5834
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
5814
5835
  /**
5815
5836
  * Prevent abbreviations.
5816
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prevent-abbreviations.md
5837
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prevent-abbreviations.md
5817
5838
  */
5818
5839
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>;
5819
5840
  /**
5820
5841
  * Enforce consistent relative URL style.
5821
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/relative-url-style.md
5842
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/relative-url-style.md
5822
5843
  */
5823
5844
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
5824
5845
  /**
5825
5846
  * Enforce using the separator argument with `Array#join()`.
5826
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-array-join-separator.md
5847
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-array-join-separator.md
5827
5848
  */
5828
5849
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
5829
5850
  /**
5830
5851
  * Require non-empty module attributes for imports and exports
5831
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-module-attributes.md
5852
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-module-attributes.md
5832
5853
  */
5833
5854
  'unicorn/require-module-attributes'?: Linter.RuleEntry<[]>;
5834
5855
  /**
5835
5856
  * Require non-empty specifier list in import and export statements.
5836
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-module-specifiers.md
5857
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-module-specifiers.md
5837
5858
  */
5838
5859
  'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
5839
5860
  /**
5840
5861
  * Enforce using the digits argument with `Number#toFixed()`.
5841
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-number-to-fixed-digits-argument.md
5862
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-number-to-fixed-digits-argument.md
5842
5863
  */
5843
5864
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
5844
5865
  /**
5845
5866
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
5846
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-post-message-target-origin.md
5867
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-post-message-target-origin.md
5847
5868
  */
5848
5869
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
5849
5870
  /**
5850
5871
  * Enforce better string content.
5851
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/string-content.md
5872
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/string-content.md
5852
5873
  */
5853
5874
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>;
5854
5875
  /**
5855
5876
  * Enforce consistent brace style for `case` clauses.
5856
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/switch-case-braces.md
5877
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/switch-case-braces.md
5857
5878
  */
5858
5879
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
5859
5880
  /**
5860
5881
  * Fix whitespace-insensitive template indentation.
5861
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/template-indent.md
5882
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/template-indent.md
5862
5883
  */
5863
5884
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>;
5864
5885
  /**
5865
5886
  * Enforce consistent case for text encoding identifiers.
5866
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/text-encoding-identifier-case.md
5887
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/text-encoding-identifier-case.md
5867
5888
  */
5868
5889
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<UnicornTextEncodingIdentifierCase>;
5869
5890
  /**
5870
5891
  * Require `new` when creating an error.
5871
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/throw-new-error.md
5892
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/throw-new-error.md
5872
5893
  */
5873
5894
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
5874
5895
  /**
@@ -7114,7 +7135,7 @@ interface RuleOptions {
7114
7135
  * enforce valid `v-for` directives
7115
7136
  * @see https://eslint.vuejs.org/rules/valid-v-for.html
7116
7137
  */
7117
- 'vue/valid-v-for'?: Linter.RuleEntry<[]>;
7138
+ 'vue/valid-v-for'?: Linter.RuleEntry<VueValidVFor>;
7118
7139
  /**
7119
7140
  * enforce valid `v-html` directives
7120
7141
  * @see https://eslint.vuejs.org/rules/valid-v-html.html
@@ -7213,6 +7234,7 @@ type AntfuConsistentListNewline = [] | [{
7213
7234
  ExportNamedDeclaration?: boolean;
7214
7235
  FunctionDeclaration?: boolean;
7215
7236
  FunctionExpression?: boolean;
7237
+ IfStatement?: boolean;
7216
7238
  ImportDeclaration?: boolean;
7217
7239
  JSONArrayExpression?: boolean;
7218
7240
  JSONObjectExpression?: boolean;
@@ -8133,6 +8155,7 @@ type JsoncObjectCurlyNewline = [] | [((("always" | "never") | {
8133
8155
  type JsoncObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
8134
8156
  arraysInObjects?: boolean;
8135
8157
  objectsInObjects?: boolean;
8158
+ emptyObjects?: ("ignore" | "always" | "never");
8136
8159
  }]; // ----- jsonc/object-property-newline -----
8137
8160
  type JsoncObjectPropertyNewline = [] | [{
8138
8161
  allowAllPropertiesOnSameLine?: boolean;
@@ -8697,6 +8720,7 @@ type MaxParams = [] | [(number | {
8697
8720
  maximum?: number;
8698
8721
  max?: number;
8699
8722
  countVoidThis?: boolean;
8723
+ countThis?: ("never" | "except-void" | "always");
8700
8724
  })]; // ----- max-statements -----
8701
8725
  type MaxStatements = [] | [(number | {
8702
8726
  maximum?: number;
@@ -9254,10 +9278,12 @@ type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
9254
9278
  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")[];
9255
9279
  }]; // ----- node/prefer-global/buffer -----
9256
9280
  type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
9257
- type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/process -----
9281
+ type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
9282
+ type NodePreferGlobalCrypto = [] | [("always" | "never")]; // ----- node/prefer-global/process -----
9258
9283
  type NodePreferGlobalProcess = [] | [("always" | "never")]; // ----- node/prefer-global/text-decoder -----
9259
9284
  type NodePreferGlobalTextDecoder = [] | [("always" | "never")]; // ----- node/prefer-global/text-encoder -----
9260
- type NodePreferGlobalTextEncoder = [] | [("always" | "never")]; // ----- node/prefer-global/url -----
9285
+ type NodePreferGlobalTextEncoder = [] | [("always" | "never")]; // ----- node/prefer-global/timers -----
9286
+ type NodePreferGlobalTimers = [] | [("always" | "never")]; // ----- node/prefer-global/url -----
9261
9287
  type NodePreferGlobalUrl = [] | [("always" | "never")]; // ----- node/prefer-global/url-search-params -----
9262
9288
  type NodePreferGlobalUrlSearchParams = [] | [("always" | "never")]; // ----- node/prefer-node-protocol -----
9263
9289
  type NodePreferNodeProtocol = [] | [{
@@ -9396,7 +9422,7 @@ type PerfectionistSortArrayIncludes = {
9396
9422
  pattern: string;
9397
9423
  flags?: string;
9398
9424
  } | string));
9399
- selector?: ("literal" | "spread");
9425
+ selector?: "literal";
9400
9426
  }, ...({
9401
9427
  elementNamePattern?: (({
9402
9428
  pattern: string;
@@ -9405,7 +9431,7 @@ type PerfectionistSortArrayIncludes = {
9405
9431
  pattern: string;
9406
9432
  flags?: string;
9407
9433
  } | string));
9408
- selector?: ("literal" | "spread");
9434
+ selector?: "literal";
9409
9435
  })[]];
9410
9436
  } | {
9411
9437
  fallbackSort?: {
@@ -9423,7 +9449,7 @@ type PerfectionistSortArrayIncludes = {
9423
9449
  pattern: string;
9424
9450
  flags?: string;
9425
9451
  } | string));
9426
- selector?: ("literal" | "spread");
9452
+ selector?: "literal";
9427
9453
  })[];
9428
9454
  newlinesInside?: (("ignore" | number) | "newlinesBetween");
9429
9455
  groups?: (string | [string, ...(string)[]] | {
@@ -9590,6 +9616,7 @@ type PerfectionistSortClasses = [] | [{
9590
9616
  order?: ("asc" | "desc");
9591
9617
  })[];
9592
9618
  newlinesBetween?: ("ignore" | number);
9619
+ useExperimentalDependencyDetection?: boolean;
9593
9620
  ignoreCallbackDependenciesPatterns?: (({
9594
9621
  pattern: string;
9595
9622
  flags?: string;
@@ -11476,7 +11503,7 @@ type PerfectionistSortSets = {
11476
11503
  pattern: string;
11477
11504
  flags?: string;
11478
11505
  } | string));
11479
- selector?: ("literal" | "spread");
11506
+ selector?: "literal";
11480
11507
  }, ...({
11481
11508
  elementNamePattern?: (({
11482
11509
  pattern: string;
@@ -11485,7 +11512,7 @@ type PerfectionistSortSets = {
11485
11512
  pattern: string;
11486
11513
  flags?: string;
11487
11514
  } | string));
11488
- selector?: ("literal" | "spread");
11515
+ selector?: "literal";
11489
11516
  })[]];
11490
11517
  } | {
11491
11518
  fallbackSort?: {
@@ -11503,7 +11530,7 @@ type PerfectionistSortSets = {
11503
11530
  pattern: string;
11504
11531
  flags?: string;
11505
11532
  } | string));
11506
- selector?: ("literal" | "spread");
11533
+ selector?: "literal";
11507
11534
  })[];
11508
11535
  newlinesInside?: (("ignore" | number) | "newlinesBetween");
11509
11536
  groups?: (string | [string, ...(string)[]] | {
@@ -11960,9 +11987,9 @@ type ReactNamingConventionUseState = [] | [{
11960
11987
  enforceSetterName?: boolean;
11961
11988
  }]; // ----- react-refresh/only-export-components -----
11962
11989
  type ReactRefreshOnlyExportComponents = [] | [{
11990
+ extraHOCs?: string[];
11963
11991
  allowExportNames?: string[];
11964
11992
  allowConstantExport?: boolean;
11965
- customHOCs?: string[];
11966
11993
  checkJS?: boolean;
11967
11994
  }]; // ----- react/jsx-shorthand-boolean -----
11968
11995
  type ReactJsxShorthandBoolean = [] | [(-1 | 1)]; // ----- react/jsx-shorthand-fragment -----
@@ -13174,7 +13201,10 @@ type TsNoUseBeforeDefine = [] | [("nofunc" | {
13174
13201
  ignoreTypeReferences?: boolean;
13175
13202
  typedefs?: boolean;
13176
13203
  variables?: boolean;
13177
- })]; // ----- ts/no-var-requires -----
13204
+ })]; // ----- ts/no-useless-default-assignment -----
13205
+ type TsNoUselessDefaultAssignment = [] | [{
13206
+ allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
13207
+ }]; // ----- ts/no-var-requires -----
13178
13208
  type TsNoVarRequires = [] | [{
13179
13209
  allow?: string[];
13180
13210
  }]; // ----- ts/only-throw-error -----
@@ -13421,7 +13451,15 @@ interface _UnicornImportStyle_ModuleStyles {
13421
13451
  }
13422
13452
  interface _UnicornImportStyle_BooleanObject {
13423
13453
  [k: string]: boolean | undefined;
13424
- } // ----- unicorn/no-array-reduce -----
13454
+ } // ----- unicorn/isolated-functions -----
13455
+ type UnicornIsolatedFunctions = [] | [{
13456
+ overrideGlobals?: {
13457
+ [k: string]: (boolean | ("readonly" | "writable" | "writeable" | "off")) | undefined;
13458
+ };
13459
+ functions?: string[];
13460
+ selectors?: string[];
13461
+ comments?: string[];
13462
+ }]; // ----- unicorn/no-array-reduce -----
13425
13463
  type UnicornNoArrayReduce = [] | [{
13426
13464
  allowSimpleOperations?: boolean;
13427
13465
  }]; // ----- unicorn/no-array-reverse -----
@@ -13638,6 +13676,7 @@ type VueAttributesOrder = [] | [{
13638
13676
  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")[])[];
13639
13677
  alphabetical?: boolean;
13640
13678
  sortLineLength?: boolean;
13679
+ ignoreVBindObject?: boolean;
13641
13680
  }]; // ----- vue/block-lang -----
13642
13681
  type VueBlockLang = [] | [{
13643
13682
  [k: string]: {
@@ -13710,7 +13749,7 @@ type VueDefineMacrosOrder = [] | [{
13710
13749
  }]; // ----- vue/define-props-declaration -----
13711
13750
  type VueDefinePropsDeclaration = [] | [("type-based" | "runtime")]; // ----- vue/define-props-destructuring -----
13712
13751
  type VueDefinePropsDestructuring = [] | [{
13713
- destructure?: ("always" | "never");
13752
+ destructure?: ("only-when-assigned" | "always" | "never");
13714
13753
  }]; // ----- vue/dot-location -----
13715
13754
  type VueDotLocation = [] | [("object" | "property")]; // ----- vue/dot-notation -----
13716
13755
  type VueDotNotation = [] | [{
@@ -14646,7 +14685,10 @@ type VueVSlotStyle = [] | [(("shorthand" | "longform") | {
14646
14685
  atComponent?: ("shorthand" | "longform" | "v-slot");
14647
14686
  default?: ("shorthand" | "longform" | "v-slot");
14648
14687
  named?: ("shorthand" | "longform");
14649
- })]; // ----- vue/valid-v-on -----
14688
+ })]; // ----- vue/valid-v-for -----
14689
+ type VueValidVFor = [] | [{
14690
+ allowEmptyAlias?: boolean;
14691
+ }]; // ----- vue/valid-v-on -----
14650
14692
  type VueValidVOn = [] | [{
14651
14693
  modifiers?: unknown[];
14652
14694
  }]; // ----- vue/valid-v-slot -----
@@ -14748,7 +14790,14 @@ interface OptionsUnoCSS extends OptionsOverrides {
14748
14790
  */
14749
14791
  strict?: boolean;
14750
14792
  }
14751
- interface OptionsVue extends OptionsOverrides {}
14793
+ interface OptionsVue extends OptionsOverrides {
14794
+ /**
14795
+ * Vue version. Apply different rules set from `eslint-plugin-vue`.
14796
+ *
14797
+ * @default 3
14798
+ */
14799
+ vueVersion?: 2 | 3;
14800
+ }
14752
14801
  interface OptionsConfig extends OptionsComponentExts {
14753
14802
  /**
14754
14803
  * The current working directory
@@ -14854,6 +14903,14 @@ interface OptionsConfig extends OptionsComponentExts {
14854
14903
  */
14855
14904
  regexp?: boolean | (OptionsRegExp & OptionsOverrides);
14856
14905
  /**
14906
+ * Enable perfectionist rules.
14907
+ *
14908
+ * @see https://github.com/azat-io/eslint-plugin-perfectionist
14909
+ * @default true
14910
+ *
14911
+ */
14912
+ perfectionist?: boolean;
14913
+ /**
14857
14914
  * Control to disable some rules in editors.
14858
14915
  * @default auto-detect based on the process.env
14859
14916
  */
@@ -14906,12 +14963,10 @@ declare function renameRules(rules: Record<string, any>, map: Record<string, str
14906
14963
  * ```
14907
14964
  */
14908
14965
  declare function renamePluginInConfigs(configs: TypedFlatConfigItem[], map: Record<string, string>): TypedFlatConfigItem[];
14909
- declare function getVueVersion(): number;
14910
14966
  declare function toArray<T>(value: T | T[]): T[];
14911
14967
  declare function interopDefault<T>(m: Awaitable<T>): Promise<T extends {
14912
14968
  default: infer U;
14913
14969
  } ? U : T>;
14914
- declare function isPackageInScope(name: string): boolean;
14915
14970
  declare function ensurePackages(packages: string[]): Promise<void>;
14916
14971
  declare function resolveSubOptions<K extends keyof OptionsConfig>(options: OptionsConfig, key: K): Partial<ResolvedOptions<OptionsConfig[K]>>;
14917
14972
  declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsConfig, key: K): Partial<Linter.RulesRecord & RuleOptions>;
@@ -14942,4 +14997,4 @@ declare const defaultPluginRenaming: {
14942
14997
  */
14943
14998
  declare function defineConfig(options?: OptionsConfig & Omit<TypedFlatConfigItem, "files">, ...userConfigs: Awaitable<TypedFlatConfigItem | TypedFlatConfigItem[] | Linter.Config[]>[]): Promise<TypedFlatConfigItem[]>;
14944
14999
  //#endregion
14945
- export { Awaitable, OptionsComponentExts, OptionsConfig, OptionsFiles, OptionsHasTypeScript, OptionsIsInEditor, OptionsOverrides, OptionsRegExp, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, OptionsUnoCSS, OptionsVue, ResolvedOptions, TypedFlatConfigItem, combine, defaultPluginRenaming, defineConfig, ensurePackages, getOverrides, getVueVersion, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, renamePluginInConfigs, renameRules, resolveSubOptions, toArray };
15000
+ export { Awaitable, OptionsComponentExts, OptionsConfig, OptionsFiles, OptionsHasTypeScript, OptionsIsInEditor, OptionsOverrides, OptionsRegExp, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, OptionsUnoCSS, OptionsVue, ResolvedOptions, TypedFlatConfigItem, combine, defaultPluginRenaming, defineConfig, ensurePackages, getOverrides, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, renamePluginInConfigs, renameRules, resolveSubOptions, toArray };