@ariel-salgado/eslint-config 0.3.4 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +2 -2
  2. package/dist/index.d.mts +1157 -185
  3. package/dist/index.mjs +150 -87
  4. package/package.json +122 -57
package/dist/index.d.mts CHANGED
@@ -209,6 +209,87 @@ interface RuleOptions {
209
209
  * @see https://eslint.org/docs/latest/rules/dot-notation
210
210
  */
211
211
  'dot-notation'?: Linter.RuleEntry<DotNotation>;
212
+ /**
213
+ * Bans a list of dependencies from being used
214
+ * @see https://github.com/es-tooling/eslint-plugin-depend/blob/main/docs/rules/ban-dependencies.md
215
+ */
216
+ 'e18e/ban-dependencies'?: Linter.RuleEntry<E18EBanDependencies>;
217
+ /**
218
+ * Prefer optimized alternatives to `indexOf()` equality checks
219
+ */
220
+ 'e18e/no-indexof-equality'?: Linter.RuleEntry<[]>;
221
+ /**
222
+ * Prefer Array.prototype.at() over length-based indexing
223
+ */
224
+ 'e18e/prefer-array-at'?: Linter.RuleEntry<[]>;
225
+ /**
226
+ * Prefer Array.prototype.fill() over Array.from or map with constant values
227
+ */
228
+ 'e18e/prefer-array-fill'?: Linter.RuleEntry<[]>;
229
+ /**
230
+ * Prefer Array.from(iterable, mapper) over [...iterable].map(mapper) to avoid intermediate array allocation
231
+ */
232
+ 'e18e/prefer-array-from-map'?: Linter.RuleEntry<[]>;
233
+ /**
234
+ * Prefer Array.some() over Array.find() when checking for element existence
235
+ */
236
+ 'e18e/prefer-array-some'?: Linter.RuleEntry<[]>;
237
+ /**
238
+ * Prefer Array.prototype.toReversed() over copying and reversing arrays
239
+ */
240
+ 'e18e/prefer-array-to-reversed'?: Linter.RuleEntry<[]>;
241
+ /**
242
+ * Prefer Array.prototype.toSorted() over copying and sorting arrays
243
+ */
244
+ 'e18e/prefer-array-to-sorted'?: Linter.RuleEntry<[]>;
245
+ /**
246
+ * Prefer Array.prototype.toSpliced() over copying and splicing arrays
247
+ */
248
+ 'e18e/prefer-array-to-spliced'?: Linter.RuleEntry<[]>;
249
+ /**
250
+ * Prefer Date.now() over new Date().getTime() and +new Date()
251
+ */
252
+ 'e18e/prefer-date-now'?: Linter.RuleEntry<[]>;
253
+ /**
254
+ * Prefer the exponentiation operator ** over Math.pow()
255
+ */
256
+ 'e18e/prefer-exponentiation-operator'?: Linter.RuleEntry<[]>;
257
+ /**
258
+ * Prefer .includes() over indexOf() comparisons for arrays and strings
259
+ */
260
+ 'e18e/prefer-includes'?: Linter.RuleEntry<[]>;
261
+ /**
262
+ * Prefer inline equality checks over temporary object creation for simple comparisons
263
+ */
264
+ 'e18e/prefer-inline-equality'?: Linter.RuleEntry<[]>;
265
+ /**
266
+ * Prefer nullish coalescing operator (?? and ??=) over verbose null checks
267
+ */
268
+ 'e18e/prefer-nullish-coalescing'?: Linter.RuleEntry<[]>;
269
+ /**
270
+ * Prefer Object.hasOwn() over Object.prototype.hasOwnProperty.call() and obj.hasOwnProperty()
271
+ */
272
+ 'e18e/prefer-object-has-own'?: Linter.RuleEntry<[]>;
273
+ /**
274
+ * prefer `RegExp.test()` over `String.match()` and `RegExp.exec()` when only checking for match existence
275
+ */
276
+ 'e18e/prefer-regex-test'?: Linter.RuleEntry<[]>;
277
+ /**
278
+ * Prefer spread syntax over Array.concat(), Array.from(), Object.assign({}, ...), and Function.apply()
279
+ */
280
+ 'e18e/prefer-spread-syntax'?: Linter.RuleEntry<[]>;
281
+ /**
282
+ * Prefer defining regular expressions at module scope to avoid re-compilation on every function call
283
+ */
284
+ 'e18e/prefer-static-regex'?: Linter.RuleEntry<[]>;
285
+ /**
286
+ * Prefer passing function and arguments directly to setTimeout/setInterval instead of wrapping in an arrow function or using bind
287
+ */
288
+ 'e18e/prefer-timer-args'?: Linter.RuleEntry<[]>;
289
+ /**
290
+ * Prefer URL.canParse() over try-catch blocks for URL validation
291
+ */
292
+ 'e18e/prefer-url-canparse'?: Linter.RuleEntry<[]>;
212
293
  /**
213
294
  * Require or disallow newline at the end of files
214
295
  * @see https://eslint.org/docs/latest/rules/eol-last
@@ -248,6 +329,7 @@ interface RuleOptions {
248
329
  /**
249
330
  * disallow unused `eslint-disable` comments
250
331
  * @see https://eslint-community.github.io/eslint-plugin-eslint-comments/rules/no-unused-disable.html
332
+ * @deprecated
251
333
  */
252
334
  'eslint-comments/no-unused-disable'?: Linter.RuleEntry<[]>;
253
335
  /**
@@ -2535,6 +2617,11 @@ interface RuleOptions {
2535
2617
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/console.md
2536
2618
  */
2537
2619
  'node/prefer-global/console'?: Linter.RuleEntry<NodePreferGlobalConsole>;
2620
+ /**
2621
+ * enforce either `crypto` or `require("crypto").webcrypto`
2622
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/crypto.md
2623
+ */
2624
+ 'node/prefer-global/crypto'?: Linter.RuleEntry<NodePreferGlobalCrypto>;
2538
2625
  /**
2539
2626
  * enforce either `process` or `require("process")`
2540
2627
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/process.md
@@ -2550,6 +2637,11 @@ interface RuleOptions {
2550
2637
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/text-encoder.md
2551
2638
  */
2552
2639
  'node/prefer-global/text-encoder'?: Linter.RuleEntry<NodePreferGlobalTextEncoder>;
2640
+ /**
2641
+ * enforce either global timer functions or `require("timers")`
2642
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/timers.md
2643
+ */
2644
+ 'node/prefer-global/timers'?: Linter.RuleEntry<NodePreferGlobalTimers>;
2553
2645
  /**
2554
2646
  * enforce either `URL` or `require("url").URL`
2555
2647
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/url.md
@@ -3120,6 +3212,11 @@ interface RuleOptions {
3120
3212
  * @see https://eslint-react.xyz/docs/rules/naming-convention-filename-extension
3121
3213
  */
3122
3214
  'react-naming-convention/filename-extension'?: Linter.RuleEntry<ReactNamingConventionFilenameExtension>;
3215
+ /**
3216
+ * Enforces identifier names assigned from 'useId' calls to be either 'id' or end with 'Id'.
3217
+ * @see https://eslint-react.xyz/docs/rules/naming-convention-id-name
3218
+ */
3219
+ 'react-naming-convention/id-name'?: Linter.RuleEntry<[]>;
3123
3220
  /**
3124
3221
  * Enforces identifier names assigned from 'useRef' calls to be either 'ref' or end with 'Ref'.
3125
3222
  * @see https://eslint-react.xyz/docs/rules/naming-convention-ref-name
@@ -3157,7 +3254,7 @@ interface RuleOptions {
3157
3254
  */
3158
3255
  'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>;
3159
3256
  /**
3160
- * Prevents unnecessary '$' symbols before JSX expressions.
3257
+ * Prevents unintentional '$' sign before expression.
3161
3258
  * @see https://eslint-react.xyz/docs/rules/jsx-dollar
3162
3259
  */
3163
3260
  'react/jsx-dollar'?: Linter.RuleEntry<[]>;
@@ -4158,6 +4255,11 @@ interface RuleOptions {
4158
4255
  * @see https://eslint.style/rules/eol-last
4159
4256
  */
4160
4257
  'style/eol-last'?: Linter.RuleEntry<StyleEolLast>;
4258
+ /**
4259
+ * Enforce consistent line break styles for JSX props
4260
+ * @see https://eslint.style/rules/jsx-props-style
4261
+ */
4262
+ 'style/exp-jsx-props-style'?: Linter.RuleEntry<StyleExpJsxPropsStyle>;
4161
4263
  /**
4162
4264
  * Enforce consistent spacing and line break styles inside brackets.
4163
4265
  * @see https://eslint.style/rules/list-style
@@ -5489,11 +5591,21 @@ interface RuleOptions {
5489
5591
  * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/indent.html
5490
5592
  */
5491
5593
  'toml/indent'?: Linter.RuleEntry<TomlIndent>;
5594
+ /**
5595
+ * enforce linebreaks after opening and before closing braces
5596
+ * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/inline-table-curly-newline.html
5597
+ */
5598
+ 'toml/inline-table-curly-newline'?: Linter.RuleEntry<TomlInlineTableCurlyNewline>;
5492
5599
  /**
5493
5600
  * enforce consistent spacing inside braces
5494
5601
  * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/inline-table-curly-spacing.html
5495
5602
  */
5496
5603
  'toml/inline-table-curly-spacing'?: Linter.RuleEntry<TomlInlineTableCurlySpacing>;
5604
+ /**
5605
+ * enforce placing inline table key-value pairs on separate lines
5606
+ * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/inline-table-key-value-newline.html
5607
+ */
5608
+ 'toml/inline-table-key-value-newline'?: Linter.RuleEntry<TomlInlineTableKeyValueNewline>;
5497
5609
  /**
5498
5610
  * enforce consistent spacing between keys and values in key/value pairs
5499
5611
  * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/key-spacing.html
@@ -6042,7 +6154,7 @@ interface RuleOptions {
6042
6154
  * Disallow default values that will never be used
6043
6155
  * @see https://typescript-eslint.io/rules/no-useless-default-assignment
6044
6156
  */
6045
- 'ts/no-useless-default-assignment'?: Linter.RuleEntry<[]>;
6157
+ 'ts/no-useless-default-assignment'?: Linter.RuleEntry<TsNoUselessDefaultAssignment>;
6046
6158
  /**
6047
6159
  * Disallow empty exports that don't change anything in a module file
6048
6160
  * @see https://typescript-eslint.io/rules/no-useless-empty-export
@@ -6259,725 +6371,730 @@ interface RuleOptions {
6259
6371
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>;
6260
6372
  /**
6261
6373
  * Improve regexes by making them shorter, consistent, and safer.
6262
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/better-regex.md
6374
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/better-regex.md
6263
6375
  */
6264
6376
  'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>;
6265
6377
  /**
6266
6378
  * Enforce a specific parameter name in catch clauses.
6267
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/catch-error-name.md
6379
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/catch-error-name.md
6268
6380
  */
6269
6381
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>;
6270
6382
  /**
6271
6383
  * Enforce consistent assertion style with `node:assert`.
6272
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-assert.md
6384
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-assert.md
6273
6385
  */
6274
6386
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
6275
6387
  /**
6276
6388
  * Prefer passing `Date` directly to the constructor when cloning.
6277
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-date-clone.md
6389
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-date-clone.md
6278
6390
  */
6279
6391
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
6280
6392
  /**
6281
6393
  * Use destructured variables over properties.
6282
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-destructuring.md
6394
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-destructuring.md
6283
6395
  */
6284
6396
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
6285
6397
  /**
6286
6398
  * Prefer consistent types when spreading a ternary in an array literal.
6287
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-empty-array-spread.md
6399
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-empty-array-spread.md
6288
6400
  */
6289
6401
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
6290
6402
  /**
6291
6403
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
6292
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-existence-index-check.md
6404
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-existence-index-check.md
6293
6405
  */
6294
6406
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
6295
6407
  /**
6296
6408
  * Move function definitions to the highest possible scope.
6297
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-function-scoping.md
6409
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-function-scoping.md
6298
6410
  */
6299
6411
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
6300
6412
  /**
6301
6413
  * Enforce correct `Error` subclassing.
6302
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/custom-error-definition.md
6414
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/custom-error-definition.md
6303
6415
  */
6304
6416
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
6305
6417
  /**
6306
6418
  * Enforce no spaces between braces.
6307
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/empty-brace-spaces.md
6419
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/empty-brace-spaces.md
6308
6420
  */
6309
6421
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
6310
6422
  /**
6311
6423
  * Enforce passing a `message` value when creating a built-in error.
6312
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/error-message.md
6424
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/error-message.md
6313
6425
  */
6314
6426
  'unicorn/error-message'?: Linter.RuleEntry<[]>;
6315
6427
  /**
6316
6428
  * Require escape sequences to use uppercase or lowercase values.
6317
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/escape-case.md
6429
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/escape-case.md
6318
6430
  */
6319
6431
  'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>;
6320
6432
  /**
6321
6433
  * Add expiration conditions to TODO comments.
6322
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/expiring-todo-comments.md
6434
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/expiring-todo-comments.md
6323
6435
  */
6324
6436
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>;
6325
6437
  /**
6326
6438
  * Enforce explicitly comparing the `length` or `size` property of a value.
6327
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/explicit-length-check.md
6439
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/explicit-length-check.md
6328
6440
  */
6329
6441
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
6330
6442
  /**
6331
6443
  * Enforce a case style for filenames.
6332
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/filename-case.md
6444
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/filename-case.md
6333
6445
  */
6334
6446
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>;
6335
6447
  /**
6336
6448
  * Enforce specific import styles per module.
6337
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/import-style.md
6449
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/import-style.md
6338
6450
  */
6339
6451
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>;
6452
+ /**
6453
+ * Prevent usage of variables from outside the scope of isolated functions.
6454
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/isolated-functions.md
6455
+ */
6456
+ 'unicorn/isolated-functions'?: Linter.RuleEntry<UnicornIsolatedFunctions>;
6340
6457
  /**
6341
6458
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
6342
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/new-for-builtins.md
6459
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/new-for-builtins.md
6343
6460
  */
6344
6461
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
6345
6462
  /**
6346
6463
  * Enforce specifying rules to disable in `eslint-disable` comments.
6347
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-abusive-eslint-disable.md
6464
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-abusive-eslint-disable.md
6348
6465
  */
6349
6466
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
6350
6467
  /**
6351
6468
  * Disallow recursive access to `this` within getters and setters.
6352
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-accessor-recursion.md
6469
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-accessor-recursion.md
6353
6470
  */
6354
6471
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
6355
6472
  /**
6356
6473
  * Disallow anonymous functions and classes as the default export.
6357
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-anonymous-default-export.md
6474
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-anonymous-default-export.md
6358
6475
  */
6359
6476
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
6360
6477
  /**
6361
6478
  * Prevent passing a function reference directly to iterator methods.
6362
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-callback-reference.md
6479
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-callback-reference.md
6363
6480
  */
6364
6481
  'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
6365
6482
  /**
6366
6483
  * Prefer `for…of` over the `forEach` method.
6367
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-for-each.md
6484
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-for-each.md
6368
6485
  */
6369
6486
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
6370
6487
  /**
6371
6488
  * Disallow using the `this` argument in array methods.
6372
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-method-this-argument.md
6489
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-method-this-argument.md
6373
6490
  */
6374
6491
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
6375
6492
  /**
6376
6493
  * Replaced by `unicorn/prefer-single-call` which covers more cases.
6377
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-array-push-push
6494
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-array-push-push
6378
6495
  * @deprecated
6379
6496
  */
6380
6497
  'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
6381
6498
  /**
6382
6499
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
6383
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-reduce.md
6500
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-reduce.md
6384
6501
  */
6385
6502
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>;
6386
6503
  /**
6387
6504
  * Prefer `Array#toReversed()` over `Array#reverse()`.
6388
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-reverse.md
6505
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-reverse.md
6389
6506
  */
6390
6507
  'unicorn/no-array-reverse'?: Linter.RuleEntry<UnicornNoArrayReverse>;
6391
6508
  /**
6392
6509
  * Prefer `Array#toSorted()` over `Array#sort()`.
6393
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-sort.md
6510
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-sort.md
6394
6511
  */
6395
6512
  'unicorn/no-array-sort'?: Linter.RuleEntry<UnicornNoArraySort>;
6396
6513
  /**
6397
6514
  * Disallow member access from await expression.
6398
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-await-expression-member.md
6515
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-await-expression-member.md
6399
6516
  */
6400
6517
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
6401
6518
  /**
6402
6519
  * Disallow using `await` in `Promise` method parameters.
6403
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-await-in-promise-methods.md
6520
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-await-in-promise-methods.md
6404
6521
  */
6405
6522
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
6406
6523
  /**
6407
6524
  * Do not use leading/trailing space between `console.log` parameters.
6408
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-console-spaces.md
6525
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-console-spaces.md
6409
6526
  */
6410
6527
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
6411
6528
  /**
6412
6529
  * Do not use `document.cookie` directly.
6413
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-document-cookie.md
6530
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-document-cookie.md
6414
6531
  */
6415
6532
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
6416
6533
  /**
6417
6534
  * Disallow empty files.
6418
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-empty-file.md
6535
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-empty-file.md
6419
6536
  */
6420
6537
  'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
6421
6538
  /**
6422
6539
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
6423
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-for-loop.md
6540
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-for-loop.md
6424
6541
  */
6425
6542
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
6426
6543
  /**
6427
6544
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
6428
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-hex-escape.md
6545
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-hex-escape.md
6429
6546
  */
6430
6547
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
6431
6548
  /**
6432
6549
  * Disallow immediate mutation after variable assignment.
6433
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-immediate-mutation.md
6550
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-immediate-mutation.md
6434
6551
  */
6435
6552
  'unicorn/no-immediate-mutation'?: Linter.RuleEntry<[]>;
6436
6553
  /**
6437
6554
  * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
6438
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-instanceof-array
6555
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-instanceof-array
6439
6556
  * @deprecated
6440
6557
  */
6441
6558
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
6442
6559
  /**
6443
6560
  * Disallow `instanceof` with built-in objects
6444
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-instanceof-builtins.md
6561
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-instanceof-builtins.md
6445
6562
  */
6446
6563
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
6447
6564
  /**
6448
6565
  * Disallow invalid options in `fetch()` and `new Request()`.
6449
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-invalid-fetch-options.md
6566
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-invalid-fetch-options.md
6450
6567
  */
6451
6568
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
6452
6569
  /**
6453
6570
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
6454
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-invalid-remove-event-listener.md
6571
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-invalid-remove-event-listener.md
6455
6572
  */
6456
6573
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
6457
6574
  /**
6458
6575
  * Disallow identifiers starting with `new` or `class`.
6459
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-keyword-prefix.md
6576
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-keyword-prefix.md
6460
6577
  */
6461
6578
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
6462
6579
  /**
6463
6580
  * Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
6464
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-length-as-slice-end
6581
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
6465
6582
  * @deprecated
6466
6583
  */
6467
6584
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
6468
6585
  /**
6469
6586
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
6470
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-lonely-if.md
6587
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-lonely-if.md
6471
6588
  */
6472
6589
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
6473
6590
  /**
6474
6591
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
6475
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-magic-array-flat-depth.md
6592
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-magic-array-flat-depth.md
6476
6593
  */
6477
6594
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
6478
6595
  /**
6479
6596
  * Disallow named usage of default import and export.
6480
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-named-default.md
6597
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-named-default.md
6481
6598
  */
6482
6599
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
6483
6600
  /**
6484
6601
  * Disallow negated conditions.
6485
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-negated-condition.md
6602
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-negated-condition.md
6486
6603
  */
6487
6604
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
6488
6605
  /**
6489
6606
  * Disallow negated expression in equality check.
6490
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-negation-in-equality-check.md
6607
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-negation-in-equality-check.md
6491
6608
  */
6492
6609
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
6493
6610
  /**
6494
6611
  * Disallow nested ternary expressions.
6495
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-nested-ternary.md
6612
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-nested-ternary.md
6496
6613
  */
6497
6614
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
6498
6615
  /**
6499
6616
  * Disallow `new Array()`.
6500
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-new-array.md
6617
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-new-array.md
6501
6618
  */
6502
6619
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
6503
6620
  /**
6504
6621
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
6505
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-new-buffer.md
6622
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-new-buffer.md
6506
6623
  */
6507
6624
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
6508
6625
  /**
6509
6626
  * Disallow the use of the `null` literal.
6510
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-null.md
6627
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-null.md
6511
6628
  */
6512
6629
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>;
6513
6630
  /**
6514
6631
  * Disallow the use of objects as default parameters.
6515
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-object-as-default-parameter.md
6632
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-object-as-default-parameter.md
6516
6633
  */
6517
6634
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
6518
6635
  /**
6519
6636
  * Disallow `process.exit()`.
6520
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-process-exit.md
6637
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-process-exit.md
6521
6638
  */
6522
6639
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
6523
6640
  /**
6524
6641
  * Disallow passing single-element arrays to `Promise` methods.
6525
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-single-promise-in-promise-methods.md
6642
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-single-promise-in-promise-methods.md
6526
6643
  */
6527
6644
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
6528
6645
  /**
6529
6646
  * Disallow classes that only have static members.
6530
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-static-only-class.md
6647
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-static-only-class.md
6531
6648
  */
6532
6649
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
6533
6650
  /**
6534
6651
  * Disallow `then` property.
6535
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-thenable.md
6652
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-thenable.md
6536
6653
  */
6537
6654
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
6538
6655
  /**
6539
6656
  * Disallow assigning `this` to a variable.
6540
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-this-assignment.md
6657
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-this-assignment.md
6541
6658
  */
6542
6659
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
6543
6660
  /**
6544
6661
  * Disallow comparing `undefined` using `typeof`.
6545
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-typeof-undefined.md
6662
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-typeof-undefined.md
6546
6663
  */
6547
6664
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
6548
6665
  /**
6549
6666
  * Disallow using `1` as the `depth` argument of `Array#flat()`.
6550
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-array-flat-depth.md
6667
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-array-flat-depth.md
6551
6668
  */
6552
6669
  'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
6553
6670
  /**
6554
6671
  * Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
6555
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-array-splice-count.md
6672
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-array-splice-count.md
6556
6673
  */
6557
6674
  'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
6558
6675
  /**
6559
6676
  * Disallow awaiting non-promise values.
6560
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-await.md
6677
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-await.md
6561
6678
  */
6562
6679
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
6563
6680
  /**
6564
6681
  * Enforce the use of built-in methods instead of unnecessary polyfills.
6565
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-polyfills.md
6682
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-polyfills.md
6566
6683
  */
6567
6684
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
6568
6685
  /**
6569
6686
  * Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
6570
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-slice-end.md
6687
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-slice-end.md
6571
6688
  */
6572
6689
  'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
6573
6690
  /**
6574
6691
  * Disallow unreadable array destructuring.
6575
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unreadable-array-destructuring.md
6692
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unreadable-array-destructuring.md
6576
6693
  */
6577
6694
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
6578
6695
  /**
6579
6696
  * Disallow unreadable IIFEs.
6580
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unreadable-iife.md
6697
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unreadable-iife.md
6581
6698
  */
6582
6699
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
6583
6700
  /**
6584
6701
  * Disallow unused object properties.
6585
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unused-properties.md
6702
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unused-properties.md
6586
6703
  */
6587
6704
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
6588
6705
  /**
6589
6706
  * Disallow useless values or fallbacks in `Set`, `Map`, `WeakSet`, or `WeakMap`.
6590
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-collection-argument.md
6707
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-collection-argument.md
6591
6708
  */
6592
6709
  'unicorn/no-useless-collection-argument'?: Linter.RuleEntry<[]>;
6593
6710
  /**
6594
6711
  * Disallow unnecessary `Error.captureStackTrace(…)`.
6595
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-error-capture-stack-trace.md
6712
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-error-capture-stack-trace.md
6596
6713
  */
6597
6714
  'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
6598
6715
  /**
6599
6716
  * Disallow useless fallback when spreading in object literals.
6600
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-fallback-in-spread.md
6717
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-fallback-in-spread.md
6601
6718
  */
6602
6719
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
6603
6720
  /**
6604
6721
  * Disallow useless array length check.
6605
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-length-check.md
6722
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-length-check.md
6606
6723
  */
6607
6724
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
6608
6725
  /**
6609
6726
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
6610
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-promise-resolve-reject.md
6727
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-promise-resolve-reject.md
6611
6728
  */
6612
6729
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
6613
6730
  /**
6614
6731
  * Disallow unnecessary spread.
6615
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-spread.md
6732
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-spread.md
6616
6733
  */
6617
6734
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
6618
6735
  /**
6619
6736
  * Disallow useless case in switch statements.
6620
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-switch-case.md
6737
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-switch-case.md
6621
6738
  */
6622
6739
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
6623
6740
  /**
6624
6741
  * Disallow useless `undefined`.
6625
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-undefined.md
6742
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-undefined.md
6626
6743
  */
6627
6744
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>;
6628
6745
  /**
6629
6746
  * Disallow number literals with zero fractions or dangling dots.
6630
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-zero-fractions.md
6747
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-zero-fractions.md
6631
6748
  */
6632
6749
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
6633
6750
  /**
6634
6751
  * Enforce proper case for numeric literals.
6635
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/number-literal-case.md
6752
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/number-literal-case.md
6636
6753
  */
6637
6754
  'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>;
6638
6755
  /**
6639
6756
  * Enforce the style of numeric separators by correctly grouping digits.
6640
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/numeric-separators-style.md
6757
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/numeric-separators-style.md
6641
6758
  */
6642
6759
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
6643
6760
  /**
6644
6761
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
6645
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-add-event-listener.md
6762
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-add-event-listener.md
6646
6763
  */
6647
6764
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>;
6648
6765
  /**
6649
6766
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
6650
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-find.md
6767
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-find.md
6651
6768
  */
6652
6769
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>;
6653
6770
  /**
6654
6771
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
6655
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-flat.md
6772
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-flat.md
6656
6773
  */
6657
6774
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>;
6658
6775
  /**
6659
6776
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
6660
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-flat-map.md
6777
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-flat-map.md
6661
6778
  */
6662
6779
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
6663
6780
  /**
6664
6781
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
6665
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-index-of.md
6782
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-index-of.md
6666
6783
  */
6667
6784
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
6668
6785
  /**
6669
6786
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
6670
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-some.md
6787
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-some.md
6671
6788
  */
6672
6789
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
6673
6790
  /**
6674
6791
  * Prefer `.at()` method for index access and `String#charAt()`.
6675
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-at.md
6792
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-at.md
6676
6793
  */
6677
6794
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>;
6678
6795
  /**
6679
6796
  * Prefer `BigInt` literals over the constructor.
6680
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-bigint-literals.md
6797
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-bigint-literals.md
6681
6798
  */
6682
6799
  'unicorn/prefer-bigint-literals'?: Linter.RuleEntry<[]>;
6683
6800
  /**
6684
6801
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
6685
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-blob-reading-methods.md
6802
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-blob-reading-methods.md
6686
6803
  */
6687
6804
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
6688
6805
  /**
6689
6806
  * Prefer class field declarations over `this` assignments in constructors.
6690
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-class-fields.md
6807
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-class-fields.md
6691
6808
  */
6692
6809
  'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
6693
6810
  /**
6694
6811
  * Prefer using `Element#classList.toggle()` to toggle class names.
6695
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-classlist-toggle.md
6812
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-classlist-toggle.md
6696
6813
  */
6697
6814
  'unicorn/prefer-classlist-toggle'?: Linter.RuleEntry<[]>;
6698
6815
  /**
6699
6816
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
6700
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-code-point.md
6817
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-code-point.md
6701
6818
  */
6702
6819
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
6703
6820
  /**
6704
6821
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
6705
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-date-now.md
6822
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-date-now.md
6706
6823
  */
6707
6824
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
6708
6825
  /**
6709
6826
  * Prefer default parameters over reassignment.
6710
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-default-parameters.md
6827
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-default-parameters.md
6711
6828
  */
6712
6829
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
6713
6830
  /**
6714
6831
  * Prefer `Node#append()` over `Node#appendChild()`.
6715
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-append.md
6832
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-append.md
6716
6833
  */
6717
6834
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
6718
6835
  /**
6719
6836
  * Prefer using `.dataset` on DOM elements over calling attribute methods.
6720
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-dataset.md
6837
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-dataset.md
6721
6838
  */
6722
6839
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
6723
6840
  /**
6724
6841
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
6725
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-remove.md
6842
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-remove.md
6726
6843
  */
6727
6844
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
6728
6845
  /**
6729
6846
  * Prefer `.textContent` over `.innerText`.
6730
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-text-content.md
6847
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-text-content.md
6731
6848
  */
6732
6849
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
6733
6850
  /**
6734
6851
  * Prefer `EventTarget` over `EventEmitter`.
6735
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-event-target.md
6852
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-event-target.md
6736
6853
  */
6737
6854
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
6738
6855
  /**
6739
6856
  * Prefer `export…from` when re-exporting.
6740
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-export-from.md
6857
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-export-from.md
6741
6858
  */
6742
6859
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>;
6743
6860
  /**
6744
6861
  * Prefer `globalThis` over `window`, `self`, and `global`.
6745
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-global-this.md
6862
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-global-this.md
6746
6863
  */
6747
6864
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
6748
6865
  /**
6749
6866
  * Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
6750
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-import-meta-properties.md
6867
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-import-meta-properties.md
6751
6868
  */
6752
6869
  'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
6753
6870
  /**
6754
6871
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
6755
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-includes.md
6872
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-includes.md
6756
6873
  */
6757
6874
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
6758
6875
  /**
6759
6876
  * Prefer reading a JSON file as a buffer.
6760
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-json-parse-buffer.md
6877
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-json-parse-buffer.md
6761
6878
  */
6762
6879
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
6763
6880
  /**
6764
6881
  * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
6765
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-keyboard-event-key.md
6882
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-keyboard-event-key.md
6766
6883
  */
6767
6884
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
6768
6885
  /**
6769
6886
  * Prefer using a logical operator over a ternary.
6770
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-logical-operator-over-ternary.md
6887
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-logical-operator-over-ternary.md
6771
6888
  */
6772
6889
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
6773
6890
  /**
6774
6891
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
6775
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-math-min-max.md
6892
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-math-min-max.md
6776
6893
  */
6777
6894
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
6778
6895
  /**
6779
6896
  * Enforce the use of `Math.trunc` instead of bitwise operators.
6780
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-math-trunc.md
6897
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-math-trunc.md
6781
6898
  */
6782
6899
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
6783
6900
  /**
6784
6901
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
6785
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-modern-dom-apis.md
6902
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-modern-dom-apis.md
6786
6903
  */
6787
6904
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
6788
6905
  /**
6789
6906
  * Prefer modern `Math` APIs over legacy patterns.
6790
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-modern-math-apis.md
6907
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-modern-math-apis.md
6791
6908
  */
6792
6909
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
6793
6910
  /**
6794
6911
  * Prefer JavaScript modules (ESM) over CommonJS.
6795
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-module.md
6912
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-module.md
6796
6913
  */
6797
6914
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
6798
6915
  /**
6799
6916
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
6800
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-native-coercion-functions.md
6917
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-native-coercion-functions.md
6801
6918
  */
6802
6919
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
6803
6920
  /**
6804
6921
  * Prefer negative index over `.length - index` when possible.
6805
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-negative-index.md
6922
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-negative-index.md
6806
6923
  */
6807
6924
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
6808
6925
  /**
6809
6926
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
6810
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-node-protocol.md
6927
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-node-protocol.md
6811
6928
  */
6812
6929
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
6813
6930
  /**
6814
6931
  * Prefer `Number` static properties over global ones.
6815
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-number-properties.md
6932
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-number-properties.md
6816
6933
  */
6817
6934
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>;
6818
6935
  /**
6819
6936
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
6820
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-object-from-entries.md
6937
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-object-from-entries.md
6821
6938
  */
6822
6939
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
6823
6940
  /**
6824
6941
  * Prefer omitting the `catch` binding parameter.
6825
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-optional-catch-binding.md
6942
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-optional-catch-binding.md
6826
6943
  */
6827
6944
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
6828
6945
  /**
6829
6946
  * Prefer borrowing methods from the prototype instead of the instance.
6830
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-prototype-methods.md
6947
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-prototype-methods.md
6831
6948
  */
6832
6949
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
6833
6950
  /**
6834
6951
  * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
6835
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-query-selector.md
6952
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-query-selector.md
6836
6953
  */
6837
6954
  'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
6838
6955
  /**
6839
6956
  * Prefer `Reflect.apply()` over `Function#apply()`.
6840
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-reflect-apply.md
6957
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-reflect-apply.md
6841
6958
  */
6842
6959
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
6843
6960
  /**
6844
6961
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
6845
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-regexp-test.md
6962
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-regexp-test.md
6846
6963
  */
6847
6964
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
6848
6965
  /**
6849
6966
  * Prefer `Response.json()` over `new Response(JSON.stringify())`.
6850
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-response-static-json.md
6967
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-response-static-json.md
6851
6968
  */
6852
6969
  'unicorn/prefer-response-static-json'?: Linter.RuleEntry<[]>;
6853
6970
  /**
6854
6971
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
6855
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-set-has.md
6972
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-set-has.md
6856
6973
  */
6857
6974
  'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
6858
6975
  /**
6859
6976
  * Prefer using `Set#size` instead of `Array#length`.
6860
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-set-size.md
6977
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-set-size.md
6861
6978
  */
6862
6979
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
6863
6980
  /**
6864
6981
  * Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
6865
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-single-call.md
6982
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-single-call.md
6866
6983
  */
6867
6984
  'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>;
6868
6985
  /**
6869
6986
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
6870
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-spread.md
6987
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-spread.md
6871
6988
  */
6872
6989
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
6873
6990
  /**
6874
6991
  * Prefer using the `String.raw` tag to avoid escaping `\`.
6875
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-raw.md
6992
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-raw.md
6876
6993
  */
6877
6994
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
6878
6995
  /**
6879
6996
  * Prefer `String#replaceAll()` over regex searches with the global flag.
6880
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-replace-all.md
6997
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-replace-all.md
6881
6998
  */
6882
6999
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
6883
7000
  /**
6884
7001
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
6885
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-slice.md
7002
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-slice.md
6886
7003
  */
6887
7004
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
6888
7005
  /**
6889
7006
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
6890
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-starts-ends-with.md
7007
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-starts-ends-with.md
6891
7008
  */
6892
7009
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
6893
7010
  /**
6894
7011
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
6895
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-trim-start-end.md
7012
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-trim-start-end.md
6896
7013
  */
6897
7014
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
6898
7015
  /**
6899
7016
  * Prefer using `structuredClone` to create a deep clone.
6900
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-structured-clone.md
7017
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-structured-clone.md
6901
7018
  */
6902
7019
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>;
6903
7020
  /**
6904
7021
  * Prefer `switch` over multiple `else-if`.
6905
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-switch.md
7022
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-switch.md
6906
7023
  */
6907
7024
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>;
6908
7025
  /**
6909
7026
  * Prefer ternary expressions over simple `if-else` statements.
6910
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-ternary.md
7027
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-ternary.md
6911
7028
  */
6912
7029
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>;
6913
7030
  /**
6914
7031
  * Prefer top-level await over top-level promises and async function calls.
6915
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-top-level-await.md
7032
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-top-level-await.md
6916
7033
  */
6917
7034
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
6918
7035
  /**
6919
7036
  * Enforce throwing `TypeError` in type checking conditions.
6920
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-type-error.md
7037
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-type-error.md
6921
7038
  */
6922
7039
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
6923
7040
  /**
6924
7041
  * Prevent abbreviations.
6925
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prevent-abbreviations.md
7042
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prevent-abbreviations.md
6926
7043
  */
6927
7044
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>;
6928
7045
  /**
6929
7046
  * Enforce consistent relative URL style.
6930
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/relative-url-style.md
7047
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/relative-url-style.md
6931
7048
  */
6932
7049
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
6933
7050
  /**
6934
7051
  * Enforce using the separator argument with `Array#join()`.
6935
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-array-join-separator.md
7052
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-array-join-separator.md
6936
7053
  */
6937
7054
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
6938
7055
  /**
6939
7056
  * Require non-empty module attributes for imports and exports
6940
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-module-attributes.md
7057
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-module-attributes.md
6941
7058
  */
6942
7059
  'unicorn/require-module-attributes'?: Linter.RuleEntry<[]>;
6943
7060
  /**
6944
7061
  * Require non-empty specifier list in import and export statements.
6945
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-module-specifiers.md
7062
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-module-specifiers.md
6946
7063
  */
6947
7064
  'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
6948
7065
  /**
6949
7066
  * Enforce using the digits argument with `Number#toFixed()`.
6950
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-number-to-fixed-digits-argument.md
7067
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-number-to-fixed-digits-argument.md
6951
7068
  */
6952
7069
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
6953
7070
  /**
6954
7071
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
6955
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-post-message-target-origin.md
7072
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-post-message-target-origin.md
6956
7073
  */
6957
7074
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
6958
7075
  /**
6959
7076
  * Enforce better string content.
6960
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/string-content.md
7077
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/string-content.md
6961
7078
  */
6962
7079
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>;
6963
7080
  /**
6964
7081
  * Enforce consistent brace style for `case` clauses.
6965
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/switch-case-braces.md
7082
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/switch-case-braces.md
6966
7083
  */
6967
7084
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
6968
7085
  /**
6969
7086
  * Fix whitespace-insensitive template indentation.
6970
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/template-indent.md
7087
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/template-indent.md
6971
7088
  */
6972
7089
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>;
6973
7090
  /**
6974
7091
  * Enforce consistent case for text encoding identifiers.
6975
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/text-encoding-identifier-case.md
7092
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/text-encoding-identifier-case.md
6976
7093
  */
6977
7094
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<UnicornTextEncodingIdentifierCase>;
6978
7095
  /**
6979
7096
  * Require `new` when creating an error.
6980
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/throw-new-error.md
7097
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/throw-new-error.md
6981
7098
  */
6982
7099
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
6983
7100
  /**
@@ -7306,6 +7423,11 @@ type DotLocation = [] | [("object" | "property")]; // ----- dot-notation -----
7306
7423
  type DotNotation = [] | [{
7307
7424
  allowKeywords?: boolean;
7308
7425
  allowPattern?: string;
7426
+ }]; // ----- e18e/ban-dependencies -----
7427
+ type E18EBanDependencies = [] | [{
7428
+ presets?: string[];
7429
+ modules?: string[];
7430
+ allowed?: string[];
7309
7431
  }]; // ----- eol-last -----
7310
7432
  type EolLast = [] | [("always" | "never" | "unix" | "windows")]; // ----- eqeqeq -----
7311
7433
  type Eqeqeq = ([] | ["always"] | ["always", {
@@ -7897,6 +8019,7 @@ type JsdocTagLines = [] | [("always" | "any" | "never")] | [("always" | "any" |
7897
8019
  endLines?: (number | null);
7898
8020
  maxBlockLines?: (number | null);
7899
8021
  startLines?: (number | null);
8022
+ startLinesWithNoTags?: number;
7900
8023
  tags?: {
7901
8024
  [k: string]: {
7902
8025
  count?: number;
@@ -8107,6 +8230,7 @@ type JsoncObjectCurlyNewline = [] | [((("always" | "never") | {
8107
8230
  type JsoncObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
8108
8231
  arraysInObjects?: boolean;
8109
8232
  objectsInObjects?: boolean;
8233
+ emptyObjects?: ("ignore" | "always" | "never");
8110
8234
  }]; // ----- jsonc/object-property-newline -----
8111
8235
  type JsoncObjectPropertyNewline = [] | [{
8112
8236
  allowAllPropertiesOnSameLine?: boolean;
@@ -9439,10 +9563,12 @@ type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
9439
9563
  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")[];
9440
9564
  }]; // ----- node/prefer-global/buffer -----
9441
9565
  type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
9442
- type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/process -----
9566
+ type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
9567
+ type NodePreferGlobalCrypto = [] | [("always" | "never")]; // ----- node/prefer-global/process -----
9443
9568
  type NodePreferGlobalProcess = [] | [("always" | "never")]; // ----- node/prefer-global/text-decoder -----
9444
9569
  type NodePreferGlobalTextDecoder = [] | [("always" | "never")]; // ----- node/prefer-global/text-encoder -----
9445
- type NodePreferGlobalTextEncoder = [] | [("always" | "never")]; // ----- node/prefer-global/url -----
9570
+ type NodePreferGlobalTextEncoder = [] | [("always" | "never")]; // ----- node/prefer-global/timers -----
9571
+ type NodePreferGlobalTimers = [] | [("always" | "never")]; // ----- node/prefer-global/url -----
9446
9572
  type NodePreferGlobalUrl = [] | [("always" | "never")]; // ----- node/prefer-global/url-search-params -----
9447
9573
  type NodePreferGlobalUrlSearchParams = [] | [("always" | "never")]; // ----- node/prefer-node-protocol -----
9448
9574
  type NodePreferNodeProtocol = [] | [{
@@ -12534,37 +12660,47 @@ type StyleCurlyNewline = [] | [(("always" | "never") | {
12534
12660
  consistent?: boolean;
12535
12661
  })]; // ----- style/dot-location -----
12536
12662
  type StyleDotLocation = [] | [("object" | "property")]; // ----- style/eol-last -----
12537
- type StyleEolLast = [] | [("always" | "never" | "unix" | "windows")]; // ----- style/exp-list-style -----
12663
+ type StyleEolLast = [] | [("always" | "never" | "unix" | "windows")]; // ----- style/exp-jsx-props-style -----
12664
+ type StyleExpJsxPropsStyle = [] | [{
12665
+ singleLine?: {
12666
+ maxItems?: number;
12667
+ };
12668
+ multiLine?: {
12669
+ minItems?: number;
12670
+ maxItemsPerLine?: number;
12671
+ };
12672
+ }]; // ----- style/exp-list-style -----
12538
12673
  type StyleExpListStyle = [] | [{
12539
12674
  singleLine?: _StyleExpListStyle_SingleLineConfig;
12540
12675
  multiLine?: _StyleExpListStyle_MultiLineConfig;
12541
12676
  overrides?: {
12542
- "[]"?: _StyleExpListStyle_BaseConfig;
12543
- "{}"?: _StyleExpListStyle_BaseConfig;
12544
- "<>"?: _StyleExpListStyle_BaseConfig;
12545
- "()"?: _StyleExpListStyle_BaseConfig;
12546
- ArrayExpression?: _StyleExpListStyle_BaseConfig;
12547
- ArrayPattern?: _StyleExpListStyle_BaseConfig;
12548
- ArrowFunctionExpression?: _StyleExpListStyle_BaseConfig;
12549
- CallExpression?: _StyleExpListStyle_BaseConfig;
12550
- ExportNamedDeclaration?: _StyleExpListStyle_BaseConfig;
12551
- FunctionDeclaration?: _StyleExpListStyle_BaseConfig;
12552
- FunctionExpression?: _StyleExpListStyle_BaseConfig;
12553
- ImportDeclaration?: _StyleExpListStyle_BaseConfig;
12554
- ImportAttributes?: _StyleExpListStyle_BaseConfig;
12555
- NewExpression?: _StyleExpListStyle_BaseConfig;
12556
- ObjectExpression?: _StyleExpListStyle_BaseConfig;
12557
- ObjectPattern?: _StyleExpListStyle_BaseConfig;
12558
- TSDeclareFunction?: _StyleExpListStyle_BaseConfig;
12559
- TSFunctionType?: _StyleExpListStyle_BaseConfig;
12560
- TSInterfaceBody?: _StyleExpListStyle_BaseConfig;
12561
- TSEnumBody?: _StyleExpListStyle_BaseConfig;
12562
- TSTupleType?: _StyleExpListStyle_BaseConfig;
12563
- TSTypeLiteral?: _StyleExpListStyle_BaseConfig;
12564
- TSTypeParameterDeclaration?: _StyleExpListStyle_BaseConfig;
12565
- TSTypeParameterInstantiation?: _StyleExpListStyle_BaseConfig;
12566
- JSONArrayExpression?: _StyleExpListStyle_BaseConfig;
12567
- JSONObjectExpression?: _StyleExpListStyle_BaseConfig;
12677
+ "()"?: (_StyleExpListStyle_BaseConfig | "off");
12678
+ "[]"?: (_StyleExpListStyle_BaseConfig | "off");
12679
+ "{}"?: (_StyleExpListStyle_BaseConfig | "off");
12680
+ "<>"?: (_StyleExpListStyle_BaseConfig | "off");
12681
+ ArrayExpression?: (_StyleExpListStyle_BaseConfig | "off");
12682
+ ArrayPattern?: (_StyleExpListStyle_BaseConfig | "off");
12683
+ ArrowFunctionExpression?: (_StyleExpListStyle_BaseConfig | "off");
12684
+ CallExpression?: (_StyleExpListStyle_BaseConfig | "off");
12685
+ ExportNamedDeclaration?: (_StyleExpListStyle_BaseConfig | "off");
12686
+ FunctionDeclaration?: (_StyleExpListStyle_BaseConfig | "off");
12687
+ FunctionExpression?: (_StyleExpListStyle_BaseConfig | "off");
12688
+ IfStatement?: (_StyleExpListStyle_BaseConfig | "off");
12689
+ ImportAttributes?: (_StyleExpListStyle_BaseConfig | "off");
12690
+ ImportDeclaration?: (_StyleExpListStyle_BaseConfig | "off");
12691
+ JSONArrayExpression?: (_StyleExpListStyle_BaseConfig | "off");
12692
+ JSONObjectExpression?: (_StyleExpListStyle_BaseConfig | "off");
12693
+ NewExpression?: (_StyleExpListStyle_BaseConfig | "off");
12694
+ ObjectExpression?: (_StyleExpListStyle_BaseConfig | "off");
12695
+ ObjectPattern?: (_StyleExpListStyle_BaseConfig | "off");
12696
+ TSDeclareFunction?: (_StyleExpListStyle_BaseConfig | "off");
12697
+ TSEnumBody?: (_StyleExpListStyle_BaseConfig | "off");
12698
+ TSFunctionType?: (_StyleExpListStyle_BaseConfig | "off");
12699
+ TSInterfaceBody?: (_StyleExpListStyle_BaseConfig | "off");
12700
+ TSTupleType?: (_StyleExpListStyle_BaseConfig | "off");
12701
+ TSTypeLiteral?: (_StyleExpListStyle_BaseConfig | "off");
12702
+ TSTypeParameterDeclaration?: (_StyleExpListStyle_BaseConfig | "off");
12703
+ TSTypeParameterInstantiation?: (_StyleExpListStyle_BaseConfig | "off");
12568
12704
  };
12569
12705
  }];
12570
12706
  interface _StyleExpListStyle_SingleLineConfig {
@@ -13425,13 +13561,18 @@ type StylePaddedBlocks = [] | [(("always" | "never" | "start" | "end") | {
13425
13561
  allowSingleLineBlocks?: boolean;
13426
13562
  }]; // ----- style/padding-line-between-statements -----
13427
13563
  type _StylePaddingLineBetweenStatementsPaddingType = ("any" | "never" | "always");
13428
- type _StylePaddingLineBetweenStatementsStatementOption = (_StylePaddingLineBetweenStatementsStatementType | [_StylePaddingLineBetweenStatementsStatementType, ...(_StylePaddingLineBetweenStatementsStatementType)[]]);
13564
+ type _StylePaddingLineBetweenStatementsStatementOption = (_StylePaddingLineBetweenStatementsStatementMatcher | [_StylePaddingLineBetweenStatementsStatementMatcher, ...(_StylePaddingLineBetweenStatementsStatementMatcher)[]]);
13565
+ type _StylePaddingLineBetweenStatementsStatementMatcher = (_StylePaddingLineBetweenStatementsStatementType | _StylePaddingLineBetweenStatements_SelectorOption);
13429
13566
  type _StylePaddingLineBetweenStatementsStatementType = ("*" | "exports" | "require" | "directive" | "iife" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "continue" | "debugger" | "default" | "do" | "for" | "if" | "import" | "switch" | "throw" | "try" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "function-overload" | "block-like" | "singleline-block-like" | "multiline-block-like" | "expression" | "singleline-expression" | "multiline-expression" | "return" | "singleline-return" | "multiline-return" | "export" | "singleline-export" | "multiline-export" | "var" | "singleline-var" | "multiline-var" | "let" | "singleline-let" | "multiline-let" | "const" | "singleline-const" | "multiline-const" | "using" | "singleline-using" | "multiline-using" | "type" | "singleline-type" | "multiline-type");
13430
13567
  type StylePaddingLineBetweenStatements = {
13431
13568
  blankLine: _StylePaddingLineBetweenStatementsPaddingType;
13432
13569
  prev: _StylePaddingLineBetweenStatementsStatementOption;
13433
13570
  next: _StylePaddingLineBetweenStatementsStatementOption;
13434
- }[]; // ----- style/quote-props -----
13571
+ }[];
13572
+ interface _StylePaddingLineBetweenStatements_SelectorOption {
13573
+ selector: string;
13574
+ lineMode?: ("any" | "singleline" | "multiline");
13575
+ } // ----- style/quote-props -----
13435
13576
  type StyleQuoteProps = ([] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
13436
13577
  keywords?: boolean;
13437
13578
  unnecessary?: boolean;
@@ -13691,6 +13832,71 @@ type SwitchColonSpacing = [] | [{
13691
13832
  after?: boolean;
13692
13833
  }]; // ----- tailwindcss/enforce-canonical-classes -----
13693
13834
  type TailwindcssEnforceCanonicalClasses = [] | [{
13835
+ selectors?: ({
13836
+ kind: "attribute";
13837
+ match?: ({
13838
+ type: "strings";
13839
+ } | {
13840
+ path?: string;
13841
+ type: "objectKeys";
13842
+ } | {
13843
+ path?: string;
13844
+ type: "objectValues";
13845
+ })[];
13846
+ name: string;
13847
+ } | ({
13848
+ callTarget?: ("all" | "first" | "last" | number);
13849
+ kind: "callee";
13850
+ match?: ({
13851
+ type: "strings";
13852
+ } | {
13853
+ path?: string;
13854
+ type: "objectKeys";
13855
+ } | {
13856
+ path?: string;
13857
+ type: "objectValues";
13858
+ })[];
13859
+ name: string;
13860
+ path?: string;
13861
+ } | {
13862
+ callTarget?: ("all" | "first" | "last" | number);
13863
+ kind: "callee";
13864
+ match?: ({
13865
+ type: "strings";
13866
+ } | {
13867
+ path?: string;
13868
+ type: "objectKeys";
13869
+ } | {
13870
+ path?: string;
13871
+ type: "objectValues";
13872
+ })[];
13873
+ name?: string;
13874
+ path: string;
13875
+ }) | {
13876
+ kind: "tag";
13877
+ match?: ({
13878
+ type: "strings";
13879
+ } | {
13880
+ path?: string;
13881
+ type: "objectKeys";
13882
+ } | {
13883
+ path?: string;
13884
+ type: "objectValues";
13885
+ })[];
13886
+ name: string;
13887
+ } | {
13888
+ kind: "variable";
13889
+ match?: ({
13890
+ type: "strings";
13891
+ } | {
13892
+ path?: string;
13893
+ type: "objectKeys";
13894
+ } | {
13895
+ path?: string;
13896
+ type: "objectValues";
13897
+ })[];
13898
+ name: string;
13899
+ })[];
13694
13900
  callees?: ([string, ({
13695
13901
  match: "strings";
13696
13902
  } | {
@@ -13737,6 +13943,71 @@ type TailwindcssEnforceCanonicalClasses = [] | [{
13737
13943
  logical?: boolean;
13738
13944
  }]; // ----- tailwindcss/enforce-consistent-class-order -----
13739
13945
  type TailwindcssEnforceConsistentClassOrder = [] | [{
13946
+ selectors?: ({
13947
+ kind: "attribute";
13948
+ match?: ({
13949
+ type: "strings";
13950
+ } | {
13951
+ path?: string;
13952
+ type: "objectKeys";
13953
+ } | {
13954
+ path?: string;
13955
+ type: "objectValues";
13956
+ })[];
13957
+ name: string;
13958
+ } | ({
13959
+ callTarget?: ("all" | "first" | "last" | number);
13960
+ kind: "callee";
13961
+ match?: ({
13962
+ type: "strings";
13963
+ } | {
13964
+ path?: string;
13965
+ type: "objectKeys";
13966
+ } | {
13967
+ path?: string;
13968
+ type: "objectValues";
13969
+ })[];
13970
+ name: string;
13971
+ path?: string;
13972
+ } | {
13973
+ callTarget?: ("all" | "first" | "last" | number);
13974
+ kind: "callee";
13975
+ match?: ({
13976
+ type: "strings";
13977
+ } | {
13978
+ path?: string;
13979
+ type: "objectKeys";
13980
+ } | {
13981
+ path?: string;
13982
+ type: "objectValues";
13983
+ })[];
13984
+ name?: string;
13985
+ path: string;
13986
+ }) | {
13987
+ kind: "tag";
13988
+ match?: ({
13989
+ type: "strings";
13990
+ } | {
13991
+ path?: string;
13992
+ type: "objectKeys";
13993
+ } | {
13994
+ path?: string;
13995
+ type: "objectValues";
13996
+ })[];
13997
+ name: string;
13998
+ } | {
13999
+ kind: "variable";
14000
+ match?: ({
14001
+ type: "strings";
14002
+ } | {
14003
+ path?: string;
14004
+ type: "objectKeys";
14005
+ } | {
14006
+ path?: string;
14007
+ type: "objectValues";
14008
+ })[];
14009
+ name: string;
14010
+ })[];
13740
14011
  callees?: ([string, ({
13741
14012
  match: "strings";
13742
14013
  } | {
@@ -13786,6 +14057,71 @@ type TailwindcssEnforceConsistentClassOrder = [] | [{
13786
14057
  unknownClassPosition?: ("start" | "end");
13787
14058
  }]; // ----- tailwindcss/enforce-consistent-important-position -----
13788
14059
  type TailwindcssEnforceConsistentImportantPosition = [] | [{
14060
+ selectors?: ({
14061
+ kind: "attribute";
14062
+ match?: ({
14063
+ type: "strings";
14064
+ } | {
14065
+ path?: string;
14066
+ type: "objectKeys";
14067
+ } | {
14068
+ path?: string;
14069
+ type: "objectValues";
14070
+ })[];
14071
+ name: string;
14072
+ } | ({
14073
+ callTarget?: ("all" | "first" | "last" | number);
14074
+ kind: "callee";
14075
+ match?: ({
14076
+ type: "strings";
14077
+ } | {
14078
+ path?: string;
14079
+ type: "objectKeys";
14080
+ } | {
14081
+ path?: string;
14082
+ type: "objectValues";
14083
+ })[];
14084
+ name: string;
14085
+ path?: string;
14086
+ } | {
14087
+ callTarget?: ("all" | "first" | "last" | number);
14088
+ kind: "callee";
14089
+ match?: ({
14090
+ type: "strings";
14091
+ } | {
14092
+ path?: string;
14093
+ type: "objectKeys";
14094
+ } | {
14095
+ path?: string;
14096
+ type: "objectValues";
14097
+ })[];
14098
+ name?: string;
14099
+ path: string;
14100
+ }) | {
14101
+ kind: "tag";
14102
+ match?: ({
14103
+ type: "strings";
14104
+ } | {
14105
+ path?: string;
14106
+ type: "objectKeys";
14107
+ } | {
14108
+ path?: string;
14109
+ type: "objectValues";
14110
+ })[];
14111
+ name: string;
14112
+ } | {
14113
+ kind: "variable";
14114
+ match?: ({
14115
+ type: "strings";
14116
+ } | {
14117
+ path?: string;
14118
+ type: "objectKeys";
14119
+ } | {
14120
+ path?: string;
14121
+ type: "objectValues";
14122
+ })[];
14123
+ name: string;
14124
+ })[];
13789
14125
  callees?: ([string, ({
13790
14126
  match: "strings";
13791
14127
  } | {
@@ -13831,6 +14167,71 @@ type TailwindcssEnforceConsistentImportantPosition = [] | [{
13831
14167
  position?: ("legacy" | "recommended");
13832
14168
  }]; // ----- tailwindcss/enforce-consistent-line-wrapping -----
13833
14169
  type TailwindcssEnforceConsistentLineWrapping = [] | [{
14170
+ selectors?: ({
14171
+ kind: "attribute";
14172
+ match?: ({
14173
+ type: "strings";
14174
+ } | {
14175
+ path?: string;
14176
+ type: "objectKeys";
14177
+ } | {
14178
+ path?: string;
14179
+ type: "objectValues";
14180
+ })[];
14181
+ name: string;
14182
+ } | ({
14183
+ callTarget?: ("all" | "first" | "last" | number);
14184
+ kind: "callee";
14185
+ match?: ({
14186
+ type: "strings";
14187
+ } | {
14188
+ path?: string;
14189
+ type: "objectKeys";
14190
+ } | {
14191
+ path?: string;
14192
+ type: "objectValues";
14193
+ })[];
14194
+ name: string;
14195
+ path?: string;
14196
+ } | {
14197
+ callTarget?: ("all" | "first" | "last" | number);
14198
+ kind: "callee";
14199
+ match?: ({
14200
+ type: "strings";
14201
+ } | {
14202
+ path?: string;
14203
+ type: "objectKeys";
14204
+ } | {
14205
+ path?: string;
14206
+ type: "objectValues";
14207
+ })[];
14208
+ name?: string;
14209
+ path: string;
14210
+ }) | {
14211
+ kind: "tag";
14212
+ match?: ({
14213
+ type: "strings";
14214
+ } | {
14215
+ path?: string;
14216
+ type: "objectKeys";
14217
+ } | {
14218
+ path?: string;
14219
+ type: "objectValues";
14220
+ })[];
14221
+ name: string;
14222
+ } | {
14223
+ kind: "variable";
14224
+ match?: ({
14225
+ type: "strings";
14226
+ } | {
14227
+ path?: string;
14228
+ type: "objectKeys";
14229
+ } | {
14230
+ path?: string;
14231
+ type: "objectValues";
14232
+ })[];
14233
+ name: string;
14234
+ })[];
13834
14235
  callees?: ([string, ({
13835
14236
  match: "strings";
13836
14237
  } | {
@@ -13882,6 +14283,71 @@ type TailwindcssEnforceConsistentLineWrapping = [] | [{
13882
14283
  strictness?: ("strict" | "loose");
13883
14284
  }]; // ----- tailwindcss/enforce-consistent-variable-syntax -----
13884
14285
  type TailwindcssEnforceConsistentVariableSyntax = [] | [{
14286
+ selectors?: ({
14287
+ kind: "attribute";
14288
+ match?: ({
14289
+ type: "strings";
14290
+ } | {
14291
+ path?: string;
14292
+ type: "objectKeys";
14293
+ } | {
14294
+ path?: string;
14295
+ type: "objectValues";
14296
+ })[];
14297
+ name: string;
14298
+ } | ({
14299
+ callTarget?: ("all" | "first" | "last" | number);
14300
+ kind: "callee";
14301
+ match?: ({
14302
+ type: "strings";
14303
+ } | {
14304
+ path?: string;
14305
+ type: "objectKeys";
14306
+ } | {
14307
+ path?: string;
14308
+ type: "objectValues";
14309
+ })[];
14310
+ name: string;
14311
+ path?: string;
14312
+ } | {
14313
+ callTarget?: ("all" | "first" | "last" | number);
14314
+ kind: "callee";
14315
+ match?: ({
14316
+ type: "strings";
14317
+ } | {
14318
+ path?: string;
14319
+ type: "objectKeys";
14320
+ } | {
14321
+ path?: string;
14322
+ type: "objectValues";
14323
+ })[];
14324
+ name?: string;
14325
+ path: string;
14326
+ }) | {
14327
+ kind: "tag";
14328
+ match?: ({
14329
+ type: "strings";
14330
+ } | {
14331
+ path?: string;
14332
+ type: "objectKeys";
14333
+ } | {
14334
+ path?: string;
14335
+ type: "objectValues";
14336
+ })[];
14337
+ name: string;
14338
+ } | {
14339
+ kind: "variable";
14340
+ match?: ({
14341
+ type: "strings";
14342
+ } | {
14343
+ path?: string;
14344
+ type: "objectKeys";
14345
+ } | {
14346
+ path?: string;
14347
+ type: "objectValues";
14348
+ })[];
14349
+ name: string;
14350
+ })[];
13885
14351
  callees?: ([string, ({
13886
14352
  match: "strings";
13887
14353
  } | {
@@ -13927,6 +14393,71 @@ type TailwindcssEnforceConsistentVariableSyntax = [] | [{
13927
14393
  syntax?: ("shorthand" | "variable");
13928
14394
  }]; // ----- tailwindcss/enforce-shorthand-classes -----
13929
14395
  type TailwindcssEnforceShorthandClasses = [] | [{
14396
+ selectors?: ({
14397
+ kind: "attribute";
14398
+ match?: ({
14399
+ type: "strings";
14400
+ } | {
14401
+ path?: string;
14402
+ type: "objectKeys";
14403
+ } | {
14404
+ path?: string;
14405
+ type: "objectValues";
14406
+ })[];
14407
+ name: string;
14408
+ } | ({
14409
+ callTarget?: ("all" | "first" | "last" | number);
14410
+ kind: "callee";
14411
+ match?: ({
14412
+ type: "strings";
14413
+ } | {
14414
+ path?: string;
14415
+ type: "objectKeys";
14416
+ } | {
14417
+ path?: string;
14418
+ type: "objectValues";
14419
+ })[];
14420
+ name: string;
14421
+ path?: string;
14422
+ } | {
14423
+ callTarget?: ("all" | "first" | "last" | number);
14424
+ kind: "callee";
14425
+ match?: ({
14426
+ type: "strings";
14427
+ } | {
14428
+ path?: string;
14429
+ type: "objectKeys";
14430
+ } | {
14431
+ path?: string;
14432
+ type: "objectValues";
14433
+ })[];
14434
+ name?: string;
14435
+ path: string;
14436
+ }) | {
14437
+ kind: "tag";
14438
+ match?: ({
14439
+ type: "strings";
14440
+ } | {
14441
+ path?: string;
14442
+ type: "objectKeys";
14443
+ } | {
14444
+ path?: string;
14445
+ type: "objectValues";
14446
+ })[];
14447
+ name: string;
14448
+ } | {
14449
+ kind: "variable";
14450
+ match?: ({
14451
+ type: "strings";
14452
+ } | {
14453
+ path?: string;
14454
+ type: "objectKeys";
14455
+ } | {
14456
+ path?: string;
14457
+ type: "objectValues";
14458
+ })[];
14459
+ name: string;
14460
+ })[];
13930
14461
  callees?: ([string, ({
13931
14462
  match: "strings";
13932
14463
  } | {
@@ -13971,6 +14502,71 @@ type TailwindcssEnforceShorthandClasses = [] | [{
13971
14502
  rootFontSize?: number;
13972
14503
  }]; // ----- tailwindcss/no-conflicting-classes -----
13973
14504
  type TailwindcssNoConflictingClasses = [] | [{
14505
+ selectors?: ({
14506
+ kind: "attribute";
14507
+ match?: ({
14508
+ type: "strings";
14509
+ } | {
14510
+ path?: string;
14511
+ type: "objectKeys";
14512
+ } | {
14513
+ path?: string;
14514
+ type: "objectValues";
14515
+ })[];
14516
+ name: string;
14517
+ } | ({
14518
+ callTarget?: ("all" | "first" | "last" | number);
14519
+ kind: "callee";
14520
+ match?: ({
14521
+ type: "strings";
14522
+ } | {
14523
+ path?: string;
14524
+ type: "objectKeys";
14525
+ } | {
14526
+ path?: string;
14527
+ type: "objectValues";
14528
+ })[];
14529
+ name: string;
14530
+ path?: string;
14531
+ } | {
14532
+ callTarget?: ("all" | "first" | "last" | number);
14533
+ kind: "callee";
14534
+ match?: ({
14535
+ type: "strings";
14536
+ } | {
14537
+ path?: string;
14538
+ type: "objectKeys";
14539
+ } | {
14540
+ path?: string;
14541
+ type: "objectValues";
14542
+ })[];
14543
+ name?: string;
14544
+ path: string;
14545
+ }) | {
14546
+ kind: "tag";
14547
+ match?: ({
14548
+ type: "strings";
14549
+ } | {
14550
+ path?: string;
14551
+ type: "objectKeys";
14552
+ } | {
14553
+ path?: string;
14554
+ type: "objectValues";
14555
+ })[];
14556
+ name: string;
14557
+ } | {
14558
+ kind: "variable";
14559
+ match?: ({
14560
+ type: "strings";
14561
+ } | {
14562
+ path?: string;
14563
+ type: "objectKeys";
14564
+ } | {
14565
+ path?: string;
14566
+ type: "objectValues";
14567
+ })[];
14568
+ name: string;
14569
+ })[];
13974
14570
  callees?: ([string, ({
13975
14571
  match: "strings";
13976
14572
  } | {
@@ -14015,6 +14611,71 @@ type TailwindcssNoConflictingClasses = [] | [{
14015
14611
  rootFontSize?: number;
14016
14612
  }]; // ----- tailwindcss/no-deprecated-classes -----
14017
14613
  type TailwindcssNoDeprecatedClasses = [] | [{
14614
+ selectors?: ({
14615
+ kind: "attribute";
14616
+ match?: ({
14617
+ type: "strings";
14618
+ } | {
14619
+ path?: string;
14620
+ type: "objectKeys";
14621
+ } | {
14622
+ path?: string;
14623
+ type: "objectValues";
14624
+ })[];
14625
+ name: string;
14626
+ } | ({
14627
+ callTarget?: ("all" | "first" | "last" | number);
14628
+ kind: "callee";
14629
+ match?: ({
14630
+ type: "strings";
14631
+ } | {
14632
+ path?: string;
14633
+ type: "objectKeys";
14634
+ } | {
14635
+ path?: string;
14636
+ type: "objectValues";
14637
+ })[];
14638
+ name: string;
14639
+ path?: string;
14640
+ } | {
14641
+ callTarget?: ("all" | "first" | "last" | number);
14642
+ kind: "callee";
14643
+ match?: ({
14644
+ type: "strings";
14645
+ } | {
14646
+ path?: string;
14647
+ type: "objectKeys";
14648
+ } | {
14649
+ path?: string;
14650
+ type: "objectValues";
14651
+ })[];
14652
+ name?: string;
14653
+ path: string;
14654
+ }) | {
14655
+ kind: "tag";
14656
+ match?: ({
14657
+ type: "strings";
14658
+ } | {
14659
+ path?: string;
14660
+ type: "objectKeys";
14661
+ } | {
14662
+ path?: string;
14663
+ type: "objectValues";
14664
+ })[];
14665
+ name: string;
14666
+ } | {
14667
+ kind: "variable";
14668
+ match?: ({
14669
+ type: "strings";
14670
+ } | {
14671
+ path?: string;
14672
+ type: "objectKeys";
14673
+ } | {
14674
+ path?: string;
14675
+ type: "objectValues";
14676
+ })[];
14677
+ name: string;
14678
+ })[];
14018
14679
  callees?: ([string, ({
14019
14680
  match: "strings";
14020
14681
  } | {
@@ -14059,6 +14720,71 @@ type TailwindcssNoDeprecatedClasses = [] | [{
14059
14720
  rootFontSize?: number;
14060
14721
  }]; // ----- tailwindcss/no-duplicate-classes -----
14061
14722
  type TailwindcssNoDuplicateClasses = [] | [{
14723
+ selectors?: ({
14724
+ kind: "attribute";
14725
+ match?: ({
14726
+ type: "strings";
14727
+ } | {
14728
+ path?: string;
14729
+ type: "objectKeys";
14730
+ } | {
14731
+ path?: string;
14732
+ type: "objectValues";
14733
+ })[];
14734
+ name: string;
14735
+ } | ({
14736
+ callTarget?: ("all" | "first" | "last" | number);
14737
+ kind: "callee";
14738
+ match?: ({
14739
+ type: "strings";
14740
+ } | {
14741
+ path?: string;
14742
+ type: "objectKeys";
14743
+ } | {
14744
+ path?: string;
14745
+ type: "objectValues";
14746
+ })[];
14747
+ name: string;
14748
+ path?: string;
14749
+ } | {
14750
+ callTarget?: ("all" | "first" | "last" | number);
14751
+ kind: "callee";
14752
+ match?: ({
14753
+ type: "strings";
14754
+ } | {
14755
+ path?: string;
14756
+ type: "objectKeys";
14757
+ } | {
14758
+ path?: string;
14759
+ type: "objectValues";
14760
+ })[];
14761
+ name?: string;
14762
+ path: string;
14763
+ }) | {
14764
+ kind: "tag";
14765
+ match?: ({
14766
+ type: "strings";
14767
+ } | {
14768
+ path?: string;
14769
+ type: "objectKeys";
14770
+ } | {
14771
+ path?: string;
14772
+ type: "objectValues";
14773
+ })[];
14774
+ name: string;
14775
+ } | {
14776
+ kind: "variable";
14777
+ match?: ({
14778
+ type: "strings";
14779
+ } | {
14780
+ path?: string;
14781
+ type: "objectKeys";
14782
+ } | {
14783
+ path?: string;
14784
+ type: "objectValues";
14785
+ })[];
14786
+ name: string;
14787
+ })[];
14062
14788
  callees?: ([string, ({
14063
14789
  match: "strings";
14064
14790
  } | {
@@ -14103,6 +14829,71 @@ type TailwindcssNoDuplicateClasses = [] | [{
14103
14829
  rootFontSize?: number;
14104
14830
  }]; // ----- tailwindcss/no-restricted-classes -----
14105
14831
  type TailwindcssNoRestrictedClasses = [] | [{
14832
+ selectors?: ({
14833
+ kind: "attribute";
14834
+ match?: ({
14835
+ type: "strings";
14836
+ } | {
14837
+ path?: string;
14838
+ type: "objectKeys";
14839
+ } | {
14840
+ path?: string;
14841
+ type: "objectValues";
14842
+ })[];
14843
+ name: string;
14844
+ } | ({
14845
+ callTarget?: ("all" | "first" | "last" | number);
14846
+ kind: "callee";
14847
+ match?: ({
14848
+ type: "strings";
14849
+ } | {
14850
+ path?: string;
14851
+ type: "objectKeys";
14852
+ } | {
14853
+ path?: string;
14854
+ type: "objectValues";
14855
+ })[];
14856
+ name: string;
14857
+ path?: string;
14858
+ } | {
14859
+ callTarget?: ("all" | "first" | "last" | number);
14860
+ kind: "callee";
14861
+ match?: ({
14862
+ type: "strings";
14863
+ } | {
14864
+ path?: string;
14865
+ type: "objectKeys";
14866
+ } | {
14867
+ path?: string;
14868
+ type: "objectValues";
14869
+ })[];
14870
+ name?: string;
14871
+ path: string;
14872
+ }) | {
14873
+ kind: "tag";
14874
+ match?: ({
14875
+ type: "strings";
14876
+ } | {
14877
+ path?: string;
14878
+ type: "objectKeys";
14879
+ } | {
14880
+ path?: string;
14881
+ type: "objectValues";
14882
+ })[];
14883
+ name: string;
14884
+ } | {
14885
+ kind: "variable";
14886
+ match?: ({
14887
+ type: "strings";
14888
+ } | {
14889
+ path?: string;
14890
+ type: "objectKeys";
14891
+ } | {
14892
+ path?: string;
14893
+ type: "objectValues";
14894
+ })[];
14895
+ name: string;
14896
+ })[];
14106
14897
  callees?: ([string, ({
14107
14898
  match: "strings";
14108
14899
  } | {
@@ -14152,6 +14943,71 @@ type TailwindcssNoRestrictedClasses = [] | [{
14152
14943
  } | string)[];
14153
14944
  }]; // ----- tailwindcss/no-unknown-classes -----
14154
14945
  type TailwindcssNoUnknownClasses = [] | [{
14946
+ selectors?: ({
14947
+ kind: "attribute";
14948
+ match?: ({
14949
+ type: "strings";
14950
+ } | {
14951
+ path?: string;
14952
+ type: "objectKeys";
14953
+ } | {
14954
+ path?: string;
14955
+ type: "objectValues";
14956
+ })[];
14957
+ name: string;
14958
+ } | ({
14959
+ callTarget?: ("all" | "first" | "last" | number);
14960
+ kind: "callee";
14961
+ match?: ({
14962
+ type: "strings";
14963
+ } | {
14964
+ path?: string;
14965
+ type: "objectKeys";
14966
+ } | {
14967
+ path?: string;
14968
+ type: "objectValues";
14969
+ })[];
14970
+ name: string;
14971
+ path?: string;
14972
+ } | {
14973
+ callTarget?: ("all" | "first" | "last" | number);
14974
+ kind: "callee";
14975
+ match?: ({
14976
+ type: "strings";
14977
+ } | {
14978
+ path?: string;
14979
+ type: "objectKeys";
14980
+ } | {
14981
+ path?: string;
14982
+ type: "objectValues";
14983
+ })[];
14984
+ name?: string;
14985
+ path: string;
14986
+ }) | {
14987
+ kind: "tag";
14988
+ match?: ({
14989
+ type: "strings";
14990
+ } | {
14991
+ path?: string;
14992
+ type: "objectKeys";
14993
+ } | {
14994
+ path?: string;
14995
+ type: "objectValues";
14996
+ })[];
14997
+ name: string;
14998
+ } | {
14999
+ kind: "variable";
15000
+ match?: ({
15001
+ type: "strings";
15002
+ } | {
15003
+ path?: string;
15004
+ type: "objectKeys";
15005
+ } | {
15006
+ path?: string;
15007
+ type: "objectValues";
15008
+ })[];
15009
+ name: string;
15010
+ })[];
14155
15011
  callees?: ([string, ({
14156
15012
  match: "strings";
14157
15013
  } | {
@@ -14197,6 +15053,71 @@ type TailwindcssNoUnknownClasses = [] | [{
14197
15053
  ignore?: string[];
14198
15054
  }]; // ----- tailwindcss/no-unnecessary-whitespace -----
14199
15055
  type TailwindcssNoUnnecessaryWhitespace = [] | [{
15056
+ selectors?: ({
15057
+ kind: "attribute";
15058
+ match?: ({
15059
+ type: "strings";
15060
+ } | {
15061
+ path?: string;
15062
+ type: "objectKeys";
15063
+ } | {
15064
+ path?: string;
15065
+ type: "objectValues";
15066
+ })[];
15067
+ name: string;
15068
+ } | ({
15069
+ callTarget?: ("all" | "first" | "last" | number);
15070
+ kind: "callee";
15071
+ match?: ({
15072
+ type: "strings";
15073
+ } | {
15074
+ path?: string;
15075
+ type: "objectKeys";
15076
+ } | {
15077
+ path?: string;
15078
+ type: "objectValues";
15079
+ })[];
15080
+ name: string;
15081
+ path?: string;
15082
+ } | {
15083
+ callTarget?: ("all" | "first" | "last" | number);
15084
+ kind: "callee";
15085
+ match?: ({
15086
+ type: "strings";
15087
+ } | {
15088
+ path?: string;
15089
+ type: "objectKeys";
15090
+ } | {
15091
+ path?: string;
15092
+ type: "objectValues";
15093
+ })[];
15094
+ name?: string;
15095
+ path: string;
15096
+ }) | {
15097
+ kind: "tag";
15098
+ match?: ({
15099
+ type: "strings";
15100
+ } | {
15101
+ path?: string;
15102
+ type: "objectKeys";
15103
+ } | {
15104
+ path?: string;
15105
+ type: "objectValues";
15106
+ })[];
15107
+ name: string;
15108
+ } | {
15109
+ kind: "variable";
15110
+ match?: ({
15111
+ type: "strings";
15112
+ } | {
15113
+ path?: string;
15114
+ type: "objectKeys";
15115
+ } | {
15116
+ path?: string;
15117
+ type: "objectValues";
15118
+ })[];
15119
+ name: string;
15120
+ })[];
14200
15121
  callees?: ([string, ({
14201
15122
  match: "strings";
14202
15123
  } | {
@@ -14365,10 +15286,19 @@ type TomlCommaStyle = [] | [("first" | "last")] | [("first" | "last"), {
14365
15286
  type TomlIndent = [] | [("tab" | number)] | [("tab" | number), {
14366
15287
  subTables?: number;
14367
15288
  keyValuePairs?: number;
14368
- }]; // ----- toml/inline-table-curly-spacing -----
15289
+ }]; // ----- toml/inline-table-curly-newline -----
15290
+ type TomlInlineTableCurlyNewline = [] | [(("always" | "never") | {
15291
+ multiline?: boolean;
15292
+ minProperties?: number;
15293
+ consistent?: boolean;
15294
+ })]; // ----- toml/inline-table-curly-spacing -----
14369
15295
  type TomlInlineTableCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
14370
15296
  arraysInObjects?: boolean;
14371
15297
  objectsInObjects?: boolean;
15298
+ emptyObjects?: ("ignore" | "always" | "never");
15299
+ }]; // ----- toml/inline-table-key-value-newline -----
15300
+ type TomlInlineTableKeyValueNewline = [] | [{
15301
+ allowAllPropertiesOnSameLine?: boolean;
14372
15302
  }]; // ----- toml/key-spacing -----
14373
15303
  type TomlKeySpacing = [] | [({
14374
15304
  align?: (("equal" | "value") | {
@@ -15132,7 +16062,10 @@ type TsNoUseBeforeDefine = [] | [("nofunc" | {
15132
16062
  ignoreTypeReferences?: boolean;
15133
16063
  typedefs?: boolean;
15134
16064
  variables?: boolean;
15135
- })]; // ----- ts/no-var-requires -----
16065
+ })]; // ----- ts/no-useless-default-assignment -----
16066
+ type TsNoUselessDefaultAssignment = [] | [{
16067
+ allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
16068
+ }]; // ----- ts/no-var-requires -----
15136
16069
  type TsNoVarRequires = [] | [{
15137
16070
  allow?: string[];
15138
16071
  }]; // ----- ts/only-throw-error -----
@@ -15379,7 +16312,15 @@ interface _UnicornImportStyle_ModuleStyles {
15379
16312
  }
15380
16313
  interface _UnicornImportStyle_BooleanObject {
15381
16314
  [k: string]: boolean | undefined;
15382
- } // ----- unicorn/no-array-reduce -----
16315
+ } // ----- unicorn/isolated-functions -----
16316
+ type UnicornIsolatedFunctions = [] | [{
16317
+ overrideGlobals?: {
16318
+ [k: string]: (boolean | ("readonly" | "writable" | "writeable" | "off")) | undefined;
16319
+ };
16320
+ functions?: string[];
16321
+ selectors?: string[];
16322
+ comments?: string[];
16323
+ }]; // ----- unicorn/no-array-reduce -----
15383
16324
  type UnicornNoArrayReduce = [] | [{
15384
16325
  allowSimpleOperations?: boolean;
15385
16326
  }]; // ----- unicorn/no-array-reverse -----
@@ -15584,6 +16525,7 @@ type YamlFlowMappingCurlyNewline = [] | [(("always" | "never") | {
15584
16525
  type YamlFlowMappingCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
15585
16526
  arraysInObjects?: boolean;
15586
16527
  objectsInObjects?: boolean;
16528
+ emptyObjects?: ("ignore" | "always" | "never");
15587
16529
  }]; // ----- yaml/flow-sequence-bracket-newline -----
15588
16530
  type YamlFlowSequenceBracketNewline = [] | [(("always" | "never" | "consistent") | {
15589
16531
  multiline?: boolean;
@@ -15754,7 +16696,7 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
15754
16696
  exceptRange?: boolean;
15755
16697
  onlyEquality?: boolean;
15756
16698
  }]; // Names of all the configs
15757
- type ConfigNames = 'ariel/gitignore' | 'ariel/ignores' | 'ariel/javascript/setup' | 'ariel/javascript/rules' | 'ariel/eslint-comments/rules' | 'ariel/perfectionist/setup' | 'ariel/morgan/rules' | 'ariel/node/rules' | 'ariel/jsdoc/rules' | 'ariel/imports/rules' | 'ariel/unicorn/rules' | 'ariel/jsx/setup' | 'ariel/typescript/setup' | 'ariel/typescript/parser' | 'ariel/typescript/type-aware-parser' | 'ariel/typescript/rules' | 'ariel/typescript/rules-type-aware' | 'ariel/stylistic/rules' | 'ariel/regexp/rules' | 'ariel/test/setup' | 'ariel/test/rules' | 'ariel/react/setup' | 'ariel/react/rules' | 'ariel/react/typescript' | 'ariel/react/type-aware-rules' | 'ariel/nextjs/setup' | 'ariel/nextjs/rules' | 'ariel/solid/setup' | 'ariel/solid/rules' | 'ariel/svelte/setup' | 'ariel/svelte/rules' | 'ariel/tailwindcss/setup' | 'ariel/tailwindcss/rules' | 'ariel/jsonc/setup' | 'ariel/jsonc/rules' | 'ariel/sort/package-json' | 'ariel/sort/tsconfig-json' | 'ariel/pnpm/package-json' | 'ariel/pnpm/pnpm-workspace-yaml' | 'ariel/pnpm/pnpm-workspace-yaml-sort' | 'ariel/yaml/setup' | 'ariel/yaml/rules' | 'ariel/toml/setup' | 'ariel/toml/rules' | 'ariel/markdown/setup' | 'ariel/markdown/processor' | 'ariel/markdown/parser' | 'ariel/markdown/disables' | 'ariel/disables/scripts' | 'ariel/disables/dts' | 'ariel/disables/cjs' | 'ariel/disables/config-files';
16699
+ type ConfigNames = 'ariel/gitignore' | 'ariel/ignores' | 'ariel/javascript/setup' | 'ariel/javascript/rules' | 'ariel/eslint-comments/rules' | 'ariel/perfectionist/setup' | 'ariel/morgan/rules' | 'ariel/node/setup' | 'ariel/node/rules' | 'ariel/jsdoc/setup' | 'ariel/jsdoc/rules' | 'ariel/imports/rules' | 'ariel/e18e/rules' | 'ariel/unicorn/rules' | 'ariel/jsx/setup' | 'ariel/typescript/setup' | 'ariel/typescript/parser' | 'ariel/typescript/type-aware-parser' | 'ariel/typescript/rules' | 'ariel/typescript/rules-type-aware' | 'ariel/stylistic/rules' | 'ariel/regexp/rules' | 'ariel/test/setup' | 'ariel/test/rules' | 'ariel/react/setup' | 'ariel/react/rules' | 'ariel/react/typescript' | 'ariel/react/type-aware-rules' | 'ariel/nextjs/setup' | 'ariel/nextjs/rules' | 'ariel/solid/setup' | 'ariel/solid/rules' | 'ariel/svelte/setup' | 'ariel/svelte/rules' | 'ariel/tailwindcss/setup' | 'ariel/tailwindcss/rules' | 'ariel/jsonc/setup' | 'ariel/jsonc/rules' | 'ariel/sort/package-json' | 'ariel/sort/tsconfig-json' | 'ariel/pnpm/package-json' | 'ariel/pnpm/pnpm-workspace-yaml' | 'ariel/pnpm/pnpm-workspace-yaml-sort' | 'ariel/yaml/setup' | 'ariel/yaml/rules' | 'ariel/toml/setup' | 'ariel/toml/rules' | 'ariel/markdown/setup' | 'ariel/markdown/processor' | 'ariel/markdown/parser' | 'ariel/markdown/rules' | 'ariel/markdown/disables/markdown' | 'ariel/markdown/disables/code' | 'ariel/disables/scripts' | 'ariel/disables/dts' | 'ariel/disables/cjs' | 'ariel/disables/config-files';
15758
16700
  //#endregion
15759
16701
  //#region src/types.d.ts
15760
16702
  type Awaitable<T> = T | Promise<T>;
@@ -15774,6 +16716,11 @@ type OptionsTypescript = (OptionsTypeScriptWithTypes & OptionsOverrides) | (Opti
15774
16716
  interface OptionsComponentExts {
15775
16717
  componentExts?: string[];
15776
16718
  }
16719
+ interface OptionsE18e extends OptionsOverrides {
16720
+ modernization?: boolean;
16721
+ moduleReplacements?: boolean;
16722
+ performanceImprovements?: boolean;
16723
+ }
15777
16724
  interface OptionsUnicorn extends OptionsOverrides {
15778
16725
  allRecommended?: boolean;
15779
16726
  }
@@ -15819,6 +16766,18 @@ interface OptionsPnpm {
15819
16766
  interface OptionsReact extends OptionsOverrides {
15820
16767
  reactCompiler?: boolean;
15821
16768
  }
16769
+ interface OptionsMarkdown extends OptionsOverrides {
16770
+ /**
16771
+ * Enable GFM (GitHub Flavored Markdown) support.
16772
+ *
16773
+ * @default true
16774
+ */
16775
+ gfm?: boolean;
16776
+ /**
16777
+ * Override rules for markdown itself.
16778
+ */
16779
+ overridesMarkdown?: TypedFlatConfigItem['rules'];
16780
+ }
15822
16781
  interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
15823
16782
  /**
15824
16783
  * Enable gitignore support.
@@ -15862,6 +16821,12 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
15862
16821
  * @default auto-detect based on the dependencies
15863
16822
  */
15864
16823
  typescript?: boolean | OptionsTypescript;
16824
+ /**
16825
+ * Options for [@e18e/eslint-plugin](https://github.com/e18e/eslint-plugin)
16826
+ *
16827
+ * @default true
16828
+ */
16829
+ e18e?: boolean | OptionsE18e;
15865
16830
  /**
15866
16831
  * Enable JSX related rules.
15867
16832
  *
@@ -15907,13 +16872,13 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
15907
16872
  */
15908
16873
  toml?: boolean | OptionsOverrides;
15909
16874
  /**
15910
- * Enable linting for **code snippets** in Markdown.
16875
+ * Enable linting for **code snippets** in Markdown and the markdown content itself.
15911
16876
  *
15912
16877
  * For formatting Markdown content, enable also `formatters.markdown`.
15913
16878
  *
15914
16879
  * @default true
15915
16880
  */
15916
- markdown?: boolean | OptionsOverrides;
16881
+ markdown?: boolean | OptionsMarkdown;
15917
16882
  /**
15918
16883
  * Enable stylistic rules.
15919
16884
  *
@@ -16048,6 +17013,9 @@ declare function comments(): Promise<TypedFlatConfigItem[]>;
16048
17013
  //#region src/configs/disables.d.ts
16049
17014
  declare function disables(): Promise<TypedFlatConfigItem[]>;
16050
17015
  //#endregion
17016
+ //#region src/configs/e18e.d.ts
17017
+ declare function e18e(options?: OptionsE18e): Promise<TypedFlatConfigItem[]>;
17018
+ //#endregion
16051
17019
  //#region src/configs/ignores.d.ts
16052
17020
  declare function ignores(userIgnores?: string[] | ((originals: string[]) => string[])): Promise<TypedFlatConfigItem[]>;
16053
17021
  //#endregion
@@ -16067,7 +17035,7 @@ declare function jsonc(options?: OptionsFiles & OptionsStylistic & OptionsOverri
16067
17035
  declare function jsx(options?: OptionsJSX): Promise<TypedFlatConfigItem[]>;
16068
17036
  //#endregion
16069
17037
  //#region src/configs/markdown.d.ts
16070
- declare function markdown(options?: OptionsFiles & OptionsComponentExts & OptionsOverrides): Promise<TypedFlatConfigItem[]>;
17038
+ declare function markdown(options?: OptionsFiles & OptionsComponentExts & OptionsMarkdown): Promise<TypedFlatConfigItem[]>;
16071
17039
  //#endregion
16072
17040
  //#region src/configs/morgan.d.ts
16073
17041
  declare function morgan(): Promise<TypedFlatConfigItem[]>;
@@ -16150,6 +17118,10 @@ declare const GLOB_TESTS: string[];
16150
17118
  declare const GLOB_ALL_SRC: string[];
16151
17119
  declare const GLOB_EXCLUDE: string[];
16152
17120
  //#endregion
17121
+ //#region src/presets.d.ts
17122
+ declare const PRESET_FULL_ON: OptionsConfig;
17123
+ declare const PRESET_FULL_OFF: OptionsConfig;
17124
+ //#endregion
16153
17125
  //#region src/utils.d.ts
16154
17126
  declare const parser_plain: {
16155
17127
  meta: {
@@ -16186,4 +17158,4 @@ declare function interop_default<T>(m: Awaitable<T>): Promise<T extends {
16186
17158
  declare function is_package_in_scope(name: string): boolean;
16187
17159
  declare function ensure_packages(packages: (string | undefined)[]): Promise<void>;
16188
17160
  //#endregion
16189
- export { Awaitable, type ConfigNames, GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, OptionsComponentExts, OptionsConfig, OptionsFiles, OptionsHasTailwindCSS, OptionsHasTypeScript, OptionsJSX, OptionsJSXA11y, OptionsOverrides, OptionsPnpm, OptionsProjectType, OptionsReact, OptionsRegExp, OptionsStylistic, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, ResolvedOptions, type RuleOptions, Rules, StylisticConfig, StylisticOptions, TailwindCSSOptions, TypedFlatConfigItem, combine, comments, defineConfig as default, defineConfig, default_plugin_renaming, defaults, disables, ensure_packages, get_overrides, ignores, imports, interop_default, is_package_in_scope, javascript, jsdoc, jsonc, jsx, markdown, morgan, nextjs, node, parser_plain, perfectionist, pnpm, react, regexp, rename_plugin_in_configs, rename_rules, resolve_sub_options, solid, sort_package_json, sort_ts_config, stylistic, svelte, tailwindcss, test, to_array, toml, typescript, unicorn, yaml };
17161
+ export { Awaitable, type ConfigNames, GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, OptionsComponentExts, OptionsConfig, OptionsE18e, OptionsFiles, OptionsHasTailwindCSS, OptionsHasTypeScript, OptionsJSX, OptionsJSXA11y, OptionsMarkdown, OptionsOverrides, OptionsPnpm, OptionsProjectType, OptionsReact, OptionsRegExp, OptionsStylistic, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, PRESET_FULL_OFF, PRESET_FULL_ON, ResolvedOptions, type RuleOptions, Rules, StylisticConfig, StylisticOptions, TailwindCSSOptions, TypedFlatConfigItem, combine, comments, defineConfig as default, defineConfig, default_plugin_renaming, defaults, disables, e18e, ensure_packages, get_overrides, ignores, imports, interop_default, is_package_in_scope, javascript, jsdoc, jsonc, jsx, markdown, morgan, nextjs, node, parser_plain, perfectionist, pnpm, react, regexp, rename_plugin_in_configs, rename_rules, resolve_sub_options, solid, sort_package_json, sort_ts_config, stylistic, svelte, tailwindcss, test, to_array, toml, typescript, unicorn, yaml };