@luxass/eslint-config 7.2.0 → 7.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -323,6 +323,16 @@ interface MarkdownOptions {
323
323
  * @see https://github.com/luxass/eslint-config/blob/main/src/globs.ts
324
324
  */
325
325
  files?: string[];
326
+ /**
327
+ * Enable GFM (GitHub Flavored Markdown) support.
328
+ *
329
+ * @default true
330
+ */
331
+ gfm?: boolean;
332
+ /**
333
+ * Override rules for markdown itself.
334
+ */
335
+ overridesMarkdown?: TypedFlatConfigItem["rules"];
326
336
  }
327
337
  declare function markdown(options?: MarkdownOptions): Promise<TypedFlatConfigItem[]>;
328
338
  //#endregion
@@ -1217,6 +1227,10 @@ interface RuleOptions {
1217
1227
  * Use dprint to format code
1218
1228
  */
1219
1229
  'format/dprint'?: Linter.RuleEntry<FormatDprint>;
1230
+ /**
1231
+ * Use oxfmt to format code
1232
+ */
1233
+ 'format/oxfmt'?: Linter.RuleEntry<FormatOxfmt>;
1220
1234
  /**
1221
1235
  * Use Prettier to format code
1222
1236
  */
@@ -3174,6 +3188,11 @@ interface RuleOptions {
3174
3188
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/console.md
3175
3189
  */
3176
3190
  'node/prefer-global/console'?: Linter.RuleEntry<NodePreferGlobalConsole>;
3191
+ /**
3192
+ * enforce either `crypto` or `require("crypto").webcrypto`
3193
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/crypto.md
3194
+ */
3195
+ 'node/prefer-global/crypto'?: Linter.RuleEntry<NodePreferGlobalCrypto>;
3177
3196
  /**
3178
3197
  * enforce either `process` or `require("process")`
3179
3198
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/process.md
@@ -3189,6 +3208,11 @@ interface RuleOptions {
3189
3208
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/text-encoder.md
3190
3209
  */
3191
3210
  'node/prefer-global/text-encoder'?: Linter.RuleEntry<NodePreferGlobalTextEncoder>;
3211
+ /**
3212
+ * enforce either global timer functions or `require("timers")`
3213
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/timers.md
3214
+ */
3215
+ 'node/prefer-global/timers'?: Linter.RuleEntry<NodePreferGlobalTimers>;
3192
3216
  /**
3193
3217
  * enforce either `URL` or `require("url").URL`
3194
3218
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/url.md
@@ -3522,7 +3546,7 @@ interface RuleOptions {
3522
3546
  */
3523
3547
  'quotes'?: Linter.RuleEntry<Quotes>;
3524
3548
  /**
3525
- * Enforce the consistent use of the radix argument when using `parseInt()`
3549
+ * Enforce the use of the radix argument when using `parseInt()`
3526
3550
  * @see https://eslint.org/docs/latest/rules/radix
3527
3551
  */
3528
3552
  'radix'?: Linter.RuleEntry<Radix>;
@@ -3759,6 +3783,11 @@ interface RuleOptions {
3759
3783
  * @see https://eslint-react.xyz/docs/rules/naming-convention-filename-extension
3760
3784
  */
3761
3785
  'react-naming-convention/filename-extension'?: Linter.RuleEntry<ReactNamingConventionFilenameExtension>;
3786
+ /**
3787
+ * Enforces identifier names assigned from 'useId' calls to be either 'id' or end with 'Id'.
3788
+ * @see https://eslint-react.xyz/docs/rules/naming-convention-id-name
3789
+ */
3790
+ 'react-naming-convention/id-name'?: Linter.RuleEntry<[]>;
3762
3791
  /**
3763
3792
  * Enforces identifier names assigned from 'useRef' calls to be either 'ref' or end with 'Ref'.
3764
3793
  * @see https://eslint-react.xyz/docs/rules/naming-convention-ref-name
@@ -3796,7 +3825,7 @@ interface RuleOptions {
3796
3825
  */
3797
3826
  'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>;
3798
3827
  /**
3799
- * Prevents unnecessary '$' symbols before JSX expressions.
3828
+ * Prevents unintentional '$' sign before expression.
3800
3829
  * @see https://eslint-react.xyz/docs/rules/jsx-dollar
3801
3830
  */
3802
3831
  'react/jsx-dollar'?: Linter.RuleEntry<[]>;
@@ -4696,6 +4725,11 @@ interface RuleOptions {
4696
4725
  * @see https://eslint.style/rules/eol-last
4697
4726
  */
4698
4727
  'style/eol-last'?: Linter.RuleEntry<StyleEolLast>;
4728
+ /**
4729
+ * Enforce consistent line break styles for JSX props
4730
+ * @see https://eslint.style/rules/jsx-props-style
4731
+ */
4732
+ 'style/exp-jsx-props-style'?: Linter.RuleEntry<StyleExpJsxPropsStyle>;
4699
4733
  /**
4700
4734
  * Enforce consistent spacing and line break styles inside brackets.
4701
4735
  * @see https://eslint.style/rules/list-style
@@ -5563,11 +5597,21 @@ interface RuleOptions {
5563
5597
  * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/indent.html
5564
5598
  */
5565
5599
  'toml/indent'?: Linter.RuleEntry<TomlIndent>;
5600
+ /**
5601
+ * enforce linebreaks after opening and before closing braces
5602
+ * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/inline-table-curly-newline.html
5603
+ */
5604
+ 'toml/inline-table-curly-newline'?: Linter.RuleEntry<TomlInlineTableCurlyNewline>;
5566
5605
  /**
5567
5606
  * enforce consistent spacing inside braces
5568
5607
  * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/inline-table-curly-spacing.html
5569
5608
  */
5570
5609
  'toml/inline-table-curly-spacing'?: Linter.RuleEntry<TomlInlineTableCurlySpacing>;
5610
+ /**
5611
+ * enforce placing inline table key-value pairs on separate lines
5612
+ * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/inline-table-key-value-newline.html
5613
+ */
5614
+ 'toml/inline-table-key-value-newline'?: Linter.RuleEntry<TomlInlineTableKeyValueNewline>;
5571
5615
  /**
5572
5616
  * enforce consistent spacing between keys and values in key/value pairs
5573
5617
  * @see https://ota-meshi.github.io/eslint-plugin-toml/rules/key-spacing.html
@@ -6116,7 +6160,7 @@ interface RuleOptions {
6116
6160
  * Disallow default values that will never be used
6117
6161
  * @see https://typescript-eslint.io/rules/no-useless-default-assignment
6118
6162
  */
6119
- 'ts/no-useless-default-assignment'?: Linter.RuleEntry<[]>;
6163
+ 'ts/no-useless-default-assignment'?: Linter.RuleEntry<TsNoUselessDefaultAssignment>;
6120
6164
  /**
6121
6165
  * Disallow empty exports that don't change anything in a module file
6122
6166
  * @see https://typescript-eslint.io/rules/no-useless-empty-export
@@ -6333,725 +6377,730 @@ interface RuleOptions {
6333
6377
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>;
6334
6378
  /**
6335
6379
  * Improve regexes by making them shorter, consistent, and safer.
6336
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/better-regex.md
6380
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/better-regex.md
6337
6381
  */
6338
6382
  'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>;
6339
6383
  /**
6340
6384
  * Enforce a specific parameter name in catch clauses.
6341
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/catch-error-name.md
6385
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/catch-error-name.md
6342
6386
  */
6343
6387
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>;
6344
6388
  /**
6345
6389
  * Enforce consistent assertion style with `node:assert`.
6346
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-assert.md
6390
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-assert.md
6347
6391
  */
6348
6392
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
6349
6393
  /**
6350
6394
  * Prefer passing `Date` directly to the constructor when cloning.
6351
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-date-clone.md
6395
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-date-clone.md
6352
6396
  */
6353
6397
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
6354
6398
  /**
6355
6399
  * Use destructured variables over properties.
6356
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-destructuring.md
6400
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-destructuring.md
6357
6401
  */
6358
6402
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
6359
6403
  /**
6360
6404
  * Prefer consistent types when spreading a ternary in an array literal.
6361
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-empty-array-spread.md
6405
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-empty-array-spread.md
6362
6406
  */
6363
6407
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
6364
6408
  /**
6365
6409
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
6366
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-existence-index-check.md
6410
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-existence-index-check.md
6367
6411
  */
6368
6412
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
6369
6413
  /**
6370
6414
  * Move function definitions to the highest possible scope.
6371
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/consistent-function-scoping.md
6415
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/consistent-function-scoping.md
6372
6416
  */
6373
6417
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
6374
6418
  /**
6375
6419
  * Enforce correct `Error` subclassing.
6376
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/custom-error-definition.md
6420
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/custom-error-definition.md
6377
6421
  */
6378
6422
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
6379
6423
  /**
6380
6424
  * Enforce no spaces between braces.
6381
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/empty-brace-spaces.md
6425
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/empty-brace-spaces.md
6382
6426
  */
6383
6427
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
6384
6428
  /**
6385
6429
  * Enforce passing a `message` value when creating a built-in error.
6386
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/error-message.md
6430
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/error-message.md
6387
6431
  */
6388
6432
  'unicorn/error-message'?: Linter.RuleEntry<[]>;
6389
6433
  /**
6390
6434
  * Require escape sequences to use uppercase or lowercase values.
6391
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/escape-case.md
6435
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/escape-case.md
6392
6436
  */
6393
6437
  'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>;
6394
6438
  /**
6395
6439
  * Add expiration conditions to TODO comments.
6396
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/expiring-todo-comments.md
6440
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/expiring-todo-comments.md
6397
6441
  */
6398
6442
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>;
6399
6443
  /**
6400
6444
  * Enforce explicitly comparing the `length` or `size` property of a value.
6401
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/explicit-length-check.md
6445
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/explicit-length-check.md
6402
6446
  */
6403
6447
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
6404
6448
  /**
6405
6449
  * Enforce a case style for filenames.
6406
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/filename-case.md
6450
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/filename-case.md
6407
6451
  */
6408
6452
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>;
6409
6453
  /**
6410
6454
  * Enforce specific import styles per module.
6411
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/import-style.md
6455
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/import-style.md
6412
6456
  */
6413
6457
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>;
6458
+ /**
6459
+ * Prevent usage of variables from outside the scope of isolated functions.
6460
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/isolated-functions.md
6461
+ */
6462
+ 'unicorn/isolated-functions'?: Linter.RuleEntry<UnicornIsolatedFunctions>;
6414
6463
  /**
6415
6464
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
6416
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/new-for-builtins.md
6465
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/new-for-builtins.md
6417
6466
  */
6418
6467
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
6419
6468
  /**
6420
6469
  * Enforce specifying rules to disable in `eslint-disable` comments.
6421
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-abusive-eslint-disable.md
6470
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-abusive-eslint-disable.md
6422
6471
  */
6423
6472
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
6424
6473
  /**
6425
6474
  * Disallow recursive access to `this` within getters and setters.
6426
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-accessor-recursion.md
6475
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-accessor-recursion.md
6427
6476
  */
6428
6477
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
6429
6478
  /**
6430
6479
  * Disallow anonymous functions and classes as the default export.
6431
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-anonymous-default-export.md
6480
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-anonymous-default-export.md
6432
6481
  */
6433
6482
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
6434
6483
  /**
6435
6484
  * Prevent passing a function reference directly to iterator methods.
6436
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-callback-reference.md
6485
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-callback-reference.md
6437
6486
  */
6438
6487
  'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
6439
6488
  /**
6440
6489
  * Prefer `for…of` over the `forEach` method.
6441
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-for-each.md
6490
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-for-each.md
6442
6491
  */
6443
6492
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
6444
6493
  /**
6445
6494
  * Disallow using the `this` argument in array methods.
6446
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-method-this-argument.md
6495
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-method-this-argument.md
6447
6496
  */
6448
6497
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
6449
6498
  /**
6450
6499
  * Replaced by `unicorn/prefer-single-call` which covers more cases.
6451
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-array-push-push
6500
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-array-push-push
6452
6501
  * @deprecated
6453
6502
  */
6454
6503
  'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
6455
6504
  /**
6456
6505
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
6457
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-reduce.md
6506
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-reduce.md
6458
6507
  */
6459
6508
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>;
6460
6509
  /**
6461
6510
  * Prefer `Array#toReversed()` over `Array#reverse()`.
6462
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-reverse.md
6511
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-reverse.md
6463
6512
  */
6464
6513
  'unicorn/no-array-reverse'?: Linter.RuleEntry<UnicornNoArrayReverse>;
6465
6514
  /**
6466
6515
  * Prefer `Array#toSorted()` over `Array#sort()`.
6467
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-array-sort.md
6516
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-array-sort.md
6468
6517
  */
6469
6518
  'unicorn/no-array-sort'?: Linter.RuleEntry<UnicornNoArraySort>;
6470
6519
  /**
6471
6520
  * Disallow member access from await expression.
6472
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-await-expression-member.md
6521
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-await-expression-member.md
6473
6522
  */
6474
6523
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
6475
6524
  /**
6476
6525
  * Disallow using `await` in `Promise` method parameters.
6477
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-await-in-promise-methods.md
6526
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-await-in-promise-methods.md
6478
6527
  */
6479
6528
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
6480
6529
  /**
6481
6530
  * Do not use leading/trailing space between `console.log` parameters.
6482
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-console-spaces.md
6531
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-console-spaces.md
6483
6532
  */
6484
6533
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
6485
6534
  /**
6486
6535
  * Do not use `document.cookie` directly.
6487
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-document-cookie.md
6536
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-document-cookie.md
6488
6537
  */
6489
6538
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
6490
6539
  /**
6491
6540
  * Disallow empty files.
6492
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-empty-file.md
6541
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-empty-file.md
6493
6542
  */
6494
6543
  'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
6495
6544
  /**
6496
6545
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
6497
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-for-loop.md
6546
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-for-loop.md
6498
6547
  */
6499
6548
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
6500
6549
  /**
6501
6550
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
6502
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-hex-escape.md
6551
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-hex-escape.md
6503
6552
  */
6504
6553
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
6505
6554
  /**
6506
6555
  * Disallow immediate mutation after variable assignment.
6507
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-immediate-mutation.md
6556
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-immediate-mutation.md
6508
6557
  */
6509
6558
  'unicorn/no-immediate-mutation'?: Linter.RuleEntry<[]>;
6510
6559
  /**
6511
6560
  * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
6512
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-instanceof-array
6561
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-instanceof-array
6513
6562
  * @deprecated
6514
6563
  */
6515
6564
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
6516
6565
  /**
6517
6566
  * Disallow `instanceof` with built-in objects
6518
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-instanceof-builtins.md
6567
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-instanceof-builtins.md
6519
6568
  */
6520
6569
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
6521
6570
  /**
6522
6571
  * Disallow invalid options in `fetch()` and `new Request()`.
6523
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-invalid-fetch-options.md
6572
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-invalid-fetch-options.md
6524
6573
  */
6525
6574
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
6526
6575
  /**
6527
6576
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
6528
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-invalid-remove-event-listener.md
6577
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-invalid-remove-event-listener.md
6529
6578
  */
6530
6579
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
6531
6580
  /**
6532
6581
  * Disallow identifiers starting with `new` or `class`.
6533
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-keyword-prefix.md
6582
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-keyword-prefix.md
6534
6583
  */
6535
6584
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
6536
6585
  /**
6537
6586
  * Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
6538
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/deprecated-rules.md#no-length-as-slice-end
6587
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
6539
6588
  * @deprecated
6540
6589
  */
6541
6590
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
6542
6591
  /**
6543
6592
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
6544
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-lonely-if.md
6593
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-lonely-if.md
6545
6594
  */
6546
6595
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
6547
6596
  /**
6548
6597
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
6549
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-magic-array-flat-depth.md
6598
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-magic-array-flat-depth.md
6550
6599
  */
6551
6600
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
6552
6601
  /**
6553
6602
  * Disallow named usage of default import and export.
6554
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-named-default.md
6603
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-named-default.md
6555
6604
  */
6556
6605
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
6557
6606
  /**
6558
6607
  * Disallow negated conditions.
6559
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-negated-condition.md
6608
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-negated-condition.md
6560
6609
  */
6561
6610
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
6562
6611
  /**
6563
6612
  * Disallow negated expression in equality check.
6564
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-negation-in-equality-check.md
6613
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-negation-in-equality-check.md
6565
6614
  */
6566
6615
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
6567
6616
  /**
6568
6617
  * Disallow nested ternary expressions.
6569
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-nested-ternary.md
6618
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-nested-ternary.md
6570
6619
  */
6571
6620
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
6572
6621
  /**
6573
6622
  * Disallow `new Array()`.
6574
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-new-array.md
6623
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-new-array.md
6575
6624
  */
6576
6625
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
6577
6626
  /**
6578
6627
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
6579
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-new-buffer.md
6628
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-new-buffer.md
6580
6629
  */
6581
6630
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
6582
6631
  /**
6583
6632
  * Disallow the use of the `null` literal.
6584
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-null.md
6633
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-null.md
6585
6634
  */
6586
6635
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>;
6587
6636
  /**
6588
6637
  * Disallow the use of objects as default parameters.
6589
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-object-as-default-parameter.md
6638
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-object-as-default-parameter.md
6590
6639
  */
6591
6640
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
6592
6641
  /**
6593
6642
  * Disallow `process.exit()`.
6594
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-process-exit.md
6643
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-process-exit.md
6595
6644
  */
6596
6645
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
6597
6646
  /**
6598
6647
  * Disallow passing single-element arrays to `Promise` methods.
6599
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-single-promise-in-promise-methods.md
6648
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-single-promise-in-promise-methods.md
6600
6649
  */
6601
6650
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
6602
6651
  /**
6603
6652
  * Disallow classes that only have static members.
6604
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-static-only-class.md
6653
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-static-only-class.md
6605
6654
  */
6606
6655
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
6607
6656
  /**
6608
6657
  * Disallow `then` property.
6609
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-thenable.md
6658
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-thenable.md
6610
6659
  */
6611
6660
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
6612
6661
  /**
6613
6662
  * Disallow assigning `this` to a variable.
6614
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-this-assignment.md
6663
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-this-assignment.md
6615
6664
  */
6616
6665
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
6617
6666
  /**
6618
6667
  * Disallow comparing `undefined` using `typeof`.
6619
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-typeof-undefined.md
6668
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-typeof-undefined.md
6620
6669
  */
6621
6670
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
6622
6671
  /**
6623
6672
  * Disallow using `1` as the `depth` argument of `Array#flat()`.
6624
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-array-flat-depth.md
6673
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-array-flat-depth.md
6625
6674
  */
6626
6675
  'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
6627
6676
  /**
6628
6677
  * Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
6629
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-array-splice-count.md
6678
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-array-splice-count.md
6630
6679
  */
6631
6680
  'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
6632
6681
  /**
6633
6682
  * Disallow awaiting non-promise values.
6634
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-await.md
6683
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-await.md
6635
6684
  */
6636
6685
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
6637
6686
  /**
6638
6687
  * Enforce the use of built-in methods instead of unnecessary polyfills.
6639
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-polyfills.md
6688
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-polyfills.md
6640
6689
  */
6641
6690
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
6642
6691
  /**
6643
6692
  * Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
6644
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unnecessary-slice-end.md
6693
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unnecessary-slice-end.md
6645
6694
  */
6646
6695
  'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
6647
6696
  /**
6648
6697
  * Disallow unreadable array destructuring.
6649
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unreadable-array-destructuring.md
6698
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unreadable-array-destructuring.md
6650
6699
  */
6651
6700
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
6652
6701
  /**
6653
6702
  * Disallow unreadable IIFEs.
6654
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unreadable-iife.md
6703
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unreadable-iife.md
6655
6704
  */
6656
6705
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
6657
6706
  /**
6658
6707
  * Disallow unused object properties.
6659
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-unused-properties.md
6708
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-unused-properties.md
6660
6709
  */
6661
6710
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
6662
6711
  /**
6663
6712
  * Disallow useless values or fallbacks in `Set`, `Map`, `WeakSet`, or `WeakMap`.
6664
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-collection-argument.md
6713
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-collection-argument.md
6665
6714
  */
6666
6715
  'unicorn/no-useless-collection-argument'?: Linter.RuleEntry<[]>;
6667
6716
  /**
6668
6717
  * Disallow unnecessary `Error.captureStackTrace(…)`.
6669
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-error-capture-stack-trace.md
6718
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-error-capture-stack-trace.md
6670
6719
  */
6671
6720
  'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
6672
6721
  /**
6673
6722
  * Disallow useless fallback when spreading in object literals.
6674
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-fallback-in-spread.md
6723
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-fallback-in-spread.md
6675
6724
  */
6676
6725
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
6677
6726
  /**
6678
6727
  * Disallow useless array length check.
6679
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-length-check.md
6728
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-length-check.md
6680
6729
  */
6681
6730
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
6682
6731
  /**
6683
6732
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
6684
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-promise-resolve-reject.md
6733
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-promise-resolve-reject.md
6685
6734
  */
6686
6735
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
6687
6736
  /**
6688
6737
  * Disallow unnecessary spread.
6689
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-spread.md
6738
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-spread.md
6690
6739
  */
6691
6740
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
6692
6741
  /**
6693
6742
  * Disallow useless case in switch statements.
6694
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-switch-case.md
6743
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-switch-case.md
6695
6744
  */
6696
6745
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
6697
6746
  /**
6698
6747
  * Disallow useless `undefined`.
6699
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-useless-undefined.md
6748
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-useless-undefined.md
6700
6749
  */
6701
6750
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>;
6702
6751
  /**
6703
6752
  * Disallow number literals with zero fractions or dangling dots.
6704
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/no-zero-fractions.md
6753
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/no-zero-fractions.md
6705
6754
  */
6706
6755
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
6707
6756
  /**
6708
6757
  * Enforce proper case for numeric literals.
6709
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/number-literal-case.md
6758
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/number-literal-case.md
6710
6759
  */
6711
6760
  'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>;
6712
6761
  /**
6713
6762
  * Enforce the style of numeric separators by correctly grouping digits.
6714
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/numeric-separators-style.md
6763
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/numeric-separators-style.md
6715
6764
  */
6716
6765
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
6717
6766
  /**
6718
6767
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
6719
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-add-event-listener.md
6768
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-add-event-listener.md
6720
6769
  */
6721
6770
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>;
6722
6771
  /**
6723
6772
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
6724
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-find.md
6773
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-find.md
6725
6774
  */
6726
6775
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>;
6727
6776
  /**
6728
6777
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
6729
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-flat.md
6778
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-flat.md
6730
6779
  */
6731
6780
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>;
6732
6781
  /**
6733
6782
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
6734
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-flat-map.md
6783
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-flat-map.md
6735
6784
  */
6736
6785
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
6737
6786
  /**
6738
6787
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
6739
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-index-of.md
6788
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-index-of.md
6740
6789
  */
6741
6790
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
6742
6791
  /**
6743
6792
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
6744
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-array-some.md
6793
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-array-some.md
6745
6794
  */
6746
6795
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
6747
6796
  /**
6748
6797
  * Prefer `.at()` method for index access and `String#charAt()`.
6749
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-at.md
6798
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-at.md
6750
6799
  */
6751
6800
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>;
6752
6801
  /**
6753
6802
  * Prefer `BigInt` literals over the constructor.
6754
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-bigint-literals.md
6803
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-bigint-literals.md
6755
6804
  */
6756
6805
  'unicorn/prefer-bigint-literals'?: Linter.RuleEntry<[]>;
6757
6806
  /**
6758
6807
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
6759
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-blob-reading-methods.md
6808
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-blob-reading-methods.md
6760
6809
  */
6761
6810
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
6762
6811
  /**
6763
6812
  * Prefer class field declarations over `this` assignments in constructors.
6764
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-class-fields.md
6813
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-class-fields.md
6765
6814
  */
6766
6815
  'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
6767
6816
  /**
6768
6817
  * Prefer using `Element#classList.toggle()` to toggle class names.
6769
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-classlist-toggle.md
6818
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-classlist-toggle.md
6770
6819
  */
6771
6820
  'unicorn/prefer-classlist-toggle'?: Linter.RuleEntry<[]>;
6772
6821
  /**
6773
6822
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
6774
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-code-point.md
6823
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-code-point.md
6775
6824
  */
6776
6825
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
6777
6826
  /**
6778
6827
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
6779
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-date-now.md
6828
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-date-now.md
6780
6829
  */
6781
6830
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
6782
6831
  /**
6783
6832
  * Prefer default parameters over reassignment.
6784
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-default-parameters.md
6833
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-default-parameters.md
6785
6834
  */
6786
6835
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
6787
6836
  /**
6788
6837
  * Prefer `Node#append()` over `Node#appendChild()`.
6789
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-append.md
6838
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-append.md
6790
6839
  */
6791
6840
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
6792
6841
  /**
6793
6842
  * Prefer using `.dataset` on DOM elements over calling attribute methods.
6794
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-dataset.md
6843
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-dataset.md
6795
6844
  */
6796
6845
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
6797
6846
  /**
6798
6847
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
6799
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-remove.md
6848
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-remove.md
6800
6849
  */
6801
6850
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
6802
6851
  /**
6803
6852
  * Prefer `.textContent` over `.innerText`.
6804
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-dom-node-text-content.md
6853
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-dom-node-text-content.md
6805
6854
  */
6806
6855
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
6807
6856
  /**
6808
6857
  * Prefer `EventTarget` over `EventEmitter`.
6809
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-event-target.md
6858
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-event-target.md
6810
6859
  */
6811
6860
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
6812
6861
  /**
6813
6862
  * Prefer `export…from` when re-exporting.
6814
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-export-from.md
6863
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-export-from.md
6815
6864
  */
6816
6865
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>;
6817
6866
  /**
6818
6867
  * Prefer `globalThis` over `window`, `self`, and `global`.
6819
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-global-this.md
6868
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-global-this.md
6820
6869
  */
6821
6870
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
6822
6871
  /**
6823
6872
  * Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
6824
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-import-meta-properties.md
6873
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-import-meta-properties.md
6825
6874
  */
6826
6875
  'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
6827
6876
  /**
6828
6877
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
6829
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-includes.md
6878
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-includes.md
6830
6879
  */
6831
6880
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
6832
6881
  /**
6833
6882
  * Prefer reading a JSON file as a buffer.
6834
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-json-parse-buffer.md
6883
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-json-parse-buffer.md
6835
6884
  */
6836
6885
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
6837
6886
  /**
6838
6887
  * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
6839
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-keyboard-event-key.md
6888
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-keyboard-event-key.md
6840
6889
  */
6841
6890
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
6842
6891
  /**
6843
6892
  * Prefer using a logical operator over a ternary.
6844
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-logical-operator-over-ternary.md
6893
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-logical-operator-over-ternary.md
6845
6894
  */
6846
6895
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
6847
6896
  /**
6848
6897
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
6849
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-math-min-max.md
6898
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-math-min-max.md
6850
6899
  */
6851
6900
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
6852
6901
  /**
6853
6902
  * Enforce the use of `Math.trunc` instead of bitwise operators.
6854
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-math-trunc.md
6903
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-math-trunc.md
6855
6904
  */
6856
6905
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
6857
6906
  /**
6858
6907
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
6859
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-modern-dom-apis.md
6908
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-modern-dom-apis.md
6860
6909
  */
6861
6910
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
6862
6911
  /**
6863
6912
  * Prefer modern `Math` APIs over legacy patterns.
6864
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-modern-math-apis.md
6913
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-modern-math-apis.md
6865
6914
  */
6866
6915
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
6867
6916
  /**
6868
6917
  * Prefer JavaScript modules (ESM) over CommonJS.
6869
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-module.md
6918
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-module.md
6870
6919
  */
6871
6920
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
6872
6921
  /**
6873
6922
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
6874
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-native-coercion-functions.md
6923
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-native-coercion-functions.md
6875
6924
  */
6876
6925
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
6877
6926
  /**
6878
6927
  * Prefer negative index over `.length - index` when possible.
6879
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-negative-index.md
6928
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-negative-index.md
6880
6929
  */
6881
6930
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
6882
6931
  /**
6883
6932
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
6884
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-node-protocol.md
6933
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-node-protocol.md
6885
6934
  */
6886
6935
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
6887
6936
  /**
6888
6937
  * Prefer `Number` static properties over global ones.
6889
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-number-properties.md
6938
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-number-properties.md
6890
6939
  */
6891
6940
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>;
6892
6941
  /**
6893
6942
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
6894
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-object-from-entries.md
6943
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-object-from-entries.md
6895
6944
  */
6896
6945
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
6897
6946
  /**
6898
6947
  * Prefer omitting the `catch` binding parameter.
6899
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-optional-catch-binding.md
6948
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-optional-catch-binding.md
6900
6949
  */
6901
6950
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
6902
6951
  /**
6903
6952
  * Prefer borrowing methods from the prototype instead of the instance.
6904
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-prototype-methods.md
6953
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-prototype-methods.md
6905
6954
  */
6906
6955
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
6907
6956
  /**
6908
6957
  * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
6909
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-query-selector.md
6958
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-query-selector.md
6910
6959
  */
6911
6960
  'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
6912
6961
  /**
6913
6962
  * Prefer `Reflect.apply()` over `Function#apply()`.
6914
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-reflect-apply.md
6963
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-reflect-apply.md
6915
6964
  */
6916
6965
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
6917
6966
  /**
6918
6967
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
6919
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-regexp-test.md
6968
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-regexp-test.md
6920
6969
  */
6921
6970
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
6922
6971
  /**
6923
6972
  * Prefer `Response.json()` over `new Response(JSON.stringify())`.
6924
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-response-static-json.md
6973
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-response-static-json.md
6925
6974
  */
6926
6975
  'unicorn/prefer-response-static-json'?: Linter.RuleEntry<[]>;
6927
6976
  /**
6928
6977
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
6929
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-set-has.md
6978
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-set-has.md
6930
6979
  */
6931
6980
  'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
6932
6981
  /**
6933
6982
  * Prefer using `Set#size` instead of `Array#length`.
6934
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-set-size.md
6983
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-set-size.md
6935
6984
  */
6936
6985
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
6937
6986
  /**
6938
6987
  * Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
6939
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-single-call.md
6988
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-single-call.md
6940
6989
  */
6941
6990
  'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>;
6942
6991
  /**
6943
6992
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
6944
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-spread.md
6993
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-spread.md
6945
6994
  */
6946
6995
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
6947
6996
  /**
6948
6997
  * Prefer using the `String.raw` tag to avoid escaping `\`.
6949
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-raw.md
6998
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-raw.md
6950
6999
  */
6951
7000
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
6952
7001
  /**
6953
7002
  * Prefer `String#replaceAll()` over regex searches with the global flag.
6954
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-replace-all.md
7003
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-replace-all.md
6955
7004
  */
6956
7005
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
6957
7006
  /**
6958
7007
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
6959
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-slice.md
7008
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-slice.md
6960
7009
  */
6961
7010
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
6962
7011
  /**
6963
7012
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
6964
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-starts-ends-with.md
7013
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-starts-ends-with.md
6965
7014
  */
6966
7015
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
6967
7016
  /**
6968
7017
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
6969
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-string-trim-start-end.md
7018
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-string-trim-start-end.md
6970
7019
  */
6971
7020
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
6972
7021
  /**
6973
7022
  * Prefer using `structuredClone` to create a deep clone.
6974
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-structured-clone.md
7023
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-structured-clone.md
6975
7024
  */
6976
7025
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>;
6977
7026
  /**
6978
7027
  * Prefer `switch` over multiple `else-if`.
6979
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-switch.md
7028
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-switch.md
6980
7029
  */
6981
7030
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>;
6982
7031
  /**
6983
7032
  * Prefer ternary expressions over simple `if-else` statements.
6984
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-ternary.md
7033
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-ternary.md
6985
7034
  */
6986
7035
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>;
6987
7036
  /**
6988
7037
  * Prefer top-level await over top-level promises and async function calls.
6989
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-top-level-await.md
7038
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-top-level-await.md
6990
7039
  */
6991
7040
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
6992
7041
  /**
6993
7042
  * Enforce throwing `TypeError` in type checking conditions.
6994
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prefer-type-error.md
7043
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prefer-type-error.md
6995
7044
  */
6996
7045
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
6997
7046
  /**
6998
7047
  * Prevent abbreviations.
6999
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/prevent-abbreviations.md
7048
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/prevent-abbreviations.md
7000
7049
  */
7001
7050
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>;
7002
7051
  /**
7003
7052
  * Enforce consistent relative URL style.
7004
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/relative-url-style.md
7053
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/relative-url-style.md
7005
7054
  */
7006
7055
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
7007
7056
  /**
7008
7057
  * Enforce using the separator argument with `Array#join()`.
7009
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-array-join-separator.md
7058
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-array-join-separator.md
7010
7059
  */
7011
7060
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
7012
7061
  /**
7013
7062
  * Require non-empty module attributes for imports and exports
7014
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-module-attributes.md
7063
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-module-attributes.md
7015
7064
  */
7016
7065
  'unicorn/require-module-attributes'?: Linter.RuleEntry<[]>;
7017
7066
  /**
7018
7067
  * Require non-empty specifier list in import and export statements.
7019
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-module-specifiers.md
7068
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-module-specifiers.md
7020
7069
  */
7021
7070
  'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
7022
7071
  /**
7023
7072
  * Enforce using the digits argument with `Number#toFixed()`.
7024
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-number-to-fixed-digits-argument.md
7073
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-number-to-fixed-digits-argument.md
7025
7074
  */
7026
7075
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
7027
7076
  /**
7028
7077
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
7029
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/require-post-message-target-origin.md
7078
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/require-post-message-target-origin.md
7030
7079
  */
7031
7080
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
7032
7081
  /**
7033
7082
  * Enforce better string content.
7034
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/string-content.md
7083
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/string-content.md
7035
7084
  */
7036
7085
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>;
7037
7086
  /**
7038
7087
  * Enforce consistent brace style for `case` clauses.
7039
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/switch-case-braces.md
7088
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/switch-case-braces.md
7040
7089
  */
7041
7090
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
7042
7091
  /**
7043
7092
  * Fix whitespace-insensitive template indentation.
7044
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/template-indent.md
7093
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/template-indent.md
7045
7094
  */
7046
7095
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>;
7047
7096
  /**
7048
7097
  * Enforce consistent case for text encoding identifiers.
7049
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/text-encoding-identifier-case.md
7098
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/text-encoding-identifier-case.md
7050
7099
  */
7051
7100
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<UnicornTextEncodingIdentifierCase>;
7052
7101
  /**
7053
7102
  * Require `new` when creating an error.
7054
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v62.0.0/docs/rules/throw-new-error.md
7103
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v63.0.0/docs/rules/throw-new-error.md
7055
7104
  */
7056
7105
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
7057
7106
  /**
@@ -8297,7 +8346,7 @@ interface RuleOptions {
8297
8346
  * enforce valid `v-for` directives
8298
8347
  * @see https://eslint.vuejs.org/rules/valid-v-for.html
8299
8348
  */
8300
- 'vue/valid-v-for'?: Linter.RuleEntry<[]>;
8349
+ 'vue/valid-v-for'?: Linter.RuleEntry<VueValidVFor>;
8301
8350
  /**
8302
8351
  * enforce valid `v-html` directives
8303
8352
  * @see https://eslint.vuejs.org/rules/valid-v-html.html
@@ -8701,6 +8750,9 @@ type FormatDprint = [] | [{
8701
8750
  };
8702
8751
  plugins?: unknown[];
8703
8752
  [k: string]: unknown | undefined;
8753
+ }]; // ----- format/oxfmt -----
8754
+ type FormatOxfmt = [] | [{
8755
+ [k: string]: unknown | undefined;
8704
8756
  }]; // ----- format/prettier -----
8705
8757
  type FormatPrettier = [] | [{
8706
8758
  parser: string;
@@ -9282,6 +9334,7 @@ type JsdocTagLines = [] | [("always" | "any" | "never")] | [("always" | "any" |
9282
9334
  endLines?: (number | null);
9283
9335
  maxBlockLines?: (number | null);
9284
9336
  startLines?: (number | null);
9337
+ startLinesWithNoTags?: number;
9285
9338
  tags?: {
9286
9339
  [k: string]: {
9287
9340
  count?: number;
@@ -9492,6 +9545,7 @@ type JsoncObjectCurlyNewline = [] | [((("always" | "never") | {
9492
9545
  type JsoncObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
9493
9546
  arraysInObjects?: boolean;
9494
9547
  objectsInObjects?: boolean;
9548
+ emptyObjects?: ("ignore" | "always" | "never");
9495
9549
  }]; // ----- jsonc/object-property-newline -----
9496
9550
  type JsoncObjectPropertyNewline = [] | [{
9497
9551
  allowAllPropertiesOnSameLine?: boolean;
@@ -10101,6 +10155,7 @@ type MaxParams = [] | [(number | {
10101
10155
  maximum?: number;
10102
10156
  max?: number;
10103
10157
  countVoidThis?: boolean;
10158
+ countThis?: ("never" | "except-void" | "always");
10104
10159
  })]; // ----- max-statements -----
10105
10160
  type MaxStatements = [] | [(number | {
10106
10161
  maximum?: number;
@@ -10658,10 +10713,12 @@ type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
10658
10713
  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")[];
10659
10714
  }]; // ----- node/prefer-global/buffer -----
10660
10715
  type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
10661
- type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/process -----
10716
+ type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
10717
+ type NodePreferGlobalCrypto = [] | [("always" | "never")]; // ----- node/prefer-global/process -----
10662
10718
  type NodePreferGlobalProcess = [] | [("always" | "never")]; // ----- node/prefer-global/text-decoder -----
10663
10719
  type NodePreferGlobalTextDecoder = [] | [("always" | "never")]; // ----- node/prefer-global/text-encoder -----
10664
- type NodePreferGlobalTextEncoder = [] | [("always" | "never")]; // ----- node/prefer-global/url -----
10720
+ type NodePreferGlobalTextEncoder = [] | [("always" | "never")]; // ----- node/prefer-global/timers -----
10721
+ type NodePreferGlobalTimers = [] | [("always" | "never")]; // ----- node/prefer-global/url -----
10665
10722
  type NodePreferGlobalUrl = [] | [("always" | "never")]; // ----- node/prefer-global/url-search-params -----
10666
10723
  type NodePreferGlobalUrlSearchParams = [] | [("always" | "never")]; // ----- node/prefer-node-protocol -----
10667
10724
  type NodePreferNodeProtocol = [] | [{
@@ -13720,15 +13777,24 @@ type StyleCurlyNewline = [] | [(("always" | "never") | {
13720
13777
  consistent?: boolean;
13721
13778
  })]; // ----- style/dot-location -----
13722
13779
  type StyleDotLocation = [] | [("object" | "property")]; // ----- style/eol-last -----
13723
- type StyleEolLast = [] | [("always" | "never" | "unix" | "windows")]; // ----- style/exp-list-style -----
13780
+ type StyleEolLast = [] | [("always" | "never" | "unix" | "windows")]; // ----- style/exp-jsx-props-style -----
13781
+ type StyleExpJsxPropsStyle = [] | [{
13782
+ singleLine?: {
13783
+ maxItems?: number;
13784
+ };
13785
+ multiLine?: {
13786
+ minItems?: number;
13787
+ maxItemsPerLine?: number;
13788
+ };
13789
+ }]; // ----- style/exp-list-style -----
13724
13790
  type StyleExpListStyle = [] | [{
13725
13791
  singleLine?: _StyleExpListStyle_SingleLineConfig;
13726
13792
  multiLine?: _StyleExpListStyle_MultiLineConfig;
13727
13793
  overrides?: {
13794
+ "()"?: _StyleExpListStyle_BaseConfig;
13728
13795
  "[]"?: _StyleExpListStyle_BaseConfig;
13729
13796
  "{}"?: _StyleExpListStyle_BaseConfig;
13730
13797
  "<>"?: _StyleExpListStyle_BaseConfig;
13731
- "()"?: _StyleExpListStyle_BaseConfig;
13732
13798
  ArrayExpression?: _StyleExpListStyle_BaseConfig;
13733
13799
  ArrayPattern?: _StyleExpListStyle_BaseConfig;
13734
13800
  ArrowFunctionExpression?: _StyleExpListStyle_BaseConfig;
@@ -13736,21 +13802,22 @@ type StyleExpListStyle = [] | [{
13736
13802
  ExportNamedDeclaration?: _StyleExpListStyle_BaseConfig;
13737
13803
  FunctionDeclaration?: _StyleExpListStyle_BaseConfig;
13738
13804
  FunctionExpression?: _StyleExpListStyle_BaseConfig;
13739
- ImportDeclaration?: _StyleExpListStyle_BaseConfig;
13805
+ IfStatement?: _StyleExpListStyle_BaseConfig;
13740
13806
  ImportAttributes?: _StyleExpListStyle_BaseConfig;
13807
+ ImportDeclaration?: _StyleExpListStyle_BaseConfig;
13808
+ JSONArrayExpression?: _StyleExpListStyle_BaseConfig;
13809
+ JSONObjectExpression?: _StyleExpListStyle_BaseConfig;
13741
13810
  NewExpression?: _StyleExpListStyle_BaseConfig;
13742
13811
  ObjectExpression?: _StyleExpListStyle_BaseConfig;
13743
13812
  ObjectPattern?: _StyleExpListStyle_BaseConfig;
13744
13813
  TSDeclareFunction?: _StyleExpListStyle_BaseConfig;
13814
+ TSEnumBody?: _StyleExpListStyle_BaseConfig;
13745
13815
  TSFunctionType?: _StyleExpListStyle_BaseConfig;
13746
13816
  TSInterfaceBody?: _StyleExpListStyle_BaseConfig;
13747
- TSEnumBody?: _StyleExpListStyle_BaseConfig;
13748
13817
  TSTupleType?: _StyleExpListStyle_BaseConfig;
13749
13818
  TSTypeLiteral?: _StyleExpListStyle_BaseConfig;
13750
13819
  TSTypeParameterDeclaration?: _StyleExpListStyle_BaseConfig;
13751
13820
  TSTypeParameterInstantiation?: _StyleExpListStyle_BaseConfig;
13752
- JSONArrayExpression?: _StyleExpListStyle_BaseConfig;
13753
- JSONObjectExpression?: _StyleExpListStyle_BaseConfig;
13754
13821
  };
13755
13822
  }];
13756
13823
  interface _StyleExpListStyle_SingleLineConfig {
@@ -14611,13 +14678,17 @@ type StylePaddedBlocks = [] | [(("always" | "never" | "start" | "end") | {
14611
14678
  allowSingleLineBlocks?: boolean;
14612
14679
  }]; // ----- style/padding-line-between-statements -----
14613
14680
  type _StylePaddingLineBetweenStatementsPaddingType = ("any" | "never" | "always");
14614
- type _StylePaddingLineBetweenStatementsStatementOption = (_StylePaddingLineBetweenStatementsStatementType | [_StylePaddingLineBetweenStatementsStatementType, ...(_StylePaddingLineBetweenStatementsStatementType)[]]);
14681
+ type _StylePaddingLineBetweenStatementsStatementOption = (_StylePaddingLineBetweenStatementsStatementMatcher | [_StylePaddingLineBetweenStatementsStatementMatcher, ...(_StylePaddingLineBetweenStatementsStatementMatcher)[]]);
14682
+ type _StylePaddingLineBetweenStatementsStatementMatcher = (_StylePaddingLineBetweenStatementsStatementType | _StylePaddingLineBetweenStatements_SelectorOption);
14615
14683
  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");
14616
14684
  type StylePaddingLineBetweenStatements = {
14617
14685
  blankLine: _StylePaddingLineBetweenStatementsPaddingType;
14618
14686
  prev: _StylePaddingLineBetweenStatementsStatementOption;
14619
14687
  next: _StylePaddingLineBetweenStatementsStatementOption;
14620
- }[]; // ----- style/quote-props -----
14688
+ }[];
14689
+ interface _StylePaddingLineBetweenStatements_SelectorOption {
14690
+ selector: string;
14691
+ } // ----- style/quote-props -----
14621
14692
  type StyleQuoteProps = ([] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
14622
14693
  keywords?: boolean;
14623
14694
  unnecessary?: boolean;
@@ -14830,10 +14901,19 @@ type TomlCommaStyle = [] | [("first" | "last")] | [("first" | "last"), {
14830
14901
  type TomlIndent = [] | [("tab" | number)] | [("tab" | number), {
14831
14902
  subTables?: number;
14832
14903
  keyValuePairs?: number;
14833
- }]; // ----- toml/inline-table-curly-spacing -----
14904
+ }]; // ----- toml/inline-table-curly-newline -----
14905
+ type TomlInlineTableCurlyNewline = [] | [(("always" | "never") | {
14906
+ multiline?: boolean;
14907
+ minProperties?: number;
14908
+ consistent?: boolean;
14909
+ })]; // ----- toml/inline-table-curly-spacing -----
14834
14910
  type TomlInlineTableCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
14835
14911
  arraysInObjects?: boolean;
14836
14912
  objectsInObjects?: boolean;
14913
+ emptyObjects?: ("ignore" | "always" | "never");
14914
+ }]; // ----- toml/inline-table-key-value-newline -----
14915
+ type TomlInlineTableKeyValueNewline = [] | [{
14916
+ allowAllPropertiesOnSameLine?: boolean;
14837
14917
  }]; // ----- toml/key-spacing -----
14838
14918
  type TomlKeySpacing = [] | [({
14839
14919
  align?: (("equal" | "value") | {
@@ -15597,7 +15677,10 @@ type TsNoUseBeforeDefine = [] | [("nofunc" | {
15597
15677
  ignoreTypeReferences?: boolean;
15598
15678
  typedefs?: boolean;
15599
15679
  variables?: boolean;
15600
- })]; // ----- ts/no-var-requires -----
15680
+ })]; // ----- ts/no-useless-default-assignment -----
15681
+ type TsNoUselessDefaultAssignment = [] | [{
15682
+ allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
15683
+ }]; // ----- ts/no-var-requires -----
15601
15684
  type TsNoVarRequires = [] | [{
15602
15685
  allow?: string[];
15603
15686
  }]; // ----- ts/only-throw-error -----
@@ -15844,7 +15927,15 @@ interface _UnicornImportStyle_ModuleStyles {
15844
15927
  }
15845
15928
  interface _UnicornImportStyle_BooleanObject {
15846
15929
  [k: string]: boolean | undefined;
15847
- } // ----- unicorn/no-array-reduce -----
15930
+ } // ----- unicorn/isolated-functions -----
15931
+ type UnicornIsolatedFunctions = [] | [{
15932
+ overrideGlobals?: {
15933
+ [k: string]: (boolean | ("readonly" | "writable" | "writeable" | "off")) | undefined;
15934
+ };
15935
+ functions?: string[];
15936
+ selectors?: string[];
15937
+ comments?: string[];
15938
+ }]; // ----- unicorn/no-array-reduce -----
15848
15939
  type UnicornNoArrayReduce = [] | [{
15849
15940
  allowSimpleOperations?: boolean;
15850
15941
  }]; // ----- unicorn/no-array-reverse -----
@@ -16061,6 +16152,7 @@ type VueAttributesOrder = [] | [{
16061
16152
  order?: (("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT") | ("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT")[])[];
16062
16153
  alphabetical?: boolean;
16063
16154
  sortLineLength?: boolean;
16155
+ ignoreVBindObject?: boolean;
16064
16156
  }]; // ----- vue/block-lang -----
16065
16157
  type VueBlockLang = [] | [{
16066
16158
  [k: string]: {
@@ -16133,7 +16225,7 @@ type VueDefineMacrosOrder = [] | [{
16133
16225
  }]; // ----- vue/define-props-declaration -----
16134
16226
  type VueDefinePropsDeclaration = [] | [("type-based" | "runtime")]; // ----- vue/define-props-destructuring -----
16135
16227
  type VueDefinePropsDestructuring = [] | [{
16136
- destructure?: ("always" | "never");
16228
+ destructure?: ("only-when-assigned" | "always" | "never");
16137
16229
  }]; // ----- vue/dot-location -----
16138
16230
  type VueDotLocation = [] | [("object" | "property")]; // ----- vue/dot-notation -----
16139
16231
  type VueDotNotation = [] | [{
@@ -17069,7 +17161,10 @@ type VueVSlotStyle = [] | [(("shorthand" | "longform") | {
17069
17161
  atComponent?: ("shorthand" | "longform" | "v-slot");
17070
17162
  default?: ("shorthand" | "longform" | "v-slot");
17071
17163
  named?: ("shorthand" | "longform");
17072
- })]; // ----- vue/valid-v-on -----
17164
+ })]; // ----- vue/valid-v-for -----
17165
+ type VueValidVFor = [] | [{
17166
+ allowEmptyAlias?: boolean;
17167
+ }]; // ----- vue/valid-v-on -----
17073
17168
  type VueValidVOn = [] | [{
17074
17169
  modifiers?: unknown[];
17075
17170
  }]; // ----- vue/valid-v-slot -----
@@ -17105,6 +17200,7 @@ type YamlFlowMappingCurlyNewline = [] | [(("always" | "never") | {
17105
17200
  type YamlFlowMappingCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
17106
17201
  arraysInObjects?: boolean;
17107
17202
  objectsInObjects?: boolean;
17203
+ emptyObjects?: ("ignore" | "always" | "never");
17108
17204
  }]; // ----- yaml/flow-sequence-bracket-newline -----
17109
17205
  type YamlFlowSequenceBracketNewline = [] | [(("always" | "never" | "consistent") | {
17110
17206
  multiline?: boolean;
@@ -17275,7 +17371,7 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
17275
17371
  exceptRange?: boolean;
17276
17372
  onlyEquality?: boolean;
17277
17373
  }]; // Names of all the configs
17278
- type ConfigNames = 'luxass/gitignore' | 'luxass/ignores' | 'luxass/javascript/setup' | 'luxass/javascript/rules' | 'luxass/disables/cli' | 'luxass/eslint-comments' | 'command' | 'luxass/perfectionist/setup' | 'luxass/node' | 'luxass/jsdoc/rules' | 'luxass/imports' | 'luxass/unicorn/rules' | 'luxass/jsx/setup' | 'luxass/typescript/setup' | 'luxass/typescript/type-aware-parser' | 'luxass/typescript/parser' | 'luxass/typescript/rules' | 'luxass/typescript/rules-type-aware' | 'luxas/typescript/erasable-syntax-only' | 'luxass/stylistic' | 'luxass/regexp/rules' | 'luxass/test/setup' | 'luxass/test/rules' | 'luxass/react/setup' | 'luxass/react/rules' | 'luxass/react/type-aware-rules' | 'luxass/vue/setup' | 'luxass/vue/rules' | 'luxass/astro/setup' | 'luxass/astro/rules' | 'luxass/unocss' | 'luxass/jsonc/setup' | 'luxass/jsonc/rules' | 'luxass/sort/package-json' | 'luxass/sort/tsconfig' | 'luxass/pnpm/package-json' | 'luxass/pnpm/pnpm-workspace-yaml' | 'luxass/pnpm/pnpm-workspace-yaml-sort' | 'luxass/yaml/setup' | 'luxass/yaml/rules' | 'luxass/yaml/pnpm-workspace' | 'luxass/toml/setup' | 'luxass/toml/rules' | 'luxass/markdown/setup' | 'luxass/markdown/processor' | 'luxass/markdown/parser' | 'luxass/markdown/disables' | 'luxass/formatter/setup' | 'luxass/formatter/css' | 'luxass/formatter/scss' | 'luxass/formatter/less' | 'luxass/formatter/html' | 'luxass/formatter/xml' | 'luxass/formatter/svg' | 'luxass/formatter/markdown' | 'luxass/formatter/astro' | 'luxass/formatter/graphql' | 'luxass/disables/scripts' | 'luxass/disables/cli' | 'luxass/disables/bin' | 'luxass/disables/dts' | 'luxass/disables/cjs' | 'luxass/disables/github-actions' | 'luxass/disables/config-files';
17374
+ type ConfigNames = 'luxass/gitignore' | 'luxass/ignores' | 'luxass/javascript/setup' | 'luxass/javascript/rules' | 'luxass/disables/cli' | 'luxass/eslint-comments' | 'command' | 'luxass/perfectionist/setup' | 'luxass/node/setup' | 'luxass/node/rules' | 'luxass/jsdoc/setup' | 'luxass/jsdoc/rules' | 'luxass/imports' | 'luxass/unicorn/rules' | 'luxass/jsx/setup' | 'luxass/typescript/setup' | 'luxass/typescript/type-aware-parser' | 'luxass/typescript/parser' | 'luxass/typescript/rules' | 'luxass/typescript/rules-type-aware' | 'luxas/typescript/erasable-syntax-only' | 'luxass/stylistic' | 'luxass/regexp/rules' | 'luxass/test/setup' | 'luxass/test/rules' | 'luxass/react/setup' | 'luxass/react/rules' | 'luxass/react/type-aware-rules' | 'luxass/vue/setup' | 'luxass/vue/rules' | 'luxass/astro/setup' | 'luxass/astro/rules' | 'luxass/unocss' | 'luxass/jsonc/setup' | 'luxass/jsonc/rules' | 'luxass/sort/package-json' | 'luxass/sort/tsconfig' | 'luxass/pnpm/package-json' | 'luxass/pnpm/pnpm-workspace-yaml' | 'luxass/pnpm/pnpm-workspace-yaml-sort' | 'luxass/yaml/setup' | 'luxass/yaml/rules' | 'luxass/yaml/pnpm-workspace' | 'luxass/toml/setup' | 'luxass/toml/rules' | 'luxass/markdown/setup' | 'luxass/markdown/processor' | 'luxass/markdown/parser' | 'luxass/markdown/rules' | 'luxass/markdown/disables/markdown' | 'luxass/markdown/disables/code' | 'luxass/formatter/setup' | 'luxass/formatter/css' | 'luxass/formatter/scss' | 'luxass/formatter/less' | 'luxass/formatter/html' | 'luxass/formatter/xml' | 'luxass/formatter/svg' | 'luxass/formatter/markdown' | 'luxass/formatter/astro' | 'luxass/formatter/graphql' | 'luxass/disables/scripts' | 'luxass/disables/cli' | 'luxass/disables/bin' | 'luxass/disables/dts' | 'luxass/disables/cjs' | 'luxass/disables/github-actions' | 'luxass/disables/config-files';
17279
17375
  //#endregion
17280
17376
  //#region src/types.d.ts
17281
17377
  type Awaitable<T> = T | Promise<T>;
@@ -17512,7 +17608,7 @@ interface ConfigOptions {
17512
17608
  * @returns {Promise<TypedFlatConfigItem[]>}
17513
17609
  * The merged ESLint configurations.
17514
17610
  */
17515
- declare function luxass(options?: ConfigOptions & Omit<TypedFlatConfigItem, "files">, ...userConfigs: Awaitable<TypedFlatConfigItem | TypedFlatConfigItem[] | FlatConfigComposer<any, any> | Linter.Config[]>[]): FlatConfigComposer<TypedFlatConfigItem, ConfigNames>;
17611
+ declare function luxass(options?: ConfigOptions & Omit<TypedFlatConfigItem, "files" | "ignores">, ...userConfigs: Awaitable<TypedFlatConfigItem | TypedFlatConfigItem[] | FlatConfigComposer<any, any> | Linter.Config[]>[]): FlatConfigComposer<TypedFlatConfigItem, ConfigNames>;
17516
17612
  //#endregion
17517
17613
  //#region src/globs.d.ts
17518
17614
  declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";