@rotki/eslint-config 3.2.0 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -191,6 +191,11 @@ interface RuleOptions {
191
191
  * @see https://eslint.style/rules/js/computed-property-spacing
192
192
  */
193
193
  '@stylistic/computed-property-spacing'?: Linter.RuleEntry<StylisticComputedPropertySpacing>
194
+ /**
195
+ * Enforce consistent line breaks after opening and before closing braces
196
+ * @see https://eslint.style/rules/plus/curly-newline
197
+ */
198
+ '@stylistic/curly-newline'?: Linter.RuleEntry<StylisticCurlyNewline>
194
199
  /**
195
200
  * Enforce consistent newlines before and after dots
196
201
  * @see https://eslint.style/rules/js/dot-location
@@ -255,7 +260,7 @@ interface RuleOptions {
255
260
  * Enforce closing tag location for multiline JSX
256
261
  * @see https://eslint.style/rules/jsx/jsx-closing-tag-location
257
262
  */
258
- '@stylistic/jsx-closing-tag-location'?: Linter.RuleEntry<[]>
263
+ '@stylistic/jsx-closing-tag-location'?: Linter.RuleEntry<StylisticJsxClosingTagLocation>
259
264
  /**
260
265
  * Disallow unnecessary JSX expressions when literals alone are sufficient or enforce JSX expressions on literals in JSX children or attributes
261
266
  * @see https://eslint.style/rules/jsx/jsx-curly-brace-presence
@@ -3201,7 +3206,7 @@ interface RuleOptions {
3201
3206
  * disallow the use of `process.env`
3202
3207
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-env.md
3203
3208
  */
3204
- 'node/no-process-env'?: Linter.RuleEntry<[]>
3209
+ 'node/no-process-env'?: Linter.RuleEntry<NodeNoProcessEnv>
3205
3210
  /**
3206
3211
  * disallow the use of `process.exit()`
3207
3212
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-exit.md
@@ -4438,6 +4443,11 @@ interface RuleOptions {
4438
4443
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-todo.md
4439
4444
  */
4440
4445
  'test/prefer-todo'?: Linter.RuleEntry<[]>
4446
+ /**
4447
+ * Prefer `vi.mocked()` over `fn as Mock`
4448
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
4449
+ */
4450
+ 'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
4441
4451
  /**
4442
4452
  * require setup and teardown to be within a hook
4443
4453
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
@@ -4480,687 +4490,702 @@ interface RuleOptions {
4480
4490
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
4481
4491
  /**
4482
4492
  * Improve regexes by making them shorter, consistent, and safer.
4483
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/better-regex.md
4493
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/better-regex.md
4484
4494
  */
4485
4495
  'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
4486
4496
  /**
4487
4497
  * Enforce a specific parameter name in catch clauses.
4488
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/catch-error-name.md
4498
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/catch-error-name.md
4489
4499
  */
4490
4500
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
4491
4501
  /**
4492
4502
  * Use destructured variables over properties.
4493
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/consistent-destructuring.md
4503
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-destructuring.md
4494
4504
  */
4495
4505
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
4496
4506
  /**
4497
4507
  * Prefer consistent types when spreading a ternary in an array literal.
4498
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/consistent-empty-array-spread.md
4508
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-empty-array-spread.md
4499
4509
  */
4500
4510
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
4511
+ /**
4512
+ * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
4513
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-existence-index-check.md
4514
+ */
4515
+ 'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
4501
4516
  /**
4502
4517
  * Move function definitions to the highest possible scope.
4503
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/consistent-function-scoping.md
4518
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-function-scoping.md
4504
4519
  */
4505
4520
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
4506
4521
  /**
4507
4522
  * Enforce correct `Error` subclassing.
4508
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/custom-error-definition.md
4523
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/custom-error-definition.md
4509
4524
  */
4510
4525
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
4511
4526
  /**
4512
4527
  * Enforce no spaces between braces.
4513
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/empty-brace-spaces.md
4528
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/empty-brace-spaces.md
4514
4529
  */
4515
4530
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
4516
4531
  /**
4517
4532
  * Enforce passing a `message` value when creating a built-in error.
4518
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/error-message.md
4533
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/error-message.md
4519
4534
  */
4520
4535
  'unicorn/error-message'?: Linter.RuleEntry<[]>
4521
4536
  /**
4522
4537
  * Require escape sequences to use uppercase values.
4523
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/escape-case.md
4538
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/escape-case.md
4524
4539
  */
4525
4540
  'unicorn/escape-case'?: Linter.RuleEntry<[]>
4526
4541
  /**
4527
4542
  * Add expiration conditions to TODO comments.
4528
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/expiring-todo-comments.md
4543
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/expiring-todo-comments.md
4529
4544
  */
4530
4545
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
4531
4546
  /**
4532
4547
  * Enforce explicitly comparing the `length` or `size` property of a value.
4533
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/explicit-length-check.md
4548
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/explicit-length-check.md
4534
4549
  */
4535
4550
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
4536
4551
  /**
4537
4552
  * Enforce a case style for filenames.
4538
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/filename-case.md
4553
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/filename-case.md
4539
4554
  */
4540
4555
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
4541
4556
  /**
4542
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#import-index
4557
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#import-index
4543
4558
  * @deprecated
4544
4559
  */
4545
4560
  'unicorn/import-index'?: Linter.RuleEntry<[]>
4546
4561
  /**
4547
4562
  * Enforce specific import styles per module.
4548
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/import-style.md
4563
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/import-style.md
4549
4564
  */
4550
4565
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
4551
4566
  /**
4552
4567
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
4553
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/new-for-builtins.md
4568
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/new-for-builtins.md
4554
4569
  */
4555
4570
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
4556
4571
  /**
4557
4572
  * Enforce specifying rules to disable in `eslint-disable` comments.
4558
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-abusive-eslint-disable.md
4573
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-abusive-eslint-disable.md
4559
4574
  */
4560
4575
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
4561
4576
  /**
4562
4577
  * Disallow anonymous functions and classes as the default export.
4563
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-anonymous-default-export.md
4578
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-anonymous-default-export.md
4564
4579
  */
4565
4580
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
4566
4581
  /**
4567
4582
  * Prevent passing a function reference directly to iterator methods.
4568
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-array-callback-reference.md
4583
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-callback-reference.md
4569
4584
  */
4570
4585
  'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
4571
4586
  /**
4572
4587
  * Prefer `for…of` over the `forEach` method.
4573
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-array-for-each.md
4588
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-for-each.md
4574
4589
  */
4575
4590
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
4576
4591
  /**
4577
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#no-array-instanceof
4592
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-array-instanceof
4578
4593
  * @deprecated
4579
4594
  */
4580
4595
  'unicorn/no-array-instanceof'?: Linter.RuleEntry<[]>
4581
4596
  /**
4582
4597
  * Disallow using the `this` argument in array methods.
4583
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-array-method-this-argument.md
4598
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-method-this-argument.md
4584
4599
  */
4585
4600
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
4586
4601
  /**
4587
4602
  * Enforce combining multiple `Array#push()` into one call.
4588
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-array-push-push.md
4603
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-push-push.md
4589
4604
  */
4590
4605
  'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
4591
4606
  /**
4592
4607
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
4593
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-array-reduce.md
4608
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-reduce.md
4594
4609
  */
4595
4610
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
4596
4611
  /**
4597
4612
  * Disallow member access from await expression.
4598
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-await-expression-member.md
4613
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-expression-member.md
4599
4614
  */
4600
4615
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
4601
4616
  /**
4602
4617
  * Disallow using `await` in `Promise` method parameters.
4603
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-await-in-promise-methods.md
4618
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-in-promise-methods.md
4604
4619
  */
4605
4620
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
4606
4621
  /**
4607
4622
  * Do not use leading/trailing space between `console.log` parameters.
4608
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-console-spaces.md
4623
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-console-spaces.md
4609
4624
  */
4610
4625
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
4611
4626
  /**
4612
4627
  * Do not use `document.cookie` directly.
4613
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-document-cookie.md
4628
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-document-cookie.md
4614
4629
  */
4615
4630
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
4616
4631
  /**
4617
4632
  * Disallow empty files.
4618
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-empty-file.md
4633
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-empty-file.md
4619
4634
  */
4620
4635
  'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
4621
4636
  /**
4622
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator
4637
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator
4623
4638
  * @deprecated
4624
4639
  */
4625
4640
  'unicorn/no-fn-reference-in-iterator'?: Linter.RuleEntry<[]>
4626
4641
  /**
4627
4642
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
4628
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-for-loop.md
4643
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-for-loop.md
4629
4644
  */
4630
4645
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
4631
4646
  /**
4632
4647
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
4633
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-hex-escape.md
4648
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-hex-escape.md
4634
4649
  */
4635
4650
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
4636
4651
  /**
4637
4652
  * Require `Array.isArray()` instead of `instanceof Array`.
4638
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-instanceof-array.md
4653
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-instanceof-array.md
4639
4654
  */
4640
4655
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
4641
4656
  /**
4642
4657
  * Disallow invalid options in `fetch()` and `new Request()`.
4643
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-invalid-fetch-options.md
4658
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-fetch-options.md
4644
4659
  */
4645
4660
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
4646
4661
  /**
4647
4662
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
4648
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-invalid-remove-event-listener.md
4663
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-remove-event-listener.md
4649
4664
  */
4650
4665
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
4651
4666
  /**
4652
4667
  * Disallow identifiers starting with `new` or `class`.
4653
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-keyword-prefix.md
4668
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-keyword-prefix.md
4654
4669
  */
4655
4670
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
4656
4671
  /**
4657
4672
  * Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
4658
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-length-as-slice-end.md
4673
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-length-as-slice-end.md
4659
4674
  */
4660
4675
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
4661
4676
  /**
4662
4677
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
4663
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-lonely-if.md
4678
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-lonely-if.md
4664
4679
  */
4665
4680
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
4666
4681
  /**
4667
4682
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
4668
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-magic-array-flat-depth.md
4683
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-magic-array-flat-depth.md
4669
4684
  */
4670
4685
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
4671
4686
  /**
4672
4687
  * Disallow negated conditions.
4673
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-negated-condition.md
4688
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negated-condition.md
4674
4689
  */
4675
4690
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
4676
4691
  /**
4677
4692
  * Disallow negated expression in equality check.
4678
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-negation-in-equality-check.md
4693
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negation-in-equality-check.md
4679
4694
  */
4680
4695
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
4681
4696
  /**
4682
4697
  * Disallow nested ternary expressions.
4683
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-nested-ternary.md
4698
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-nested-ternary.md
4684
4699
  */
4685
4700
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
4686
4701
  /**
4687
4702
  * Disallow `new Array()`.
4688
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-new-array.md
4703
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-array.md
4689
4704
  */
4690
4705
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>
4691
4706
  /**
4692
4707
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
4693
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-new-buffer.md
4708
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-buffer.md
4694
4709
  */
4695
4710
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
4696
4711
  /**
4697
4712
  * Disallow the use of the `null` literal.
4698
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-null.md
4713
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-null.md
4699
4714
  */
4700
4715
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
4701
4716
  /**
4702
4717
  * Disallow the use of objects as default parameters.
4703
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-object-as-default-parameter.md
4718
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-object-as-default-parameter.md
4704
4719
  */
4705
4720
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
4706
4721
  /**
4707
4722
  * Disallow `process.exit()`.
4708
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-process-exit.md
4723
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-process-exit.md
4709
4724
  */
4710
4725
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
4711
4726
  /**
4712
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#no-reduce
4727
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-reduce
4713
4728
  * @deprecated
4714
4729
  */
4715
4730
  'unicorn/no-reduce'?: Linter.RuleEntry<[]>
4716
4731
  /**
4717
4732
  * Disallow passing single-element arrays to `Promise` methods.
4718
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-single-promise-in-promise-methods.md
4733
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-single-promise-in-promise-methods.md
4719
4734
  */
4720
4735
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
4721
4736
  /**
4722
4737
  * Disallow classes that only have static members.
4723
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-static-only-class.md
4738
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-static-only-class.md
4724
4739
  */
4725
4740
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
4726
4741
  /**
4727
4742
  * Disallow `then` property.
4728
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-thenable.md
4743
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-thenable.md
4729
4744
  */
4730
4745
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>
4731
4746
  /**
4732
4747
  * Disallow assigning `this` to a variable.
4733
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-this-assignment.md
4748
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-this-assignment.md
4734
4749
  */
4735
4750
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
4736
4751
  /**
4737
4752
  * Disallow comparing `undefined` using `typeof`.
4738
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-typeof-undefined.md
4753
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-typeof-undefined.md
4739
4754
  */
4740
4755
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
4741
4756
  /**
4742
4757
  * Disallow awaiting non-promise values.
4743
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-unnecessary-await.md
4758
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-await.md
4744
4759
  */
4745
4760
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
4746
4761
  /**
4747
4762
  * Enforce the use of built-in methods instead of unnecessary polyfills.
4748
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-unnecessary-polyfills.md
4763
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-polyfills.md
4749
4764
  */
4750
4765
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
4751
4766
  /**
4752
4767
  * Disallow unreadable array destructuring.
4753
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-unreadable-array-destructuring.md
4768
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-array-destructuring.md
4754
4769
  */
4755
4770
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
4756
4771
  /**
4757
4772
  * Disallow unreadable IIFEs.
4758
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-unreadable-iife.md
4773
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-iife.md
4759
4774
  */
4760
4775
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
4761
4776
  /**
4762
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#no-unsafe-regex
4777
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-unsafe-regex
4763
4778
  * @deprecated
4764
4779
  */
4765
4780
  'unicorn/no-unsafe-regex'?: Linter.RuleEntry<[]>
4766
4781
  /**
4767
4782
  * Disallow unused object properties.
4768
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-unused-properties.md
4783
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unused-properties.md
4769
4784
  */
4770
4785
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
4771
4786
  /**
4772
4787
  * Disallow useless fallback when spreading in object literals.
4773
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-useless-fallback-in-spread.md
4788
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-fallback-in-spread.md
4774
4789
  */
4775
4790
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
4776
4791
  /**
4777
4792
  * Disallow useless array length check.
4778
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-useless-length-check.md
4793
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-length-check.md
4779
4794
  */
4780
4795
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
4781
4796
  /**
4782
4797
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
4783
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-useless-promise-resolve-reject.md
4798
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-promise-resolve-reject.md
4784
4799
  */
4785
4800
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
4786
4801
  /**
4787
4802
  * Disallow unnecessary spread.
4788
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-useless-spread.md
4803
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-spread.md
4789
4804
  */
4790
4805
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
4791
4806
  /**
4792
4807
  * Disallow useless case in switch statements.
4793
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-useless-switch-case.md
4808
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-switch-case.md
4794
4809
  */
4795
4810
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
4796
4811
  /**
4797
4812
  * Disallow useless `undefined`.
4798
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-useless-undefined.md
4813
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-undefined.md
4799
4814
  */
4800
4815
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
4801
4816
  /**
4802
4817
  * Disallow number literals with zero fractions or dangling dots.
4803
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/no-zero-fractions.md
4818
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-zero-fractions.md
4804
4819
  */
4805
4820
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
4806
4821
  /**
4807
4822
  * Enforce proper case for numeric literals.
4808
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/number-literal-case.md
4823
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/number-literal-case.md
4809
4824
  */
4810
4825
  'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
4811
4826
  /**
4812
4827
  * Enforce the style of numeric separators by correctly grouping digits.
4813
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/numeric-separators-style.md
4828
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/numeric-separators-style.md
4814
4829
  */
4815
4830
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
4816
4831
  /**
4817
4832
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
4818
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-add-event-listener.md
4833
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-add-event-listener.md
4819
4834
  */
4820
4835
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
4821
4836
  /**
4822
4837
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
4823
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-array-find.md
4838
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-find.md
4824
4839
  */
4825
4840
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
4826
4841
  /**
4827
4842
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
4828
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-array-flat.md
4843
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat.md
4829
4844
  */
4830
4845
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
4831
4846
  /**
4832
4847
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
4833
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-array-flat-map.md
4848
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat-map.md
4834
4849
  */
4835
4850
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
4836
4851
  /**
4837
4852
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
4838
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-array-index-of.md
4853
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-index-of.md
4839
4854
  */
4840
4855
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
4841
4856
  /**
4842
4857
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
4843
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-array-some.md
4858
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-some.md
4844
4859
  */
4845
4860
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
4846
4861
  /**
4847
4862
  * Prefer `.at()` method for index access and `String#charAt()`.
4848
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-at.md
4863
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-at.md
4849
4864
  */
4850
4865
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
4851
4866
  /**
4852
4867
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
4853
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-blob-reading-methods.md
4868
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-blob-reading-methods.md
4854
4869
  */
4855
4870
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
4856
4871
  /**
4857
4872
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
4858
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-code-point.md
4873
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-code-point.md
4859
4874
  */
4860
4875
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
4861
4876
  /**
4862
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-dataset
4877
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-dataset
4863
4878
  * @deprecated
4864
4879
  */
4865
4880
  'unicorn/prefer-dataset'?: Linter.RuleEntry<[]>
4866
4881
  /**
4867
4882
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
4868
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-date-now.md
4883
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-date-now.md
4869
4884
  */
4870
4885
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
4871
4886
  /**
4872
4887
  * Prefer default parameters over reassignment.
4873
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-default-parameters.md
4888
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-default-parameters.md
4874
4889
  */
4875
4890
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
4876
4891
  /**
4877
4892
  * Prefer `Node#append()` over `Node#appendChild()`.
4878
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-dom-node-append.md
4893
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-append.md
4879
4894
  */
4880
4895
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
4881
4896
  /**
4882
4897
  * Prefer using `.dataset` on DOM elements over calling attribute methods.
4883
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-dom-node-dataset.md
4898
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-dataset.md
4884
4899
  */
4885
4900
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
4886
4901
  /**
4887
4902
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
4888
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-dom-node-remove.md
4903
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-remove.md
4889
4904
  */
4890
4905
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
4891
4906
  /**
4892
4907
  * Prefer `.textContent` over `.innerText`.
4893
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-dom-node-text-content.md
4908
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-text-content.md
4894
4909
  */
4895
4910
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
4896
4911
  /**
4897
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-event-key
4912
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-event-key
4898
4913
  * @deprecated
4899
4914
  */
4900
4915
  'unicorn/prefer-event-key'?: Linter.RuleEntry<[]>
4901
4916
  /**
4902
4917
  * Prefer `EventTarget` over `EventEmitter`.
4903
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-event-target.md
4918
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-event-target.md
4904
4919
  */
4905
4920
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
4906
4921
  /**
4907
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator
4922
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator
4908
4923
  * @deprecated
4909
4924
  */
4910
4925
  'unicorn/prefer-exponentiation-operator'?: Linter.RuleEntry<[]>
4911
4926
  /**
4912
4927
  * Prefer `export…from` when re-exporting.
4913
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-export-from.md
4928
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-export-from.md
4914
4929
  */
4915
4930
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
4916
4931
  /**
4917
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-flat-map
4932
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-flat-map
4918
4933
  * @deprecated
4919
4934
  */
4920
4935
  'unicorn/prefer-flat-map'?: Linter.RuleEntry<[]>
4936
+ /**
4937
+ * Prefer `globalThis` over `window`, `self`, and `global`.
4938
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-global-this.md
4939
+ */
4940
+ 'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
4921
4941
  /**
4922
4942
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
4923
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-includes.md
4943
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-includes.md
4924
4944
  */
4925
4945
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
4926
4946
  /**
4927
4947
  * Prefer reading a JSON file as a buffer.
4928
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-json-parse-buffer.md
4948
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-json-parse-buffer.md
4929
4949
  */
4930
4950
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
4931
4951
  /**
4932
4952
  * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
4933
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-keyboard-event-key.md
4953
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-keyboard-event-key.md
4934
4954
  */
4935
4955
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
4936
4956
  /**
4937
4957
  * Prefer using a logical operator over a ternary.
4938
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-logical-operator-over-ternary.md
4958
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-logical-operator-over-ternary.md
4939
4959
  */
4940
4960
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
4961
+ /**
4962
+ * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
4963
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-min-max.md
4964
+ */
4965
+ 'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
4941
4966
  /**
4942
4967
  * Enforce the use of `Math.trunc` instead of bitwise operators.
4943
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-math-trunc.md
4968
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-trunc.md
4944
4969
  */
4945
4970
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
4946
4971
  /**
4947
4972
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
4948
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-modern-dom-apis.md
4973
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-dom-apis.md
4949
4974
  */
4950
4975
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
4951
4976
  /**
4952
4977
  * Prefer modern `Math` APIs over legacy patterns.
4953
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-modern-math-apis.md
4978
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-math-apis.md
4954
4979
  */
4955
4980
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
4956
4981
  /**
4957
4982
  * Prefer JavaScript modules (ESM) over CommonJS.
4958
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-module.md
4983
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-module.md
4959
4984
  */
4960
4985
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>
4961
4986
  /**
4962
4987
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
4963
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-native-coercion-functions.md
4988
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-native-coercion-functions.md
4964
4989
  */
4965
4990
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
4966
4991
  /**
4967
4992
  * Prefer negative index over `.length - index` when possible.
4968
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-negative-index.md
4993
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-negative-index.md
4969
4994
  */
4970
4995
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
4971
4996
  /**
4972
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-node-append
4997
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-append
4973
4998
  * @deprecated
4974
4999
  */
4975
5000
  'unicorn/prefer-node-append'?: Linter.RuleEntry<[]>
4976
5001
  /**
4977
5002
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
4978
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-node-protocol.md
5003
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-node-protocol.md
4979
5004
  */
4980
5005
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
4981
5006
  /**
4982
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-node-remove
5007
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-remove
4983
5008
  * @deprecated
4984
5009
  */
4985
5010
  'unicorn/prefer-node-remove'?: Linter.RuleEntry<[]>
4986
5011
  /**
4987
5012
  * Prefer `Number` static properties over global ones.
4988
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-number-properties.md
5013
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-number-properties.md
4989
5014
  */
4990
5015
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
4991
5016
  /**
4992
5017
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
4993
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-object-from-entries.md
5018
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-object-from-entries.md
4994
5019
  */
4995
5020
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
4996
5021
  /**
4997
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-object-has-own
5022
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-object-has-own
4998
5023
  * @deprecated
4999
5024
  */
5000
5025
  'unicorn/prefer-object-has-own'?: Linter.RuleEntry<[]>
5001
5026
  /**
5002
5027
  * Prefer omitting the `catch` binding parameter.
5003
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-optional-catch-binding.md
5028
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-optional-catch-binding.md
5004
5029
  */
5005
5030
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
5006
5031
  /**
5007
5032
  * Prefer borrowing methods from the prototype instead of the instance.
5008
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-prototype-methods.md
5033
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-prototype-methods.md
5009
5034
  */
5010
5035
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
5011
5036
  /**
5012
- * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()`.
5013
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-query-selector.md
5037
+ * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
5038
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-query-selector.md
5014
5039
  */
5015
5040
  'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
5016
5041
  /**
5017
5042
  * Prefer `Reflect.apply()` over `Function#apply()`.
5018
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-reflect-apply.md
5043
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-reflect-apply.md
5019
5044
  */
5020
5045
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
5021
5046
  /**
5022
5047
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
5023
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-regexp-test.md
5048
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-regexp-test.md
5024
5049
  */
5025
5050
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
5026
5051
  /**
5027
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-replace-all
5052
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-replace-all
5028
5053
  * @deprecated
5029
5054
  */
5030
5055
  'unicorn/prefer-replace-all'?: Linter.RuleEntry<[]>
5031
5056
  /**
5032
5057
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
5033
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-set-has.md
5058
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-has.md
5034
5059
  */
5035
5060
  'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
5036
5061
  /**
5037
5062
  * Prefer using `Set#size` instead of `Array#length`.
5038
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-set-size.md
5063
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-size.md
5039
5064
  */
5040
5065
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
5041
5066
  /**
5042
5067
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
5043
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-spread.md
5068
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-spread.md
5044
5069
  */
5045
5070
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
5046
5071
  /**
5047
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-starts-ends-with
5072
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-starts-ends-with
5048
5073
  * @deprecated
5049
5074
  */
5050
5075
  'unicorn/prefer-starts-ends-with'?: Linter.RuleEntry<[]>
5051
5076
  /**
5052
5077
  * Prefer using the `String.raw` tag to avoid escaping `\`.
5053
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-string-raw.md
5078
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-raw.md
5054
5079
  */
5055
5080
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
5056
5081
  /**
5057
5082
  * Prefer `String#replaceAll()` over regex searches with the global flag.
5058
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-string-replace-all.md
5083
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-replace-all.md
5059
5084
  */
5060
5085
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
5061
5086
  /**
5062
5087
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
5063
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-string-slice.md
5088
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-slice.md
5064
5089
  */
5065
5090
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
5066
5091
  /**
5067
5092
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
5068
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-string-starts-ends-with.md
5093
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-starts-ends-with.md
5069
5094
  */
5070
5095
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
5071
5096
  /**
5072
5097
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
5073
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-string-trim-start-end.md
5098
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-trim-start-end.md
5074
5099
  */
5075
5100
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
5076
5101
  /**
5077
5102
  * Prefer using `structuredClone` to create a deep clone.
5078
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-structured-clone.md
5103
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-structured-clone.md
5079
5104
  */
5080
5105
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
5081
5106
  /**
5082
5107
  * Prefer `switch` over multiple `else-if`.
5083
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-switch.md
5108
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-switch.md
5084
5109
  */
5085
5110
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
5086
5111
  /**
5087
5112
  * Prefer ternary expressions over simple `if-else` statements.
5088
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-ternary.md
5113
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-ternary.md
5089
5114
  */
5090
5115
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
5091
5116
  /**
5092
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-text-content
5117
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-text-content
5093
5118
  * @deprecated
5094
5119
  */
5095
5120
  'unicorn/prefer-text-content'?: Linter.RuleEntry<[]>
5096
5121
  /**
5097
5122
  * Prefer top-level await over top-level promises and async function calls.
5098
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-top-level-await.md
5123
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-top-level-await.md
5099
5124
  */
5100
5125
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
5101
5126
  /**
5102
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#prefer-trim-start-end
5127
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-trim-start-end
5103
5128
  * @deprecated
5104
5129
  */
5105
5130
  'unicorn/prefer-trim-start-end'?: Linter.RuleEntry<[]>
5106
5131
  /**
5107
5132
  * Enforce throwing `TypeError` in type checking conditions.
5108
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prefer-type-error.md
5133
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-type-error.md
5109
5134
  */
5110
5135
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
5111
5136
  /**
5112
5137
  * Prevent abbreviations.
5113
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/prevent-abbreviations.md
5138
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prevent-abbreviations.md
5114
5139
  */
5115
5140
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
5116
5141
  /**
5117
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/deprecated-rules.md#regex-shorthand
5142
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#regex-shorthand
5118
5143
  * @deprecated
5119
5144
  */
5120
5145
  'unicorn/regex-shorthand'?: Linter.RuleEntry<[]>
5121
5146
  /**
5122
5147
  * Enforce consistent relative URL style.
5123
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/relative-url-style.md
5148
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/relative-url-style.md
5124
5149
  */
5125
5150
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
5126
5151
  /**
5127
5152
  * Enforce using the separator argument with `Array#join()`.
5128
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/require-array-join-separator.md
5153
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-array-join-separator.md
5129
5154
  */
5130
5155
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
5131
5156
  /**
5132
5157
  * Enforce using the digits argument with `Number#toFixed()`.
5133
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/require-number-to-fixed-digits-argument.md
5158
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-number-to-fixed-digits-argument.md
5134
5159
  */
5135
5160
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
5136
5161
  /**
5137
5162
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
5138
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/require-post-message-target-origin.md
5163
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-post-message-target-origin.md
5139
5164
  */
5140
5165
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
5141
5166
  /**
5142
5167
  * Enforce better string content.
5143
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/string-content.md
5168
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/string-content.md
5144
5169
  */
5145
5170
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
5146
5171
  /**
5147
5172
  * Enforce consistent brace style for `case` clauses.
5148
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/switch-case-braces.md
5173
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/switch-case-braces.md
5149
5174
  */
5150
5175
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
5151
5176
  /**
5152
5177
  * Fix whitespace-insensitive template indentation.
5153
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/template-indent.md
5178
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/template-indent.md
5154
5179
  */
5155
5180
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
5156
5181
  /**
5157
5182
  * Enforce consistent case for text encoding identifiers.
5158
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/text-encoding-identifier-case.md
5183
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/text-encoding-identifier-case.md
5159
5184
  */
5160
5185
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
5161
5186
  /**
5162
5187
  * Require `new` when creating an error.
5163
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v55.0.0/docs/rules/throw-new-error.md
5188
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/throw-new-error.md
5164
5189
  */
5165
5190
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
5166
5191
  /**
@@ -5524,6 +5549,11 @@ interface RuleOptions {
5524
5549
  * @see https://eslint.vuejs.org/rules/no-deprecated-data-object-declaration.html
5525
5550
  */
5526
5551
  'vue/no-deprecated-data-object-declaration'?: Linter.RuleEntry<[]>
5552
+ /**
5553
+ * disallow using deprecated `$delete` and `$set` (in Vue.js 3.0.0+)
5554
+ * @see https://eslint.vuejs.org/rules/no-deprecated-delete-set.html
5555
+ */
5556
+ 'vue/no-deprecated-delete-set'?: Linter.RuleEntry<[]>
5527
5557
  /**
5528
5558
  * disallow using deprecated `destroyed` and `beforeDestroy` lifecycle hooks (in Vue.js 3.0.0+)
5529
5559
  * @see https://eslint.vuejs.org/rules/no-deprecated-destroyed-lifecycle.html
@@ -6693,6 +6723,127 @@ type StylisticCommaStyle = []|[("first" | "last")]|[("first" | "last"), {
6693
6723
  type StylisticComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
6694
6724
  enforceForClassMembers?: boolean
6695
6725
  }]
6726
+ // ----- @stylistic/curly-newline -----
6727
+ type StylisticCurlyNewline = []|[(("always" | "never") | {
6728
+ IfStatementConsequent?: (("always" | "never") | {
6729
+ multiline?: boolean
6730
+ minElements?: number
6731
+ consistent?: boolean
6732
+ })
6733
+ IfStatementAlternative?: (("always" | "never") | {
6734
+ multiline?: boolean
6735
+ minElements?: number
6736
+ consistent?: boolean
6737
+ })
6738
+ DoWhileStatement?: (("always" | "never") | {
6739
+ multiline?: boolean
6740
+ minElements?: number
6741
+ consistent?: boolean
6742
+ })
6743
+ ForInStatement?: (("always" | "never") | {
6744
+ multiline?: boolean
6745
+ minElements?: number
6746
+ consistent?: boolean
6747
+ })
6748
+ ForOfStatement?: (("always" | "never") | {
6749
+ multiline?: boolean
6750
+ minElements?: number
6751
+ consistent?: boolean
6752
+ })
6753
+ ForStatement?: (("always" | "never") | {
6754
+ multiline?: boolean
6755
+ minElements?: number
6756
+ consistent?: boolean
6757
+ })
6758
+ WhileStatement?: (("always" | "never") | {
6759
+ multiline?: boolean
6760
+ minElements?: number
6761
+ consistent?: boolean
6762
+ })
6763
+ SwitchStatement?: (("always" | "never") | {
6764
+ multiline?: boolean
6765
+ minElements?: number
6766
+ consistent?: boolean
6767
+ })
6768
+ SwitchCase?: (("always" | "never") | {
6769
+ multiline?: boolean
6770
+ minElements?: number
6771
+ consistent?: boolean
6772
+ })
6773
+ TryStatementBlock?: (("always" | "never") | {
6774
+ multiline?: boolean
6775
+ minElements?: number
6776
+ consistent?: boolean
6777
+ })
6778
+ TryStatementHandler?: (("always" | "never") | {
6779
+ multiline?: boolean
6780
+ minElements?: number
6781
+ consistent?: boolean
6782
+ })
6783
+ TryStatementFinalizer?: (("always" | "never") | {
6784
+ multiline?: boolean
6785
+ minElements?: number
6786
+ consistent?: boolean
6787
+ })
6788
+ BlockStatement?: (("always" | "never") | {
6789
+ multiline?: boolean
6790
+ minElements?: number
6791
+ consistent?: boolean
6792
+ })
6793
+ ArrowFunctionExpression?: (("always" | "never") | {
6794
+ multiline?: boolean
6795
+ minElements?: number
6796
+ consistent?: boolean
6797
+ })
6798
+ FunctionDeclaration?: (("always" | "never") | {
6799
+ multiline?: boolean
6800
+ minElements?: number
6801
+ consistent?: boolean
6802
+ })
6803
+ FunctionExpression?: (("always" | "never") | {
6804
+ multiline?: boolean
6805
+ minElements?: number
6806
+ consistent?: boolean
6807
+ })
6808
+ Property?: (("always" | "never") | {
6809
+ multiline?: boolean
6810
+ minElements?: number
6811
+ consistent?: boolean
6812
+ })
6813
+ ClassBody?: (("always" | "never") | {
6814
+ multiline?: boolean
6815
+ minElements?: number
6816
+ consistent?: boolean
6817
+ })
6818
+ StaticBlock?: (("always" | "never") | {
6819
+ multiline?: boolean
6820
+ minElements?: number
6821
+ consistent?: boolean
6822
+ })
6823
+ WithStatement?: (("always" | "never") | {
6824
+ multiline?: boolean
6825
+ minElements?: number
6826
+ consistent?: boolean
6827
+ })
6828
+ TSEnumBody?: (("always" | "never") | {
6829
+ multiline?: boolean
6830
+ minElements?: number
6831
+ consistent?: boolean
6832
+ })
6833
+ TSInterfaceBody?: (("always" | "never") | {
6834
+ multiline?: boolean
6835
+ minElements?: number
6836
+ consistent?: boolean
6837
+ })
6838
+ TSModuleBlock?: (("always" | "never") | {
6839
+ multiline?: boolean
6840
+ minElements?: number
6841
+ consistent?: boolean
6842
+ })
6843
+ multiline?: boolean
6844
+ minElements?: number
6845
+ consistent?: boolean
6846
+ })]
6696
6847
  // ----- @stylistic/dot-location -----
6697
6848
  type StylisticDotLocation = []|[("object" | "property")]
6698
6849
  // ----- @stylistic/eol-last -----
@@ -6772,6 +6923,8 @@ type StylisticJsxClosingBracketLocation = []|[(("after-props" | "props-aligned"
6772
6923
  nonEmpty?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
6773
6924
  selfClosing?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
6774
6925
  })]
6926
+ // ----- @stylistic/jsx-closing-tag-location -----
6927
+ type StylisticJsxClosingTagLocation = []|[("tag-aligned" | "line-aligned")]
6775
6928
  // ----- @stylistic/jsx-curly-brace-presence -----
6776
6929
  type StylisticJsxCurlyBracePresence = []|[({
6777
6930
  props?: ("always" | "never" | "ignore")
@@ -7644,6 +7797,11 @@ type TypescriptEslintArrayType = []|[{
7644
7797
  }]
7645
7798
  // ----- @typescript-eslint/ban-ts-comment -----
7646
7799
  type TypescriptEslintBanTsComment = []|[{
7800
+
7801
+ minimumDescriptionLength?: number
7802
+ "ts-check"?: (boolean | "allow-with-description" | {
7803
+ descriptionFormat?: string
7804
+ })
7647
7805
  "ts-expect-error"?: (boolean | "allow-with-description" | {
7648
7806
  descriptionFormat?: string
7649
7807
  })
@@ -7653,24 +7811,19 @@ type TypescriptEslintBanTsComment = []|[{
7653
7811
  "ts-nocheck"?: (boolean | "allow-with-description" | {
7654
7812
  descriptionFormat?: string
7655
7813
  })
7656
- "ts-check"?: (boolean | "allow-with-description" | {
7657
- descriptionFormat?: string
7658
- })
7659
-
7660
- minimumDescriptionLength?: number
7661
7814
  }]
7662
7815
  // ----- @typescript-eslint/class-literal-property-style -----
7663
7816
  type TypescriptEslintClassLiteralPropertyStyle = []|[("fields" | "getters")]
7664
7817
  // ----- @typescript-eslint/class-methods-use-this -----
7665
7818
  type TypescriptEslintClassMethodsUseThis = []|[{
7666
7819
 
7667
- exceptMethods?: string[]
7668
-
7669
7820
  enforceForClassFields?: boolean
7670
7821
 
7671
- ignoreOverrideMethods?: boolean
7822
+ exceptMethods?: string[]
7672
7823
 
7673
7824
  ignoreClassesThatImplementAnInterface?: (boolean | "public-fields")
7825
+
7826
+ ignoreOverrideMethods?: boolean
7674
7827
  }]
7675
7828
  // ----- @typescript-eslint/consistent-generic-constructors -----
7676
7829
  type TypescriptEslintConsistentGenericConstructors = []|[("type-annotation" | "constructor")]
@@ -7709,6 +7862,8 @@ type TypescriptEslintConsistentTypeImports = []|[{
7709
7862
  // ----- @typescript-eslint/dot-notation -----
7710
7863
  type TypescriptEslintDotNotation = []|[{
7711
7864
 
7865
+ allowIndexSignaturePropertyAccess?: boolean
7866
+
7712
7867
  allowKeywords?: boolean
7713
7868
 
7714
7869
  allowPattern?: string
@@ -7716,40 +7871,38 @@ type TypescriptEslintDotNotation = []|[{
7716
7871
  allowPrivateClassPropertyAccess?: boolean
7717
7872
 
7718
7873
  allowProtectedClassPropertyAccess?: boolean
7719
-
7720
- allowIndexSignaturePropertyAccess?: boolean
7721
7874
  }]
7722
7875
  // ----- @typescript-eslint/explicit-function-return-type -----
7723
7876
  type TypescriptEslintExplicitFunctionReturnType = []|[{
7724
7877
 
7725
7878
  allowConciseArrowFunctionExpressionsStartingWithVoid?: boolean
7726
7879
 
7727
- allowExpressions?: boolean
7728
-
7729
- allowHigherOrderFunctions?: boolean
7880
+ allowDirectConstAssertionInArrowFunctions?: boolean
7730
7881
 
7731
- allowTypedFunctionExpressions?: boolean
7882
+ allowedNames?: string[]
7732
7883
 
7733
- allowDirectConstAssertionInArrowFunctions?: boolean
7884
+ allowExpressions?: boolean
7734
7885
 
7735
7886
  allowFunctionsWithoutTypeParameters?: boolean
7736
7887
 
7737
- allowedNames?: string[]
7888
+ allowHigherOrderFunctions?: boolean
7738
7889
 
7739
7890
  allowIIFEs?: boolean
7891
+
7892
+ allowTypedFunctionExpressions?: boolean
7740
7893
  }]
7741
7894
  // ----- @typescript-eslint/explicit-member-accessibility -----
7742
7895
  type TypescriptEslintExplicitMemberAccessibility = []|[{
7743
7896
  accessibility?: ("explicit" | "no-public" | "off")
7897
+
7898
+ ignoredMethodNames?: string[]
7744
7899
  overrides?: {
7745
7900
  accessors?: ("explicit" | "no-public" | "off")
7746
7901
  constructors?: ("explicit" | "no-public" | "off")
7747
7902
  methods?: ("explicit" | "no-public" | "off")
7748
- properties?: ("explicit" | "no-public" | "off")
7749
7903
  parameterProperties?: ("explicit" | "no-public" | "off")
7904
+ properties?: ("explicit" | "no-public" | "off")
7750
7905
  }
7751
-
7752
- ignoredMethodNames?: string[]
7753
7906
  }]
7754
7907
  // ----- @typescript-eslint/explicit-module-boundary-types -----
7755
7908
  type TypescriptEslintExplicitModuleBoundaryTypes = []|[{
@@ -7771,38 +7924,38 @@ type TypescriptEslintInitDeclarations = ([]|["always"] | []|["never"]|["never",
7771
7924
  // ----- @typescript-eslint/max-params -----
7772
7925
  type TypescriptEslintMaxParams = []|[{
7773
7926
 
7927
+ countVoidThis?: boolean
7928
+
7774
7929
  max?: number
7775
7930
 
7776
7931
  maximum?: number
7777
-
7778
- countVoidThis?: boolean
7779
7932
  }]
7780
7933
  // ----- @typescript-eslint/member-ordering -----
7781
7934
  type TypescriptEslintMemberOrdering = []|[{
7782
- default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
7783
- memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
7784
- order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7785
- optionalityOrder?: ("optional-first" | "required-first")
7786
- })
7787
7935
  classes?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
7788
7936
  memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
7789
- order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7790
7937
  optionalityOrder?: ("optional-first" | "required-first")
7938
+ order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7791
7939
  })
7792
7940
  classExpressions?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
7793
7941
  memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
7942
+ optionalityOrder?: ("optional-first" | "required-first")
7794
7943
  order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7944
+ })
7945
+ default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
7946
+ memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
7795
7947
  optionalityOrder?: ("optional-first" | "required-first")
7948
+ order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7796
7949
  })
7797
7950
  interfaces?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
7798
7951
  memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
7799
- order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7800
7952
  optionalityOrder?: ("optional-first" | "required-first")
7953
+ order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7801
7954
  })
7802
7955
  typeLiterals?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
7803
7956
  memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
7804
- order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7805
7957
  optionalityOrder?: ("optional-first" | "required-first")
7958
+ order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
7806
7959
  })
7807
7960
  }]
7808
7961
  // ----- @typescript-eslint/method-signature-style -----
@@ -7814,310 +7967,310 @@ type _TypescriptEslintNamingConventionUnderscoreOptions = ("forbid" | "allow" |
7814
7967
  type _TypescriptEslintNamingConvention_PrefixSuffixConfig = string[]
7815
7968
  type _TypescriptEslintNamingConventionTypeModifiers = ("boolean" | "string" | "number" | "function" | "array")
7816
7969
  type TypescriptEslintNamingConvention = ({
7817
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7818
7970
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
7971
+ failureMessage?: string
7972
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7819
7973
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7820
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7821
7974
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7822
7975
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7823
- failureMessage?: string
7976
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7824
7977
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7825
- selector: ("default" | "variableLike" | "memberLike" | "typeLike" | "method" | "property" | "accessor" | "variable" | "function" | "parameter" | "parameterProperty" | "classicAccessor" | "enumMember" | "classMethod" | "objectLiteralMethod" | "typeMethod" | "classProperty" | "objectLiteralProperty" | "typeProperty" | "autoAccessor" | "class" | "interface" | "typeAlias" | "enum" | "typeParameter" | "import")[]
7826
7978
  modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
7979
+ selector: ("default" | "variableLike" | "memberLike" | "typeLike" | "method" | "property" | "accessor" | "variable" | "function" | "parameter" | "parameterProperty" | "classicAccessor" | "enumMember" | "classMethod" | "objectLiteralMethod" | "typeMethod" | "classProperty" | "objectLiteralProperty" | "typeProperty" | "autoAccessor" | "class" | "interface" | "typeAlias" | "enum" | "typeParameter" | "import")[]
7827
7980
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
7828
7981
  } | {
7829
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7830
7982
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
7983
+ failureMessage?: string
7984
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7831
7985
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7832
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7833
7986
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7834
7987
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7835
- failureMessage?: string
7988
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7836
7989
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7837
7990
  selector: "default"
7838
7991
  modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
7839
7992
  } | {
7840
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7841
7993
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
7994
+ failureMessage?: string
7995
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7842
7996
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7843
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7844
7997
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7845
7998
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7846
- failureMessage?: string
7999
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7847
8000
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7848
8001
  selector: "variableLike"
7849
8002
  modifiers?: ("unused" | "async")[]
7850
8003
  } | {
7851
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7852
8004
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8005
+ failureMessage?: string
8006
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7853
8007
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7854
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7855
8008
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7856
8009
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7857
- failureMessage?: string
8010
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7858
8011
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7859
8012
  selector: "variable"
7860
8013
  modifiers?: ("const" | "destructured" | "exported" | "global" | "unused" | "async")[]
7861
8014
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
7862
8015
  } | {
7863
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7864
8016
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8017
+ failureMessage?: string
8018
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7865
8019
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7866
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7867
8020
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7868
8021
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7869
- failureMessage?: string
8022
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7870
8023
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7871
8024
  selector: "function"
7872
8025
  modifiers?: ("exported" | "global" | "unused" | "async")[]
7873
8026
  } | {
7874
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7875
8027
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8028
+ failureMessage?: string
8029
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7876
8030
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7877
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7878
8031
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7879
8032
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7880
- failureMessage?: string
8033
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7881
8034
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7882
8035
  selector: "parameter"
7883
8036
  modifiers?: ("destructured" | "unused")[]
7884
8037
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
7885
8038
  } | {
7886
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7887
8039
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8040
+ failureMessage?: string
8041
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7888
8042
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7889
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7890
8043
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7891
8044
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7892
- failureMessage?: string
8045
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7893
8046
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7894
8047
  selector: "memberLike"
7895
8048
  modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
7896
8049
  } | {
7897
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7898
8050
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8051
+ failureMessage?: string
8052
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7899
8053
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7900
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7901
8054
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7902
8055
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7903
- failureMessage?: string
8056
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7904
8057
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7905
8058
  selector: "classProperty"
7906
8059
  modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override")[]
7907
8060
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
7908
8061
  } | {
7909
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7910
8062
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8063
+ failureMessage?: string
8064
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7911
8065
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7912
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7913
8066
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7914
8067
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7915
- failureMessage?: string
8068
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7916
8069
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7917
8070
  selector: "objectLiteralProperty"
7918
8071
  modifiers?: ("public" | "requiresQuotes")[]
7919
8072
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
7920
8073
  } | {
7921
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7922
8074
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8075
+ failureMessage?: string
8076
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7923
8077
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7924
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7925
8078
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7926
8079
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7927
- failureMessage?: string
8080
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7928
8081
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7929
8082
  selector: "typeProperty"
7930
8083
  modifiers?: ("public" | "readonly" | "requiresQuotes")[]
7931
8084
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
7932
8085
  } | {
7933
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7934
8086
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8087
+ failureMessage?: string
8088
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7935
8089
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7936
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7937
8090
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7938
8091
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7939
- failureMessage?: string
8092
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7940
8093
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7941
8094
  selector: "parameterProperty"
7942
8095
  modifiers?: ("private" | "protected" | "public" | "readonly")[]
7943
8096
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
7944
8097
  } | {
7945
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7946
8098
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8099
+ failureMessage?: string
8100
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7947
8101
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7948
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7949
8102
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7950
8103
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7951
- failureMessage?: string
8104
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7952
8105
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7953
8106
  selector: "property"
7954
8107
  modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
7955
8108
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
7956
8109
  } | {
7957
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7958
8110
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8111
+ failureMessage?: string
8112
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7959
8113
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7960
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7961
8114
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7962
8115
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7963
- failureMessage?: string
8116
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7964
8117
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7965
8118
  selector: "classMethod"
7966
8119
  modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
7967
8120
  } | {
7968
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7969
8121
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8122
+ failureMessage?: string
8123
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7970
8124
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7971
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7972
8125
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7973
8126
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7974
- failureMessage?: string
8127
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7975
8128
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7976
8129
  selector: "objectLiteralMethod"
7977
8130
  modifiers?: ("public" | "requiresQuotes" | "async")[]
7978
8131
  } | {
7979
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7980
8132
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8133
+ failureMessage?: string
8134
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7981
8135
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7982
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7983
8136
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7984
8137
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7985
- failureMessage?: string
8138
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7986
8139
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7987
8140
  selector: "typeMethod"
7988
8141
  modifiers?: ("public" | "requiresQuotes")[]
7989
8142
  } | {
7990
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
7991
8143
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8144
+ failureMessage?: string
8145
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
7992
8146
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7993
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7994
8147
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7995
8148
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
7996
- failureMessage?: string
8149
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
7997
8150
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
7998
8151
  selector: "method"
7999
8152
  modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
8000
8153
  } | {
8001
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8002
8154
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8155
+ failureMessage?: string
8156
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8003
8157
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8004
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8005
8158
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8006
8159
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8007
- failureMessage?: string
8160
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8008
8161
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8009
8162
  selector: "classicAccessor"
8010
8163
  modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
8011
8164
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
8012
8165
  } | {
8013
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8014
8166
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8167
+ failureMessage?: string
8168
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8015
8169
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8016
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8017
8170
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8018
8171
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8019
- failureMessage?: string
8172
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8020
8173
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8021
8174
  selector: "autoAccessor"
8022
8175
  modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
8023
8176
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
8024
8177
  } | {
8025
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8026
8178
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8179
+ failureMessage?: string
8180
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8027
8181
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8028
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8029
8182
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8030
8183
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8031
- failureMessage?: string
8184
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8032
8185
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8033
8186
  selector: "accessor"
8034
8187
  modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
8035
8188
  types?: _TypescriptEslintNamingConventionTypeModifiers[]
8036
8189
  } | {
8037
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8038
8190
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8191
+ failureMessage?: string
8192
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8039
8193
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8040
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8041
8194
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8042
8195
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8043
- failureMessage?: string
8196
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8044
8197
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8045
8198
  selector: "enumMember"
8046
8199
  modifiers?: ("requiresQuotes")[]
8047
8200
  } | {
8048
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8049
8201
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8202
+ failureMessage?: string
8203
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8050
8204
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8051
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8052
8205
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8053
8206
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8054
- failureMessage?: string
8207
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8055
8208
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8056
8209
  selector: "typeLike"
8057
8210
  modifiers?: ("abstract" | "exported" | "unused")[]
8058
8211
  } | {
8059
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8060
8212
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8213
+ failureMessage?: string
8214
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8061
8215
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8062
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8063
8216
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8064
8217
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8065
- failureMessage?: string
8218
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8066
8219
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8067
8220
  selector: "class"
8068
8221
  modifiers?: ("abstract" | "exported" | "unused")[]
8069
8222
  } | {
8070
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8071
8223
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8224
+ failureMessage?: string
8225
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8072
8226
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8073
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8074
8227
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8075
8228
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8076
- failureMessage?: string
8229
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8077
8230
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8078
8231
  selector: "interface"
8079
8232
  modifiers?: ("exported" | "unused")[]
8080
8233
  } | {
8081
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8082
8234
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8235
+ failureMessage?: string
8236
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8083
8237
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8084
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8085
8238
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8086
8239
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8087
- failureMessage?: string
8240
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8088
8241
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8089
8242
  selector: "typeAlias"
8090
8243
  modifiers?: ("exported" | "unused")[]
8091
8244
  } | {
8092
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8093
8245
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8246
+ failureMessage?: string
8247
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8094
8248
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8095
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8096
8249
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8097
8250
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8098
- failureMessage?: string
8251
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8099
8252
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8100
8253
  selector: "enum"
8101
8254
  modifiers?: ("exported" | "unused")[]
8102
8255
  } | {
8103
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8104
8256
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8257
+ failureMessage?: string
8258
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8105
8259
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8106
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8107
8260
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8108
8261
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8109
- failureMessage?: string
8262
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8110
8263
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8111
8264
  selector: "typeParameter"
8112
8265
  modifiers?: ("unused")[]
8113
8266
  } | {
8114
- format: _TypescriptEslintNamingConventionFormatOptionsConfig
8115
8267
  custom?: _TypescriptEslintNamingConvention_MatchRegexConfig
8268
+ failureMessage?: string
8269
+ format: _TypescriptEslintNamingConventionFormatOptionsConfig
8116
8270
  leadingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8117
- trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8118
8271
  prefix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8119
8272
  suffix?: _TypescriptEslintNamingConvention_PrefixSuffixConfig
8120
- failureMessage?: string
8273
+ trailingUnderscore?: _TypescriptEslintNamingConventionUnderscoreOptions
8121
8274
  filter?: (string | _TypescriptEslintNamingConvention_MatchRegexConfig)
8122
8275
  selector: "import"
8123
8276
  modifiers?: ("default" | "namespace")[]
@@ -8185,7 +8338,7 @@ type TypescriptEslintNoExtraneousClass = []|[{
8185
8338
  // ----- @typescript-eslint/no-floating-promises -----
8186
8339
  type TypescriptEslintNoFloatingPromises = []|[{
8187
8340
 
8188
- allowForKnownSafePromises?: (string | {
8341
+ allowForKnownSafeCalls?: (string | {
8189
8342
  from: "file"
8190
8343
  name: (string | [string, ...(string)[]])
8191
8344
  path?: string
@@ -8198,7 +8351,7 @@ type TypescriptEslintNoFloatingPromises = []|[{
8198
8351
  package: string
8199
8352
  })[]
8200
8353
 
8201
- allowForKnownSafeCalls?: (string | {
8354
+ allowForKnownSafePromises?: (string | {
8202
8355
  from: "file"
8203
8356
  name: (string | [string, ...(string)[]])
8204
8357
  path?: string
@@ -8213,9 +8366,9 @@ type TypescriptEslintNoFloatingPromises = []|[{
8213
8366
 
8214
8367
  checkThenables?: boolean
8215
8368
 
8216
- ignoreVoid?: boolean
8217
-
8218
8369
  ignoreIIFE?: boolean
8370
+
8371
+ ignoreVoid?: boolean
8219
8372
  }]
8220
8373
  // ----- @typescript-eslint/no-inferrable-types -----
8221
8374
  type TypescriptEslintNoInferrableTypes = []|[{
@@ -8231,9 +8384,9 @@ type TypescriptEslintNoInvalidThis = []|[{
8231
8384
  // ----- @typescript-eslint/no-invalid-void-type -----
8232
8385
  type TypescriptEslintNoInvalidVoidType = []|[{
8233
8386
 
8234
- allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
8235
-
8236
8387
  allowAsThisParameter?: boolean
8388
+
8389
+ allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
8237
8390
  }]
8238
8391
  // ----- @typescript-eslint/no-magic-numbers -----
8239
8392
  type TypescriptEslintNoMagicNumbers = []|[{
@@ -8244,10 +8397,10 @@ type TypescriptEslintNoMagicNumbers = []|[{
8244
8397
  ignoreDefaultValues?: boolean
8245
8398
  ignoreClassFieldInitialValues?: boolean
8246
8399
 
8247
- ignoreNumericLiteralTypes?: boolean
8248
-
8249
8400
  ignoreEnums?: boolean
8250
8401
 
8402
+ ignoreNumericLiteralTypes?: boolean
8403
+
8251
8404
  ignoreReadonlyClassProperties?: boolean
8252
8405
 
8253
8406
  ignoreTypeIndexes?: boolean
@@ -8260,6 +8413,8 @@ type TypescriptEslintNoMeaninglessVoidOperator = []|[{
8260
8413
  // ----- @typescript-eslint/no-misused-promises -----
8261
8414
  type TypescriptEslintNoMisusedPromises = []|[{
8262
8415
  checksConditionals?: boolean
8416
+
8417
+ checksSpreads?: boolean
8263
8418
  checksVoidReturn?: (boolean | {
8264
8419
 
8265
8420
  arguments?: boolean
@@ -8274,8 +8429,6 @@ type TypescriptEslintNoMisusedPromises = []|[{
8274
8429
 
8275
8430
  variables?: boolean
8276
8431
  })
8277
-
8278
- checksSpreads?: boolean
8279
8432
  }]
8280
8433
  // ----- @typescript-eslint/no-namespace -----
8281
8434
  type TypescriptEslintNoNamespace = []|[{
@@ -8336,10 +8489,10 @@ type TypescriptEslintNoRestrictedTypes = []|[{
8336
8489
  types?: {
8337
8490
  [k: string]: (true | string | {
8338
8491
 
8339
- message?: string
8340
-
8341
8492
  fixWith?: string
8342
8493
 
8494
+ message?: string
8495
+
8343
8496
  suggest?: string[]
8344
8497
  }) | undefined
8345
8498
  }
@@ -8347,17 +8500,17 @@ type TypescriptEslintNoRestrictedTypes = []|[{
8347
8500
  // ----- @typescript-eslint/no-shadow -----
8348
8501
  type TypescriptEslintNoShadow = []|[{
8349
8502
 
8503
+ allow?: string[]
8504
+
8350
8505
  builtinGlobals?: boolean
8351
8506
 
8352
8507
  hoist?: ("all" | "functions" | "never")
8353
8508
 
8354
- allow?: string[]
8509
+ ignoreFunctionTypeParameterNameValueShadow?: boolean
8355
8510
 
8356
8511
  ignoreOnInitialization?: boolean
8357
8512
 
8358
8513
  ignoreTypeValueShadow?: boolean
8359
-
8360
- ignoreFunctionTypeParameterNameValueShadow?: boolean
8361
8514
  }]
8362
8515
  // ----- @typescript-eslint/no-this-alias -----
8363
8516
  type TypescriptEslintNoThisAlias = []|[{
@@ -8377,20 +8530,20 @@ type TypescriptEslintNoTypeAlias = []|[{
8377
8530
 
8378
8531
  allowConstructors?: ("always" | "never")
8379
8532
 
8533
+ allowGenerics?: ("always" | "never")
8534
+
8380
8535
  allowLiterals?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
8381
8536
 
8382
8537
  allowMappedTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
8383
8538
 
8384
8539
  allowTupleTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
8385
-
8386
- allowGenerics?: ("always" | "never")
8387
8540
  }]
8388
8541
  // ----- @typescript-eslint/no-unnecessary-boolean-literal-compare -----
8389
8542
  type TypescriptEslintNoUnnecessaryBooleanLiteralCompare = []|[{
8390
8543
 
8391
- allowComparingNullableBooleansToTrue?: boolean
8392
-
8393
8544
  allowComparingNullableBooleansToFalse?: boolean
8545
+
8546
+ allowComparingNullableBooleansToTrue?: boolean
8394
8547
  }]
8395
8548
  // ----- @typescript-eslint/no-unnecessary-condition -----
8396
8549
  type TypescriptEslintNoUnnecessaryCondition = []|[{
@@ -8416,10 +8569,6 @@ type TypescriptEslintNoUnusedExpressions = []|[{
8416
8569
  // ----- @typescript-eslint/no-unused-vars -----
8417
8570
  type TypescriptEslintNoUnusedVars = []|[(("all" | "local") | {
8418
8571
 
8419
- vars?: ("all" | "local")
8420
-
8421
- varsIgnorePattern?: string
8422
-
8423
8572
  args?: ("all" | "after-used" | "none")
8424
8573
 
8425
8574
  argsIgnorePattern?: string
@@ -8435,22 +8584,26 @@ type TypescriptEslintNoUnusedVars = []|[(("all" | "local") | {
8435
8584
  ignoreRestSiblings?: boolean
8436
8585
 
8437
8586
  reportUsedIgnorePattern?: boolean
8587
+
8588
+ vars?: ("all" | "local")
8589
+
8590
+ varsIgnorePattern?: string
8438
8591
  })]
8439
8592
  // ----- @typescript-eslint/no-use-before-define -----
8440
8593
  type TypescriptEslintNoUseBeforeDefine = []|[("nofunc" | {
8441
-
8442
- functions?: boolean
8594
+ allowNamedExports?: boolean
8443
8595
 
8444
8596
  classes?: boolean
8445
8597
 
8446
8598
  enums?: boolean
8447
8599
 
8448
- variables?: boolean
8600
+ functions?: boolean
8601
+
8602
+ ignoreTypeReferences?: boolean
8449
8603
 
8450
8604
  typedefs?: boolean
8451
8605
 
8452
- ignoreTypeReferences?: boolean
8453
- allowNamedExports?: boolean
8606
+ variables?: boolean
8454
8607
  })]
8455
8608
  // ----- @typescript-eslint/no-var-requires -----
8456
8609
  type TypescriptEslintNoVarRequires = []|[{
@@ -8473,11 +8626,11 @@ type TypescriptEslintParameterProperties = []|[{
8473
8626
  }]
8474
8627
  // ----- @typescript-eslint/prefer-destructuring -----
8475
8628
  type TypescriptEslintPreferDestructuring = []|[({
8476
- VariableDeclarator?: {
8629
+ AssignmentExpression?: {
8477
8630
  array?: boolean
8478
8631
  object?: boolean
8479
8632
  }
8480
- AssignmentExpression?: {
8633
+ VariableDeclarator?: {
8481
8634
  array?: boolean
8482
8635
  object?: boolean
8483
8636
  }
@@ -8485,11 +8638,11 @@ type TypescriptEslintPreferDestructuring = []|[({
8485
8638
  array?: boolean
8486
8639
  object?: boolean
8487
8640
  })]|[({
8488
- VariableDeclarator?: {
8641
+ AssignmentExpression?: {
8489
8642
  array?: boolean
8490
8643
  object?: boolean
8491
8644
  }
8492
- AssignmentExpression?: {
8645
+ VariableDeclarator?: {
8493
8646
  array?: boolean
8494
8647
  object?: boolean
8495
8648
  }
@@ -8497,8 +8650,8 @@ type TypescriptEslintPreferDestructuring = []|[({
8497
8650
  array?: boolean
8498
8651
  object?: boolean
8499
8652
  }), {
8500
- enforceForRenamedProperties?: boolean
8501
8653
  enforceForDeclarationWithTypeAnnotation?: boolean
8654
+ enforceForRenamedProperties?: boolean
8502
8655
  [k: string]: unknown | undefined
8503
8656
  }]
8504
8657
  // ----- @typescript-eslint/prefer-literal-enum-member -----
@@ -8528,21 +8681,21 @@ type TypescriptEslintPreferNullishCoalescing = []|[{
8528
8681
  // ----- @typescript-eslint/prefer-optional-chain -----
8529
8682
  type TypescriptEslintPreferOptionalChain = []|[{
8530
8683
 
8684
+ allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
8685
+
8531
8686
  checkAny?: boolean
8532
8687
 
8533
- checkUnknown?: boolean
8688
+ checkBigInt?: boolean
8534
8689
 
8535
- checkString?: boolean
8690
+ checkBoolean?: boolean
8536
8691
 
8537
8692
  checkNumber?: boolean
8538
8693
 
8539
- checkBoolean?: boolean
8694
+ checkString?: boolean
8540
8695
 
8541
- checkBigInt?: boolean
8696
+ checkUnknown?: boolean
8542
8697
 
8543
8698
  requireNullish?: boolean
8544
-
8545
- allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
8546
8699
  }]
8547
8700
  // ----- @typescript-eslint/prefer-promise-reject-errors -----
8548
8701
  type TypescriptEslintPreferPromiseRejectErrors = []|[{
@@ -8651,33 +8804,33 @@ type TypescriptEslintReturnAwait = []|[(("always" | "error-handling-correctness-
8651
8804
  // ----- @typescript-eslint/sort-type-constituents -----
8652
8805
  type TypescriptEslintSortTypeConstituents = []|[{
8653
8806
 
8807
+ caseSensitive?: boolean
8808
+
8654
8809
  checkIntersections?: boolean
8655
8810
 
8656
8811
  checkUnions?: boolean
8657
8812
 
8658
- caseSensitive?: boolean
8659
-
8660
8813
  groupOrder?: ("conditional" | "function" | "import" | "intersection" | "keyword" | "nullish" | "literal" | "named" | "object" | "operator" | "tuple" | "union")[]
8661
8814
  }]
8662
8815
  // ----- @typescript-eslint/strict-boolean-expressions -----
8663
8816
  type TypescriptEslintStrictBooleanExpressions = []|[{
8664
8817
 
8665
- allowString?: boolean
8666
-
8667
- allowNumber?: boolean
8668
-
8669
- allowNullableObject?: boolean
8818
+ allowAny?: boolean
8670
8819
 
8671
8820
  allowNullableBoolean?: boolean
8672
8821
 
8673
- allowNullableString?: boolean
8822
+ allowNullableEnum?: boolean
8674
8823
 
8675
8824
  allowNullableNumber?: boolean
8676
8825
 
8677
- allowNullableEnum?: boolean
8826
+ allowNullableObject?: boolean
8678
8827
 
8679
- allowAny?: boolean
8828
+ allowNullableString?: boolean
8829
+
8830
+ allowNumber?: boolean
8680
8831
  allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
8832
+
8833
+ allowString?: boolean
8681
8834
  }]
8682
8835
  // ----- @typescript-eslint/switch-exhaustiveness-check -----
8683
8836
  type TypescriptEslintSwitchExhaustivenessCheck = []|[{
@@ -8866,6 +9019,7 @@ type CommaStyle = []|[("first" | "last")]|[("first" | "last"), {
8866
9019
  type Complexity = []|[(number | {
8867
9020
  maximum?: number
8868
9021
  max?: number
9022
+ variant?: ("classic" | "modified")
8869
9023
  })]
8870
9024
  // ----- computed-property-spacing -----
8871
9025
  type ComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
@@ -10496,7 +10650,7 @@ type NodeHashbang = []|[{
10496
10650
  // ----- node/no-deprecated-api -----
10497
10651
  type NodeNoDeprecatedApi = []|[{
10498
10652
  version?: string
10499
- ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext")[]
10653
+ ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[]
10500
10654
  ignoreGlobalItems?: ("Buffer()" | "new Buffer()" | "COUNTER_NET_SERVER_CONNECTION" | "COUNTER_NET_SERVER_CONNECTION_CLOSE" | "COUNTER_HTTP_SERVER_REQUEST" | "COUNTER_HTTP_SERVER_RESPONSE" | "COUNTER_HTTP_CLIENT_REQUEST" | "COUNTER_HTTP_CLIENT_RESPONSE" | "GLOBAL" | "Intl.v8BreakIterator" | "require.extensions" | "root" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport")[]
10501
10655
  ignoreIndirectDependencies?: boolean
10502
10656
  }]
@@ -10554,6 +10708,7 @@ type NodeNoMissingImport = []|[{
10554
10708
  allowModules?: string[]
10555
10709
  resolvePaths?: string[]
10556
10710
  tryExtensions?: string[]
10711
+ ignoreTypeImport?: boolean
10557
10712
  tsconfigPath?: string
10558
10713
  typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
10559
10714
  }]
@@ -10570,6 +10725,10 @@ type NodeNoMixedRequires = []|[(boolean | {
10570
10725
  grouping?: boolean
10571
10726
  allowCall?: boolean
10572
10727
  })]
10728
+ // ----- node/no-process-env -----
10729
+ type NodeNoProcessEnv = []|[{
10730
+ allowedVariables?: string[]
10731
+ }]
10573
10732
  // ----- node/no-restricted-import -----
10574
10733
  type NodeNoRestrictedImport = []|[(string | {
10575
10734
  name: (string | string[])
@@ -10664,7 +10823,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
10664
10823
  type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
10665
10824
  version?: string
10666
10825
  allowExperimental?: boolean
10667
- 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" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.createRequire" | "module.createRequireFromPath" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.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" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "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" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "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" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress" | "zlib.BrotliDecompress" | "zlib.Deflate" | "zlib.DeflateRaw" | "zlib.Gunzip" | "zlib.Gzip" | "zlib.Inflate" | "zlib.InflateRaw" | "zlib.Unzip" | "zlib")[]
10826
+ 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" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.loadingFinished" | "inspector.Network.loadingFailed" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "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.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.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" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "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" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
10668
10827
  }]
10669
10828
  // ----- node/prefer-global/buffer -----
10670
10829
  type NodePreferGlobalBuffer = []|[("always" | "never")]
@@ -11808,10 +11967,6 @@ type UnicornTemplateIndent = []|[{
11808
11967
  // ----- unused-imports/no-unused-imports -----
11809
11968
  type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
11810
11969
 
11811
- vars?: ("all" | "local")
11812
-
11813
- varsIgnorePattern?: string
11814
-
11815
11970
  args?: ("all" | "after-used" | "none")
11816
11971
 
11817
11972
  argsIgnorePattern?: string
@@ -11827,13 +11982,13 @@ type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
11827
11982
  ignoreRestSiblings?: boolean
11828
11983
 
11829
11984
  reportUsedIgnorePattern?: boolean
11830
- })]
11831
- // ----- unused-imports/no-unused-vars -----
11832
- type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
11833
11985
 
11834
11986
  vars?: ("all" | "local")
11835
11987
 
11836
11988
  varsIgnorePattern?: string
11989
+ })]
11990
+ // ----- unused-imports/no-unused-vars -----
11991
+ type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
11837
11992
 
11838
11993
  args?: ("all" | "after-used" | "none")
11839
11994
 
@@ -11850,6 +12005,10 @@ type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
11850
12005
  ignoreRestSiblings?: boolean
11851
12006
 
11852
12007
  reportUsedIgnorePattern?: boolean
12008
+
12009
+ vars?: ("all" | "local")
12010
+
12011
+ varsIgnorePattern?: string
11853
12012
  })]
11854
12013
  // ----- use-isnan -----
11855
12014
  type UseIsnan = []|[{