@lichthagel/eslint-config 1.0.33 → 1.0.35

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.cts CHANGED
@@ -3276,6 +3276,11 @@ interface RuleOptions {
3276
3276
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-navigation-without-resolve/
3277
3277
  */
3278
3278
  'svelte/no-navigation-without-resolve'?: Linter.RuleEntry<SvelteNoNavigationWithoutResolve>;
3279
+ /**
3280
+ * disallow `<style>` elements nested inside other elements or blocks
3281
+ * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-nested-style-tag/
3282
+ */
3283
+ 'svelte/no-nested-style-tag'?: Linter.RuleEntry<[]>;
3279
3284
  /**
3280
3285
  * disallow use of not function in event handler
3281
3286
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-not-function-handler/
@@ -3391,6 +3396,11 @@ interface RuleOptions {
3391
3396
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-const/
3392
3397
  */
3393
3398
  'svelte/prefer-const'?: Linter.RuleEntry<SveltePreferConst>;
3399
+ /**
3400
+ * disallow unnecessary `$derived.by()` when `$derived()` is sufficient
3401
+ * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-derived-over-derived-by/
3402
+ */
3403
+ 'svelte/prefer-derived-over-derived-by'?: Linter.RuleEntry<[]>;
3394
3404
  /**
3395
3405
  * destructure values from object stores for better change tracking & fewer redraws
3396
3406
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-destructured-store-props/
@@ -3560,753 +3570,1372 @@ interface RuleOptions {
3560
3570
  */
3561
3571
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>;
3562
3572
  /**
3563
- * Improve regexes by making them shorter, consistent, and safer.
3564
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/better-regex.md
3573
+ * Prefer better DOM traversal APIs.
3574
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/better-dom-traversing.md
3565
3575
  */
3566
- 'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>;
3576
+ 'unicorn/better-dom-traversing'?: Linter.RuleEntry<[]>;
3577
+ /**
3578
+ * Removed. Prefer `eslint-plugin-regexp`
3579
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/deleted-and-deprecated-rules.md#better-regex
3580
+ * @deprecated
3581
+ */
3582
+ 'unicorn/better-regex'?: Linter.RuleEntry<[]>;
3567
3583
  /**
3568
3584
  * Enforce a specific parameter name in catch clauses.
3569
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/catch-error-name.md
3585
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/catch-error-name.md
3570
3586
  */
3571
3587
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>;
3588
+ /**
3589
+ * Enforce consistent class references in static methods.
3590
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/class-reference-in-static-methods.md
3591
+ */
3592
+ 'unicorn/class-reference-in-static-methods'?: Linter.RuleEntry<UnicornClassReferenceInStaticMethods>;
3593
+ /**
3594
+ * Enforce better comment content.
3595
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/comment-content.md
3596
+ */
3597
+ 'unicorn/comment-content'?: Linter.RuleEntry<UnicornCommentContent>;
3572
3598
  /**
3573
3599
  * Enforce consistent assertion style with `node:assert`.
3574
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-assert.md
3600
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-assert.md
3575
3601
  */
3576
3602
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
3603
+ /**
3604
+ * Enforce consistent naming for boolean names.
3605
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-boolean-name.md
3606
+ */
3607
+ 'unicorn/consistent-boolean-name'?: Linter.RuleEntry<UnicornConsistentBooleanName>;
3608
+ /**
3609
+ * Enforce consistent class member order.
3610
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-class-member-order.md
3611
+ */
3612
+ 'unicorn/consistent-class-member-order'?: Linter.RuleEntry<UnicornConsistentClassMemberOrder>;
3613
+ /**
3614
+ * Enforce consistent spelling of compound words in identifiers.
3615
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-compound-words.md
3616
+ */
3617
+ 'unicorn/consistent-compound-words'?: Linter.RuleEntry<UnicornConsistentCompoundWords>;
3577
3618
  /**
3578
3619
  * Prefer passing `Date` directly to the constructor when cloning.
3579
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-date-clone.md
3620
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-date-clone.md
3580
3621
  */
3581
3622
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
3582
3623
  /**
3583
3624
  * Use destructured variables over properties.
3584
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-destructuring.md
3625
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-destructuring.md
3585
3626
  */
3586
3627
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
3587
3628
  /**
3588
3629
  * Prefer consistent types when spreading a ternary in an array literal.
3589
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-empty-array-spread.md
3630
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-empty-array-spread.md
3590
3631
  */
3591
3632
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
3592
3633
  /**
3593
3634
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
3594
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-existence-index-check.md
3635
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-existence-index-check.md
3595
3636
  */
3596
3637
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
3638
+ /**
3639
+ * Enforce consistent decorator position on exported classes.
3640
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-export-decorator-position.md
3641
+ */
3642
+ 'unicorn/consistent-export-decorator-position'?: Linter.RuleEntry<UnicornConsistentExportDecoratorPosition>;
3597
3643
  /**
3598
3644
  * Move function definitions to the highest possible scope.
3599
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-function-scoping.md
3645
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-function-scoping.md
3600
3646
  */
3601
3647
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
3648
+ /**
3649
+ * Enforce function syntax by role.
3650
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-function-style.md
3651
+ */
3652
+ 'unicorn/consistent-function-style'?: Linter.RuleEntry<UnicornConsistentFunctionStyle>;
3653
+ /**
3654
+ * Enforce consistent JSON file reads before `JSON.parse()`.
3655
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-json-file-read.md
3656
+ */
3657
+ 'unicorn/consistent-json-file-read'?: Linter.RuleEntry<UnicornConsistentJsonFileRead>;
3658
+ /**
3659
+ * Enforce consistent optional chaining for same-base member access.
3660
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-optional-chaining.md
3661
+ */
3662
+ 'unicorn/consistent-optional-chaining'?: Linter.RuleEntry<[]>;
3602
3663
  /**
3603
3664
  * Enforce consistent style for escaping `${` in template literals.
3604
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-template-literal-escape.md
3665
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/consistent-template-literal-escape.md
3605
3666
  */
3606
3667
  'unicorn/consistent-template-literal-escape'?: Linter.RuleEntry<[]>;
3607
3668
  /**
3608
3669
  * Enforce correct `Error` subclassing.
3609
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/custom-error-definition.md
3670
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/custom-error-definition.md
3610
3671
  */
3611
3672
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
3673
+ /**
3674
+ * Enforce consistent style for DOM element dataset access.
3675
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/dom-node-dataset.md
3676
+ */
3677
+ 'unicorn/dom-node-dataset'?: Linter.RuleEntry<UnicornDomNodeDataset>;
3612
3678
  /**
3613
3679
  * Enforce no spaces between braces.
3614
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/empty-brace-spaces.md
3680
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/empty-brace-spaces.md
3615
3681
  */
3616
3682
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
3617
3683
  /**
3618
3684
  * Enforce passing a `message` value when creating a built-in error.
3619
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/error-message.md
3685
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/error-message.md
3620
3686
  */
3621
3687
  'unicorn/error-message'?: Linter.RuleEntry<[]>;
3622
3688
  /**
3623
3689
  * Require escape sequences to use uppercase or lowercase values.
3624
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/escape-case.md
3690
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/escape-case.md
3625
3691
  */
3626
3692
  'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>;
3627
3693
  /**
3628
3694
  * Add expiration conditions to TODO comments.
3629
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/expiring-todo-comments.md
3695
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/expiring-todo-comments.md
3630
3696
  */
3631
3697
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>;
3632
3698
  /**
3633
3699
  * Enforce explicitly comparing the `length` or `size` property of a value.
3634
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/explicit-length-check.md
3700
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/explicit-length-check.md
3635
3701
  */
3636
3702
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
3637
3703
  /**
3638
- * Enforce a case style for filenames.
3639
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/filename-case.md
3704
+ * Enforce or disallow explicit `delay` argument for `setTimeout()` and `setInterval()`.
3705
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/explicit-timer-delay.md
3706
+ */
3707
+ 'unicorn/explicit-timer-delay'?: Linter.RuleEntry<UnicornExplicitTimerDelay>;
3708
+ /**
3709
+ * Enforce a case style for filenames and directory names.
3710
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/filename-case.md
3640
3711
  */
3641
3712
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>;
3713
+ /**
3714
+ * Require identifiers to match a specified regular expression.
3715
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/id-match.md
3716
+ */
3717
+ 'unicorn/id-match'?: Linter.RuleEntry<UnicornIdMatch>;
3642
3718
  /**
3643
3719
  * Enforce specific import styles per module.
3644
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/import-style.md
3720
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/import-style.md
3645
3721
  */
3646
3722
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>;
3647
3723
  /**
3648
3724
  * Prevent usage of variables from outside the scope of isolated functions.
3649
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/isolated-functions.md
3725
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/isolated-functions.md
3650
3726
  */
3651
3727
  'unicorn/isolated-functions'?: Linter.RuleEntry<UnicornIsolatedFunctions>;
3728
+ /**
3729
+ * Require or disallow logical assignment operator shorthand
3730
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/logical-assignment-operators.md
3731
+ */
3732
+ 'unicorn/logical-assignment-operators'?: Linter.RuleEntry<UnicornLogicalAssignmentOperators>;
3733
+ /**
3734
+ * Limit the depth of nested calls.
3735
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/max-nested-calls.md
3736
+ */
3737
+ 'unicorn/max-nested-calls'?: Linter.RuleEntry<UnicornMaxNestedCalls>;
3652
3738
  /**
3653
3739
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
3654
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/new-for-builtins.md
3740
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/new-for-builtins.md
3655
3741
  */
3656
3742
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
3657
3743
  /**
3658
3744
  * Enforce specifying rules to disable in `eslint-disable` comments.
3659
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-abusive-eslint-disable.md
3745
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-abusive-eslint-disable.md
3660
3746
  */
3661
3747
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
3662
3748
  /**
3663
3749
  * Disallow recursive access to `this` within getters and setters.
3664
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-accessor-recursion.md
3750
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-accessor-recursion.md
3665
3751
  */
3666
3752
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
3667
3753
  /**
3668
3754
  * Disallow anonymous functions and classes as the default export.
3669
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-anonymous-default-export.md
3755
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-anonymous-default-export.md
3670
3756
  */
3671
3757
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
3672
3758
  /**
3673
3759
  * Prevent passing a function reference directly to iterator methods.
3674
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-callback-reference.md
3760
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-array-callback-reference.md
3675
3761
  */
3676
- 'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
3762
+ 'unicorn/no-array-callback-reference'?: Linter.RuleEntry<UnicornNoArrayCallbackReference>;
3677
3763
  /**
3678
- * Prefer `for…of` over the `forEach` method.
3679
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-for-each.md
3764
+ * Disallow using reference values as `Array#fill()` values.
3765
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-array-fill-with-reference-type.md
3680
3766
  */
3681
- 'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
3767
+ 'unicorn/no-array-fill-with-reference-type'?: Linter.RuleEntry<[]>;
3768
+ /**
3769
+ * Disallow `.fill()` after `Array.from({length: …})`.
3770
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-array-from-fill.md
3771
+ */
3772
+ 'unicorn/no-array-from-fill'?: Linter.RuleEntry<[]>;
3682
3773
  /**
3683
3774
  * Disallow using the `this` argument in array methods.
3684
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-method-this-argument.md
3775
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-array-method-this-argument.md
3685
3776
  */
3686
3777
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
3687
3778
  /**
3688
3779
  * Replaced by `unicorn/prefer-single-call` which covers more cases.
3689
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-array-push-push
3780
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/deleted-and-deprecated-rules.md#no-array-push-push
3690
3781
  * @deprecated
3691
3782
  */
3692
3783
  'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
3693
3784
  /**
3694
3785
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
3695
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-reduce.md
3786
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-array-reduce.md
3696
3787
  */
3697
3788
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>;
3698
3789
  /**
3699
3790
  * Prefer `Array#toReversed()` over `Array#reverse()`.
3700
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-reverse.md
3791
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-array-reverse.md
3701
3792
  */
3702
3793
  'unicorn/no-array-reverse'?: Linter.RuleEntry<UnicornNoArrayReverse>;
3703
3794
  /**
3704
3795
  * Prefer `Array#toSorted()` over `Array#sort()`.
3705
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-sort.md
3796
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-array-sort.md
3706
3797
  */
3707
3798
  'unicorn/no-array-sort'?: Linter.RuleEntry<UnicornNoArraySort>;
3799
+ /**
3800
+ * Prefer `Array#toSpliced()` over `Array#splice()`.
3801
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-array-splice.md
3802
+ */
3803
+ 'unicorn/no-array-splice'?: Linter.RuleEntry<[]>;
3804
+ /**
3805
+ * Disallow asterisk prefixes in documentation comments.
3806
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-asterisk-prefix-in-documentation-comments.md
3807
+ */
3808
+ 'unicorn/no-asterisk-prefix-in-documentation-comments'?: Linter.RuleEntry<[]>;
3708
3809
  /**
3709
3810
  * Disallow member access from await expression.
3710
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-await-expression-member.md
3811
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-await-expression-member.md
3711
3812
  */
3712
3813
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
3713
3814
  /**
3714
3815
  * Disallow using `await` in `Promise` method parameters.
3715
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-await-in-promise-methods.md
3816
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-await-in-promise-methods.md
3716
3817
  */
3717
3818
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
3819
+ /**
3820
+ * Disallow unnecessary `Blob` to `File` conversion.
3821
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-blob-to-file.md
3822
+ */
3823
+ 'unicorn/no-blob-to-file'?: Linter.RuleEntry<[]>;
3824
+ /**
3825
+ * Disallow `break` and `continue` in nested loops and switches inside loops.
3826
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-break-in-nested-loop.md
3827
+ */
3828
+ 'unicorn/no-break-in-nested-loop'?: Linter.RuleEntry<[]>;
3829
+ /**
3830
+ * Prefer drawing canvases directly instead of converting them to images.
3831
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-canvas-to-image.md
3832
+ */
3833
+ 'unicorn/no-canvas-to-image'?: Linter.RuleEntry<[]>;
3834
+ /**
3835
+ * Disallow dynamic object property existence checks.
3836
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-computed-property-existence-check.md
3837
+ */
3838
+ 'unicorn/no-computed-property-existence-check'?: Linter.RuleEntry<[]>;
3839
+ /**
3840
+ * Disallow confusing uses of `Array#{splice,toSpliced}()`.
3841
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-confusing-array-splice.md
3842
+ */
3843
+ 'unicorn/no-confusing-array-splice'?: Linter.RuleEntry<[]>;
3844
+ /**
3845
+ * Disallow confusing uses of `Array#with()`.
3846
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-confusing-array-with.md
3847
+ */
3848
+ 'unicorn/no-confusing-array-with'?: Linter.RuleEntry<[]>;
3718
3849
  /**
3719
3850
  * Do not use leading/trailing space between `console.log` parameters.
3720
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-console-spaces.md
3851
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-console-spaces.md
3721
3852
  */
3722
3853
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
3854
+ /**
3855
+ * Disallow declarations before conditional early exits when they are only used after the exit.
3856
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-declarations-before-early-exit.md
3857
+ */
3858
+ 'unicorn/no-declarations-before-early-exit'?: Linter.RuleEntry<[]>;
3723
3859
  /**
3724
3860
  * Do not use `document.cookie` directly.
3725
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-document-cookie.md
3861
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-document-cookie.md
3726
3862
  */
3727
3863
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
3864
+ /**
3865
+ * Disallow `.map()` and `.filter()` in `for…of` and `for await…of` loop headers.
3866
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-duplicate-loops.md
3867
+ */
3868
+ 'unicorn/no-duplicate-loops'?: Linter.RuleEntry<[]>;
3869
+ /**
3870
+ * Disallow duplicate values in `Set` constructor array literals.
3871
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-duplicate-set-values.md
3872
+ */
3873
+ 'unicorn/no-duplicate-set-values'?: Linter.RuleEntry<[]>;
3728
3874
  /**
3729
3875
  * Disallow empty files.
3730
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-empty-file.md
3876
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-empty-file.md
3731
3877
  */
3732
- 'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
3878
+ 'unicorn/no-empty-file'?: Linter.RuleEntry<UnicornNoEmptyFile>;
3879
+ /**
3880
+ * Disallow assigning to built-in error properties.
3881
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-error-property-assignment.md
3882
+ */
3883
+ 'unicorn/no-error-property-assignment'?: Linter.RuleEntry<[]>;
3884
+ /**
3885
+ * Disallow exports in scripts.
3886
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-exports-in-scripts.md
3887
+ */
3888
+ 'unicorn/no-exports-in-scripts'?: Linter.RuleEntry<[]>;
3889
+ /**
3890
+ * Prefer `for…of` over the `forEach` method.
3891
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-for-each.md
3892
+ */
3893
+ 'unicorn/no-for-each'?: Linter.RuleEntry<[]>;
3733
3894
  /**
3734
3895
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
3735
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-for-loop.md
3896
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-for-loop.md
3736
3897
  */
3737
3898
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
3738
3899
  /**
3739
- * Enforce the use of Unicode escapes instead of hexadecimal escapes.
3740
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-hex-escape.md
3900
+ * Disallow assigning properties on the global object.
3901
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-global-object-property-assignment.md
3902
+ */
3903
+ 'unicorn/no-global-object-property-assignment'?: Linter.RuleEntry<[]>;
3904
+ /**
3905
+ * Replaced by `unicorn/prefer-unicode-code-point-escapes` which covers more cases.
3906
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/deleted-and-deprecated-rules.md#no-hex-escape
3907
+ * @deprecated
3741
3908
  */
3742
3909
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
3743
3910
  /**
3744
3911
  * Disallow immediate mutation after variable assignment.
3745
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-immediate-mutation.md
3912
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-immediate-mutation.md
3746
3913
  */
3747
3914
  'unicorn/no-immediate-mutation'?: Linter.RuleEntry<[]>;
3915
+ /**
3916
+ * Disallow incorrect `querySelector()` and `querySelectorAll()` usage.
3917
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-incorrect-query-selector.md
3918
+ */
3919
+ 'unicorn/no-incorrect-query-selector'?: Linter.RuleEntry<[]>;
3920
+ /**
3921
+ * Disallow incorrect template literal interpolation syntax.
3922
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-incorrect-template-string-interpolation.md
3923
+ */
3924
+ 'unicorn/no-incorrect-template-string-interpolation'?: Linter.RuleEntry<[]>;
3748
3925
  /**
3749
3926
  * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
3750
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-instanceof-array
3927
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/deleted-and-deprecated-rules.md#no-instanceof-array
3751
3928
  * @deprecated
3752
3929
  */
3753
3930
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
3754
3931
  /**
3755
3932
  * Disallow `instanceof` with built-in objects
3756
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-instanceof-builtins.md
3933
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-instanceof-builtins.md
3757
3934
  */
3758
3935
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
3936
+ /**
3937
+ * Disallow calling functions and constructors with an invalid number of arguments.
3938
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-invalid-argument-count.md
3939
+ */
3940
+ 'unicorn/no-invalid-argument-count'?: Linter.RuleEntry<UnicornNoInvalidArgumentCount>;
3759
3941
  /**
3760
3942
  * Disallow invalid options in `fetch()` and `new Request()`.
3761
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-invalid-fetch-options.md
3943
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-invalid-fetch-options.md
3762
3944
  */
3763
3945
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
3946
+ /**
3947
+ * Disallow invalid `accept` values on file inputs.
3948
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-invalid-file-input-accept.md
3949
+ */
3950
+ 'unicorn/no-invalid-file-input-accept'?: Linter.RuleEntry<[]>;
3764
3951
  /**
3765
3952
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
3766
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-invalid-remove-event-listener.md
3953
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-invalid-remove-event-listener.md
3767
3954
  */
3768
3955
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
3769
3956
  /**
3770
3957
  * Disallow identifiers starting with `new` or `class`.
3771
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-keyword-prefix.md
3958
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-keyword-prefix.md
3772
3959
  */
3773
3960
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
3961
+ /**
3962
+ * Disallow accessing `event.currentTarget` after the synchronous event dispatch has finished.
3963
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-late-current-target-access.md
3964
+ */
3965
+ 'unicorn/no-late-current-target-access'?: Linter.RuleEntry<[]>;
3774
3966
  /**
3775
3967
  * Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
3776
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
3968
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
3777
3969
  * @deprecated
3778
3970
  */
3779
3971
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
3780
3972
  /**
3781
3973
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
3782
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-lonely-if.md
3974
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-lonely-if.md
3783
3975
  */
3784
3976
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
3785
3977
  /**
3786
3978
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
3787
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-magic-array-flat-depth.md
3979
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-magic-array-flat-depth.md
3788
3980
  */
3789
3981
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
3982
+ /**
3983
+ * Disallow manually wrapped comments.
3984
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-manually-wrapped-comments.md
3985
+ */
3986
+ 'unicorn/no-manually-wrapped-comments'?: Linter.RuleEntry<[]>;
3987
+ /**
3988
+ * Disallow checking a Map key before accessing a different key.
3989
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-mismatched-map-key.md
3990
+ */
3991
+ 'unicorn/no-mismatched-map-key'?: Linter.RuleEntry<[]>;
3790
3992
  /**
3791
3993
  * Disallow named usage of default import and export.
3792
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-named-default.md
3994
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-named-default.md
3793
3995
  */
3794
3996
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
3997
+ /**
3998
+ * Disallow negated array predicate calls.
3999
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-negated-array-predicate.md
4000
+ */
4001
+ 'unicorn/no-negated-array-predicate'?: Linter.RuleEntry<[]>;
4002
+ /**
4003
+ * Disallow negated comparisons.
4004
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-negated-comparison.md
4005
+ */
4006
+ 'unicorn/no-negated-comparison'?: Linter.RuleEntry<UnicornNoNegatedComparison>;
3795
4007
  /**
3796
4008
  * Disallow negated conditions.
3797
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-negated-condition.md
4009
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-negated-condition.md
3798
4010
  */
3799
4011
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
3800
4012
  /**
3801
4013
  * Disallow negated expression in equality check.
3802
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-negation-in-equality-check.md
4014
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-negation-in-equality-check.md
3803
4015
  */
3804
4016
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
3805
4017
  /**
3806
4018
  * Disallow nested ternary expressions.
3807
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-nested-ternary.md
4019
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-nested-ternary.md
3808
4020
  */
3809
4021
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
3810
4022
  /**
3811
4023
  * Disallow `new Array()`.
3812
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-new-array.md
4024
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-new-array.md
3813
4025
  */
3814
4026
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
3815
4027
  /**
3816
4028
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
3817
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-new-buffer.md
4029
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-new-buffer.md
3818
4030
  */
3819
4031
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
4032
+ /**
4033
+ * Disallow non-function values with function-style verb prefixes.
4034
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-non-function-verb-prefix.md
4035
+ */
4036
+ 'unicorn/no-non-function-verb-prefix'?: Linter.RuleEntry<UnicornNoNonFunctionVerbPrefix>;
3820
4037
  /**
3821
4038
  * Disallow the use of the `null` literal.
3822
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-null.md
4039
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-null.md
3823
4040
  */
3824
4041
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>;
3825
4042
  /**
3826
4043
  * Disallow the use of objects as default parameters.
3827
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-object-as-default-parameter.md
4044
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-object-as-default-parameter.md
3828
4045
  */
3829
4046
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
4047
+ /**
4048
+ * Disallow `Object` methods with `Map` or `Set`.
4049
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-object-methods-with-collections.md
4050
+ */
4051
+ 'unicorn/no-object-methods-with-collections'?: Linter.RuleEntry<[]>;
4052
+ /**
4053
+ * Disallow optional chaining on undeclared variables.
4054
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-optional-chaining-on-undeclared-variable.md
4055
+ */
4056
+ 'unicorn/no-optional-chaining-on-undeclared-variable'?: Linter.RuleEntry<[]>;
3830
4057
  /**
3831
4058
  * Disallow `process.exit()`.
3832
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-process-exit.md
4059
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-process-exit.md
3833
4060
  */
3834
4061
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
4062
+ /**
4063
+ * Disallow comparisons made redundant by an equality check in the same logical AND.
4064
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-redundant-comparison.md
4065
+ */
4066
+ 'unicorn/no-redundant-comparison'?: Linter.RuleEntry<[]>;
4067
+ /**
4068
+ * Disallow using the return value of `Array#push()` and `Array#unshift()`.
4069
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-return-array-push.md
4070
+ */
4071
+ 'unicorn/no-return-array-push'?: Linter.RuleEntry<[]>;
3835
4072
  /**
3836
4073
  * Disallow passing single-element arrays to `Promise` methods.
3837
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-single-promise-in-promise-methods.md
4074
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-single-promise-in-promise-methods.md
3838
4075
  */
3839
4076
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
3840
4077
  /**
3841
4078
  * Disallow classes that only have static members.
3842
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-static-only-class.md
4079
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-static-only-class.md
3843
4080
  */
3844
4081
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
4082
+ /**
4083
+ * Prefer comparing values directly over subtracting and comparing to `0`.
4084
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-subtraction-comparison.md
4085
+ */
4086
+ 'unicorn/no-subtraction-comparison'?: Linter.RuleEntry<[]>;
3845
4087
  /**
3846
4088
  * Disallow `then` property.
3847
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-thenable.md
4089
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-thenable.md
3848
4090
  */
3849
4091
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
3850
4092
  /**
3851
4093
  * Disallow assigning `this` to a variable.
3852
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-this-assignment.md
4094
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-this-assignment.md
3853
4095
  */
3854
4096
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
4097
+ /**
4098
+ * Disallow `this` outside of classes.
4099
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-this-outside-of-class.md
4100
+ */
4101
+ 'unicorn/no-this-outside-of-class'?: Linter.RuleEntry<[]>;
4102
+ /**
4103
+ * Disallow assigning to top-level variables from inside functions.
4104
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-top-level-assignment-in-function.md
4105
+ */
4106
+ 'unicorn/no-top-level-assignment-in-function'?: Linter.RuleEntry<[]>;
4107
+ /**
4108
+ * Disallow top-level side effects in exported modules.
4109
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-top-level-side-effects.md
4110
+ */
4111
+ 'unicorn/no-top-level-side-effects'?: Linter.RuleEntry<[]>;
3855
4112
  /**
3856
4113
  * Disallow comparing `undefined` using `typeof`.
3857
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-typeof-undefined.md
4114
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-typeof-undefined.md
3858
4115
  */
3859
4116
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
4117
+ /**
4118
+ * Disallow referencing methods without calling them.
4119
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-uncalled-method.md
4120
+ */
4121
+ 'unicorn/no-uncalled-method'?: Linter.RuleEntry<[]>;
4122
+ /**
4123
+ * Require class members to be declared.
4124
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-undeclared-class-members.md
4125
+ */
4126
+ 'unicorn/no-undeclared-class-members'?: Linter.RuleEntry<[]>;
3860
4127
  /**
3861
4128
  * Disallow using `1` as the `depth` argument of `Array#flat()`.
3862
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-array-flat-depth.md
4129
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unnecessary-array-flat-depth.md
3863
4130
  */
3864
4131
  'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
3865
4132
  /**
3866
4133
  * Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
3867
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-array-splice-count.md
4134
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unnecessary-array-splice-count.md
3868
4135
  */
3869
4136
  'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
3870
4137
  /**
3871
4138
  * Disallow awaiting non-promise values.
3872
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-await.md
4139
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unnecessary-await.md
3873
4140
  */
3874
4141
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
4142
+ /**
4143
+ * Disallow unnecessary `globalThis` references.
4144
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unnecessary-global-this.md
4145
+ */
4146
+ 'unicorn/no-unnecessary-global-this'?: Linter.RuleEntry<[]>;
4147
+ /**
4148
+ * Disallow unnecessary nested ternary expressions.
4149
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unnecessary-nested-ternary.md
4150
+ */
4151
+ 'unicorn/no-unnecessary-nested-ternary'?: Linter.RuleEntry<[]>;
3875
4152
  /**
3876
4153
  * Enforce the use of built-in methods instead of unnecessary polyfills.
3877
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-polyfills.md
4154
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unnecessary-polyfills.md
3878
4155
  */
3879
4156
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
3880
4157
  /**
3881
4158
  * Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
3882
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-slice-end.md
4159
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unnecessary-slice-end.md
3883
4160
  */
3884
4161
  'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
4162
+ /**
4163
+ * Disallow `Array#splice()` when simpler alternatives exist.
4164
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unnecessary-splice.md
4165
+ */
4166
+ 'unicorn/no-unnecessary-splice'?: Linter.RuleEntry<[]>;
3885
4167
  /**
3886
4168
  * Disallow unreadable array destructuring.
3887
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unreadable-array-destructuring.md
4169
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unreadable-array-destructuring.md
4170
+ */
4171
+ 'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<UnicornNoUnreadableArrayDestructuring>;
4172
+ /**
4173
+ * Disallow unreadable iterable expressions in `for…of` and `for await…of` loop headers.
4174
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unreadable-for-of-expression.md
3888
4175
  */
3889
- 'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
4176
+ 'unicorn/no-unreadable-for-of-expression'?: Linter.RuleEntry<[]>;
3890
4177
  /**
3891
4178
  * Disallow unreadable IIFEs.
3892
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unreadable-iife.md
4179
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unreadable-iife.md
3893
4180
  */
3894
4181
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
4182
+ /**
4183
+ * Disallow unreadable `new` expressions.
4184
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unreadable-new-expression.md
4185
+ */
4186
+ 'unicorn/no-unreadable-new-expression'?: Linter.RuleEntry<[]>;
4187
+ /**
4188
+ * Disallow unreadable object destructuring.
4189
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unreadable-object-destructuring.md
4190
+ */
4191
+ 'unicorn/no-unreadable-object-destructuring'?: Linter.RuleEntry<[]>;
4192
+ /**
4193
+ * Prevent unsafe use of ArrayBuffer view `.buffer`.
4194
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unsafe-buffer-conversion.md
4195
+ */
4196
+ 'unicorn/no-unsafe-buffer-conversion'?: Linter.RuleEntry<[]>;
4197
+ /**
4198
+ * Disallow unsafe DOM HTML APIs.
4199
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unsafe-dom-html.md
4200
+ */
4201
+ 'unicorn/no-unsafe-dom-html'?: Linter.RuleEntry<[]>;
4202
+ /**
4203
+ * Disallow unsafe values as property keys.
4204
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unsafe-property-key.md
4205
+ */
4206
+ 'unicorn/no-unsafe-property-key'?: Linter.RuleEntry<[]>;
4207
+ /**
4208
+ * Disallow non-literal replacement values in `String#replace()` and `String#replaceAll()`.
4209
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unsafe-string-replacement.md
4210
+ */
4211
+ 'unicorn/no-unsafe-string-replacement'?: Linter.RuleEntry<[]>;
4212
+ /**
4213
+ * Disallow ignoring the return value of selected array methods.
4214
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unused-array-method-return.md
4215
+ */
4216
+ 'unicorn/no-unused-array-method-return'?: Linter.RuleEntry<[]>;
3895
4217
  /**
3896
4218
  * Disallow unused object properties.
3897
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unused-properties.md
4219
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-unused-properties.md
3898
4220
  */
3899
4221
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
4222
+ /**
4223
+ * Disallow unnecessary `Boolean()` casts in array predicate callbacks.
4224
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-boolean-cast.md
4225
+ */
4226
+ 'unicorn/no-useless-boolean-cast'?: Linter.RuleEntry<[]>;
4227
+ /**
4228
+ * Disallow useless type coercions of values that are already of the target type.
4229
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-coercion.md
4230
+ */
4231
+ 'unicorn/no-useless-coercion'?: Linter.RuleEntry<[]>;
3900
4232
  /**
3901
4233
  * Disallow useless values or fallbacks in `Set`, `Map`, `WeakSet`, or `WeakMap`.
3902
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-collection-argument.md
4234
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-collection-argument.md
3903
4235
  */
3904
4236
  'unicorn/no-useless-collection-argument'?: Linter.RuleEntry<[]>;
4237
+ /**
4238
+ * Disallow useless concatenation of literals.
4239
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-concat.md
4240
+ */
4241
+ 'unicorn/no-useless-concat'?: Linter.RuleEntry<[]>;
4242
+ /**
4243
+ * Disallow useless `continue` statements.
4244
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-continue.md
4245
+ */
4246
+ 'unicorn/no-useless-continue'?: Linter.RuleEntry<[]>;
4247
+ /**
4248
+ * Disallow `else` after a statement that exits.
4249
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-else.md
4250
+ */
4251
+ 'unicorn/no-useless-else'?: Linter.RuleEntry<[]>;
3905
4252
  /**
3906
4253
  * Disallow unnecessary `Error.captureStackTrace(…)`.
3907
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-error-capture-stack-trace.md
4254
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-error-capture-stack-trace.md
3908
4255
  */
3909
4256
  'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
3910
4257
  /**
3911
4258
  * Disallow useless fallback when spreading in object literals.
3912
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-fallback-in-spread.md
4259
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-fallback-in-spread.md
3913
4260
  */
3914
- 'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
4261
+ 'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<UnicornNoUselessFallbackInSpread>;
3915
4262
  /**
3916
4263
  * Disallow unnecessary `.toArray()` on iterators.
3917
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-iterator-to-array.md
4264
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-iterator-to-array.md
3918
4265
  */
3919
4266
  'unicorn/no-useless-iterator-to-array'?: Linter.RuleEntry<[]>;
3920
4267
  /**
3921
4268
  * Disallow useless array length check.
3922
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-length-check.md
4269
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-length-check.md
3923
4270
  */
3924
4271
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
4272
+ /**
4273
+ * Disallow useless overrides of class methods.
4274
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-override.md
4275
+ */
4276
+ 'unicorn/no-useless-override'?: Linter.RuleEntry<[]>;
3925
4277
  /**
3926
4278
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
3927
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-promise-resolve-reject.md
4279
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-promise-resolve-reject.md
3928
4280
  */
3929
4281
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
4282
+ /**
4283
+ * Disallow simple recursive function calls that can be replaced with a loop.
4284
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-recursion.md
4285
+ */
4286
+ 'unicorn/no-useless-recursion'?: Linter.RuleEntry<[]>;
3930
4287
  /**
3931
4288
  * Disallow unnecessary spread.
3932
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-spread.md
4289
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-spread.md
3933
4290
  */
3934
4291
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
3935
4292
  /**
3936
4293
  * Disallow useless case in switch statements.
3937
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-switch-case.md
4294
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-switch-case.md
3938
4295
  */
3939
4296
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
4297
+ /**
4298
+ * Disallow useless template literal expressions.
4299
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-template-literals.md
4300
+ */
4301
+ 'unicorn/no-useless-template-literals'?: Linter.RuleEntry<[]>;
3940
4302
  /**
3941
4303
  * Disallow useless `undefined`.
3942
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-undefined.md
4304
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-useless-undefined.md
3943
4305
  */
3944
4306
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>;
3945
4307
  /**
3946
4308
  * Disallow number literals with zero fractions or dangling dots.
3947
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-zero-fractions.md
4309
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/no-zero-fractions.md
3948
4310
  */
3949
4311
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
3950
4312
  /**
3951
4313
  * Enforce proper case for numeric literals.
3952
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/number-literal-case.md
4314
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/number-literal-case.md
3953
4315
  */
3954
4316
  'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>;
3955
4317
  /**
3956
4318
  * Enforce the style of numeric separators by correctly grouping digits.
3957
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/numeric-separators-style.md
4319
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/numeric-separators-style.md
3958
4320
  */
3959
4321
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
4322
+ /**
4323
+ * Require assignment operator shorthand where possible.
4324
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/operator-assignment.md
4325
+ */
4326
+ 'unicorn/operator-assignment'?: Linter.RuleEntry<UnicornOperatorAssignment>;
3960
4327
  /**
3961
4328
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
3962
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-add-event-listener.md
4329
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-add-event-listener.md
3963
4330
  */
3964
4331
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>;
4332
+ /**
4333
+ * Prefer an options object over a boolean in `.addEventListener()`.
4334
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-add-event-listener-options.md
4335
+ */
4336
+ 'unicorn/prefer-add-event-listener-options'?: Linter.RuleEntry<[]>;
3965
4337
  /**
3966
4338
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
3967
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-find.md
4339
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-array-find.md
3968
4340
  */
3969
4341
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>;
3970
4342
  /**
3971
4343
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
3972
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-flat.md
4344
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-array-flat.md
3973
4345
  */
3974
4346
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>;
3975
4347
  /**
3976
- * Prefer `.flatMap(…)` over `.map(…).flat()`.
3977
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-flat-map.md
4348
+ * Prefer `.flatMap(…)` over `.map(…).flat()` and `.filter(…).flatMap(…)`.
4349
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-array-flat-map.md
3978
4350
  */
3979
4351
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
4352
+ /**
4353
+ * Prefer using the `Array.from()` mapping function argument.
4354
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-array-from-map.md
4355
+ */
4356
+ 'unicorn/prefer-array-from-map'?: Linter.RuleEntry<[]>;
3980
4357
  /**
3981
4358
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
3982
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-index-of.md
4359
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-array-index-of.md
3983
4360
  */
3984
4361
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
4362
+ /**
4363
+ * Prefer last-oriented array methods over `Array#reverse()` or `Array#toReversed()` followed by a method.
4364
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-array-last-methods.md
4365
+ */
4366
+ 'unicorn/prefer-array-last-methods'?: Linter.RuleEntry<[]>;
4367
+ /**
4368
+ * Prefer `Array#slice()` over `Array#splice()` when reading from the returned array.
4369
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-array-slice.md
4370
+ */
4371
+ 'unicorn/prefer-array-slice'?: Linter.RuleEntry<[]>;
3985
4372
  /**
3986
4373
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
3987
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-some.md
4374
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-array-some.md
3988
4375
  */
3989
4376
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
3990
4377
  /**
3991
4378
  * Prefer `.at()` method for index access and `String#charAt()`.
3992
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-at.md
4379
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-at.md
3993
4380
  */
3994
4381
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>;
4382
+ /**
4383
+ * Prefer `await` over promise chaining.
4384
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-await.md
4385
+ */
4386
+ 'unicorn/prefer-await'?: Linter.RuleEntry<[]>;
3995
4387
  /**
3996
4388
  * Prefer `BigInt` literals over the constructor.
3997
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-bigint-literals.md
4389
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-bigint-literals.md
3998
4390
  */
3999
4391
  'unicorn/prefer-bigint-literals'?: Linter.RuleEntry<[]>;
4000
4392
  /**
4001
4393
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
4002
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-blob-reading-methods.md
4394
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-blob-reading-methods.md
4003
4395
  */
4004
4396
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
4005
4397
  /**
4006
4398
  * Prefer class field declarations over `this` assignments in constructors.
4007
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-class-fields.md
4399
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-class-fields.md
4008
4400
  */
4009
4401
  'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
4010
4402
  /**
4011
4403
  * Prefer using `Element#classList.toggle()` to toggle class names.
4012
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-classlist-toggle.md
4404
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-classlist-toggle.md
4013
4405
  */
4014
4406
  'unicorn/prefer-classlist-toggle'?: Linter.RuleEntry<[]>;
4015
4407
  /**
4016
4408
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
4017
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-code-point.md
4409
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-code-point.md
4018
4410
  */
4019
4411
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
4020
4412
  /**
4021
4413
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
4022
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-date-now.md
4414
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-date-now.md
4023
4415
  */
4024
4416
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
4025
4417
  /**
4026
4418
  * Prefer default parameters over reassignment.
4027
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-default-parameters.md
4419
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-default-parameters.md
4028
4420
  */
4029
4421
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
4030
4422
  /**
4031
- * Prefer `Node#append()` over `Node#appendChild()`.
4032
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-append.md
4423
+ * Prefer direct iteration over default iterator method calls.
4424
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-direct-iteration.md
4425
+ */
4426
+ 'unicorn/prefer-direct-iteration'?: Linter.RuleEntry<[]>;
4427
+ /**
4428
+ * Prefer using `using`/`await using` over manual `try`/`finally` resource disposal.
4429
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-dispose.md
4430
+ */
4431
+ 'unicorn/prefer-dispose'?: Linter.RuleEntry<[]>;
4432
+ /**
4433
+ * Prefer `Element#append()` over `Node#appendChild()`.
4434
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-dom-node-append.md
4033
4435
  */
4034
4436
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
4035
4437
  /**
4036
- * Prefer using `.dataset` on DOM elements over calling attribute methods.
4037
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-dataset.md
4438
+ * Renamed to `unicorn/dom-node-dataset`.
4439
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/deleted-and-deprecated-rules.md#prefer-dom-node-dataset
4440
+ * @deprecated
4038
4441
  */
4039
4442
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
4443
+ /**
4444
+ * Prefer `.getHTML()` and `.setHTML()` over `.innerHTML`.
4445
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-dom-node-html-methods.md
4446
+ */
4447
+ 'unicorn/prefer-dom-node-html-methods'?: Linter.RuleEntry<[]>;
4040
4448
  /**
4041
4449
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
4042
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-remove.md
4450
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-dom-node-remove.md
4043
4451
  */
4044
4452
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
4045
4453
  /**
4046
4454
  * Prefer `.textContent` over `.innerText`.
4047
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-text-content.md
4455
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-dom-node-text-content.md
4048
4456
  */
4049
4457
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
4458
+ /**
4459
+ * Prefer early returns over full-function conditional wrapping.
4460
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-early-return.md
4461
+ */
4462
+ 'unicorn/prefer-early-return'?: Linter.RuleEntry<UnicornPreferEarlyReturn>;
4463
+ /**
4464
+ * Prefer `else if` over adjacent `if` statements with related conditions.
4465
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-else-if.md
4466
+ */
4467
+ 'unicorn/prefer-else-if'?: Linter.RuleEntry<[]>;
4050
4468
  /**
4051
4469
  * Prefer `EventTarget` over `EventEmitter`.
4052
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-event-target.md
4470
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-event-target.md
4053
4471
  */
4054
4472
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
4055
4473
  /**
4056
4474
  * Prefer `export…from` when re-exporting.
4057
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-export-from.md
4475
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-export-from.md
4058
4476
  */
4059
4477
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>;
4478
+ /**
4479
+ * Prefer `.getOrInsertComputed()` when the default value has side effects.
4480
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-get-or-insert-computed.md
4481
+ */
4482
+ 'unicorn/prefer-get-or-insert-computed'?: Linter.RuleEntry<[]>;
4483
+ /**
4484
+ * Prefer global numeric constants over `Number` static properties.
4485
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-global-number-constants.md
4486
+ */
4487
+ 'unicorn/prefer-global-number-constants'?: Linter.RuleEntry<[]>;
4060
4488
  /**
4061
4489
  * Prefer `globalThis` over `window`, `self`, and `global`.
4062
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-global-this.md
4490
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-global-this.md
4063
4491
  */
4064
4492
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
4493
+ /**
4494
+ * Prefer `.has()` when checking existence.
4495
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-has-check.md
4496
+ */
4497
+ 'unicorn/prefer-has-check'?: Linter.RuleEntry<[]>;
4498
+ /**
4499
+ * Prefer HTTPS over HTTP.
4500
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-https.md
4501
+ */
4502
+ 'unicorn/prefer-https'?: Linter.RuleEntry<[]>;
4503
+ /**
4504
+ * Prefer identifiers over string literals in import and export specifiers.
4505
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-identifier-import-export-specifiers.md
4506
+ */
4507
+ 'unicorn/prefer-identifier-import-export-specifiers'?: Linter.RuleEntry<[]>;
4065
4508
  /**
4066
4509
  * Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
4067
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-import-meta-properties.md
4510
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-import-meta-properties.md
4068
4511
  */
4069
4512
  'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
4070
4513
  /**
4071
4514
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
4072
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-includes.md
4515
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-includes.md
4073
4516
  */
4074
4517
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
4075
4518
  /**
4076
- * Prefer reading a JSON file as a buffer.
4077
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-json-parse-buffer.md
4519
+ * Prefer `.includes()` over repeated equality comparisons.
4520
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-includes-over-repeated-comparisons.md
4521
+ */
4522
+ 'unicorn/prefer-includes-over-repeated-comparisons'?: Linter.RuleEntry<UnicornPreferIncludesOverRepeatedComparisons>;
4523
+ /**
4524
+ * Prefer passing iterables directly to constructors instead of filling empty collections.
4525
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-iterable-in-constructor.md
4526
+ */
4527
+ 'unicorn/prefer-iterable-in-constructor'?: Linter.RuleEntry<[]>;
4528
+ /**
4529
+ * Prefer `Iterator.concat(…)` over temporary spread arrays.
4530
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-iterator-concat.md
4531
+ */
4532
+ 'unicorn/prefer-iterator-concat'?: Linter.RuleEntry<[]>;
4533
+ /**
4534
+ * Prefer `Iterator#toArray()` over temporary arrays from iterator spreads.
4535
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-iterator-to-array.md
4536
+ */
4537
+ 'unicorn/prefer-iterator-to-array'?: Linter.RuleEntry<[]>;
4538
+ /**
4539
+ * Prefer moving `.toArray()` to the end of iterator helper chains.
4540
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-iterator-to-array-at-end.md
4541
+ */
4542
+ 'unicorn/prefer-iterator-to-array-at-end'?: Linter.RuleEntry<[]>;
4543
+ /**
4544
+ * Renamed to `unicorn/consistent-json-file-read`.
4545
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/deleted-and-deprecated-rules.md#prefer-json-parse-buffer
4546
+ * @deprecated
4078
4547
  */
4079
4548
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
4080
4549
  /**
4081
- * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
4082
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-keyboard-event-key.md
4550
+ * Prefer `KeyboardEvent#key` over deprecated keyboard event properties.
4551
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-keyboard-event-key.md
4083
4552
  */
4084
4553
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
4554
+ /**
4555
+ * Prefer `location.assign()` over assigning to `location.href`.
4556
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-location-assign.md
4557
+ */
4558
+ 'unicorn/prefer-location-assign'?: Linter.RuleEntry<[]>;
4085
4559
  /**
4086
4560
  * Prefer using a logical operator over a ternary.
4087
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-logical-operator-over-ternary.md
4561
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-logical-operator-over-ternary.md
4088
4562
  */
4089
4563
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
4564
+ /**
4565
+ * Prefer `new Map()` over `Object.fromEntries()` when using the result as a map.
4566
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-map-from-entries.md
4567
+ */
4568
+ 'unicorn/prefer-map-from-entries'?: Linter.RuleEntry<[]>;
4569
+ /**
4570
+ * Prefer `Math.abs()` over manual absolute value expressions and symmetric range checks.
4571
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-math-abs.md
4572
+ */
4573
+ 'unicorn/prefer-math-abs'?: Linter.RuleEntry<[]>;
4090
4574
  /**
4091
4575
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
4092
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-math-min-max.md
4576
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-math-min-max.md
4093
4577
  */
4094
4578
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
4095
4579
  /**
4096
- * Enforce the use of `Math.trunc` instead of bitwise operators.
4097
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-math-trunc.md
4580
+ * Prefer `Math.trunc()` for truncating numbers.
4581
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-math-trunc.md
4098
4582
  */
4099
4583
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
4100
4584
  /**
4101
- * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
4102
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-modern-dom-apis.md
4585
+ * Prefer moving ternaries into the minimal varying part of an expression.
4586
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-minimal-ternary.md
4587
+ */
4588
+ 'unicorn/prefer-minimal-ternary'?: Linter.RuleEntry<UnicornPreferMinimalTernary>;
4589
+ /**
4590
+ * Prefer modern DOM APIs.
4591
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-modern-dom-apis.md
4103
4592
  */
4104
4593
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
4105
4594
  /**
4106
4595
  * Prefer modern `Math` APIs over legacy patterns.
4107
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-modern-math-apis.md
4596
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-modern-math-apis.md
4108
4597
  */
4109
4598
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
4110
4599
  /**
4111
4600
  * Prefer JavaScript modules (ESM) over CommonJS.
4112
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-module.md
4601
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-module.md
4113
4602
  */
4114
4603
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
4115
4604
  /**
4116
4605
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
4117
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-native-coercion-functions.md
4606
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-native-coercion-functions.md
4118
4607
  */
4119
4608
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
4120
4609
  /**
4121
4610
  * Prefer negative index over `.length - index` when possible.
4122
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-negative-index.md
4611
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-negative-index.md
4123
4612
  */
4124
4613
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
4125
4614
  /**
4126
4615
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
4127
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-node-protocol.md
4616
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-node-protocol.md
4128
4617
  */
4129
4618
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
4130
4619
  /**
4131
- * Prefer `Number` static properties over global ones.
4132
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-number-properties.md
4620
+ * Prefer `Number()` over `parseFloat()` and base-10 `parseInt()`.
4621
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-number-coercion.md
4622
+ */
4623
+ 'unicorn/prefer-number-coercion'?: Linter.RuleEntry<[]>;
4624
+ /**
4625
+ * Prefer `Number.isSafeInteger()` over integer checks.
4626
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-number-is-safe-integer.md
4627
+ */
4628
+ 'unicorn/prefer-number-is-safe-integer'?: Linter.RuleEntry<[]>;
4629
+ /**
4630
+ * Prefer `Number` static methods over global functions and optionally static properties over global constants.
4631
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-number-properties.md
4133
4632
  */
4134
4633
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>;
4634
+ /**
4635
+ * Prefer `Object.defineProperties()` over multiple `Object.defineProperty()` calls.
4636
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-object-define-properties.md
4637
+ */
4638
+ 'unicorn/prefer-object-define-properties'?: Linter.RuleEntry<[]>;
4639
+ /**
4640
+ * Prefer object destructuring defaults over default object literals with spread.
4641
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-object-destructuring-defaults.md
4642
+ */
4643
+ 'unicorn/prefer-object-destructuring-defaults'?: Linter.RuleEntry<[]>;
4135
4644
  /**
4136
4645
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
4137
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-object-from-entries.md
4646
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-object-from-entries.md
4138
4647
  */
4139
4648
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
4649
+ /**
4650
+ * Prefer the most specific `Object` iterable method.
4651
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-object-iterable-methods.md
4652
+ */
4653
+ 'unicorn/prefer-object-iterable-methods'?: Linter.RuleEntry<[]>;
4140
4654
  /**
4141
4655
  * Prefer omitting the `catch` binding parameter.
4142
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-optional-catch-binding.md
4656
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-optional-catch-binding.md
4143
4657
  */
4144
4658
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
4659
+ /**
4660
+ * Prefer `Path2D` for repeatedly drawn canvas paths.
4661
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-path2d.md
4662
+ */
4663
+ 'unicorn/prefer-path2d'?: Linter.RuleEntry<[]>;
4664
+ /**
4665
+ * Prefer private class fields over the underscore-prefix convention.
4666
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-private-class-fields.md
4667
+ */
4668
+ 'unicorn/prefer-private-class-fields'?: Linter.RuleEntry<[]>;
4145
4669
  /**
4146
4670
  * Prefer borrowing methods from the prototype instead of the instance.
4147
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-prototype-methods.md
4671
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-prototype-methods.md
4148
4672
  */
4149
4673
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
4150
4674
  /**
4151
- * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
4152
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-query-selector.md
4675
+ * Prefer `.querySelector()` and `.querySelectorAll()` over older DOM query methods.
4676
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-query-selector.md
4153
4677
  */
4154
- 'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
4678
+ 'unicorn/prefer-query-selector'?: Linter.RuleEntry<UnicornPreferQuerySelector>;
4679
+ /**
4680
+ * Prefer `queueMicrotask()` over `process.nextTick()`, `setImmediate()`, and `setTimeout(…, 0)`.
4681
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-queue-microtask.md
4682
+ */
4683
+ 'unicorn/prefer-queue-microtask'?: Linter.RuleEntry<UnicornPreferQueueMicrotask>;
4155
4684
  /**
4156
4685
  * Prefer `Reflect.apply()` over `Function#apply()`.
4157
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-reflect-apply.md
4686
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-reflect-apply.md
4158
4687
  */
4159
4688
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
4160
4689
  /**
4161
- * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
4162
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-regexp-test.md
4690
+ * Prefer `RegExp#test()` over `String#match()`, `String#search()`, and `RegExp#exec()`.
4691
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-regexp-test.md
4163
4692
  */
4164
4693
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
4165
4694
  /**
4166
4695
  * Prefer `Response.json()` over `new Response(JSON.stringify())`.
4167
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-response-static-json.md
4696
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-response-static-json.md
4168
4697
  */
4169
4698
  'unicorn/prefer-response-static-json'?: Linter.RuleEntry<[]>;
4699
+ /**
4700
+ * Prefer `:scope` when using element query selector methods.
4701
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-scoped-selector.md
4702
+ */
4703
+ 'unicorn/prefer-scoped-selector'?: Linter.RuleEntry<[]>;
4170
4704
  /**
4171
4705
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
4172
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-set-has.md
4706
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-set-has.md
4173
4707
  */
4174
- 'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
4708
+ 'unicorn/prefer-set-has'?: Linter.RuleEntry<UnicornPreferSetHas>;
4175
4709
  /**
4176
4710
  * Prefer using `Set#size` instead of `Array#length`.
4177
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-set-size.md
4711
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-set-size.md
4178
4712
  */
4179
4713
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
4714
+ /**
4715
+ * Prefer arrow function properties over methods with a single return.
4716
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-short-arrow-method.md
4717
+ */
4718
+ 'unicorn/prefer-short-arrow-method'?: Linter.RuleEntry<[]>;
4180
4719
  /**
4181
4720
  * Prefer simple conditions first in logical expressions.
4182
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-simple-condition-first.md
4721
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-simple-condition-first.md
4183
4722
  */
4184
4723
  'unicorn/prefer-simple-condition-first'?: Linter.RuleEntry<[]>;
4185
4724
  /**
4186
- * Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
4187
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-single-call.md
4725
+ * Prefer a simple comparison function for `Array#sort()`.
4726
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-simple-sort-comparator.md
4727
+ */
4728
+ 'unicorn/prefer-simple-sort-comparator'?: Linter.RuleEntry<[]>;
4729
+ /**
4730
+ * Prefer a single `Array#some()` or `Array#every()` with a combined predicate.
4731
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-single-array-predicate.md
4732
+ */
4733
+ 'unicorn/prefer-single-array-predicate'?: Linter.RuleEntry<[]>;
4734
+ /**
4735
+ * Enforce combining multiple `Array#{push,unshift}()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
4736
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-single-call.md
4188
4737
  */
4189
4738
  'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>;
4190
4739
  /**
4191
- * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
4192
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-spread.md
4740
+ * Prefer a single object destructuring declaration per local const source.
4741
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-single-object-destructuring.md
4742
+ */
4743
+ 'unicorn/prefer-single-object-destructuring'?: Linter.RuleEntry<[]>;
4744
+ /**
4745
+ * Prefer declaring variables in the smallest possible scope.
4746
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-smaller-scope.md
4747
+ */
4748
+ 'unicorn/prefer-smaller-scope'?: Linter.RuleEntry<[]>;
4749
+ /**
4750
+ * Prefer `String#split()` with a limit.
4751
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-split-limit.md
4752
+ */
4753
+ 'unicorn/prefer-split-limit'?: Linter.RuleEntry<[]>;
4754
+ /**
4755
+ * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()`, and trivial `for…of` copies.
4756
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-spread.md
4193
4757
  */
4194
4758
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
4759
+ /**
4760
+ * Prefer `String#matchAll()` over `RegExp#exec()` loops.
4761
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-string-match-all.md
4762
+ */
4763
+ 'unicorn/prefer-string-match-all'?: Linter.RuleEntry<[]>;
4764
+ /**
4765
+ * Prefer `String#padStart()` and `String#padEnd()` over manual string padding.
4766
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-string-pad-start-end.md
4767
+ */
4768
+ 'unicorn/prefer-string-pad-start-end'?: Linter.RuleEntry<[]>;
4195
4769
  /**
4196
4770
  * Prefer using the `String.raw` tag to avoid escaping `\`.
4197
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-raw.md
4771
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-string-raw.md
4198
4772
  */
4199
4773
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
4200
4774
  /**
4201
- * Prefer `String#replaceAll()` over regex searches with the global flag.
4202
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-replace-all.md
4775
+ * Prefer `String#repeat()` for repeated whitespace.
4776
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-string-repeat.md
4777
+ */
4778
+ 'unicorn/prefer-string-repeat'?: Linter.RuleEntry<UnicornPreferStringRepeat>;
4779
+ /**
4780
+ * Prefer `String#replaceAll()` over regex searches with the global flag and `String#split().join()`.
4781
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-string-replace-all.md
4203
4782
  */
4204
4783
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
4205
4784
  /**
4206
4785
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
4207
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-slice.md
4786
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-string-slice.md
4208
4787
  */
4209
4788
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
4210
4789
  /**
4211
- * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
4212
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-starts-ends-with.md
4790
+ * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()` and `String#indexOf() === 0`.
4791
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-string-starts-ends-with.md
4213
4792
  */
4214
4793
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
4215
4794
  /**
4216
4795
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
4217
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-trim-start-end.md
4796
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-string-trim-start-end.md
4218
4797
  */
4219
4798
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
4220
4799
  /**
4221
4800
  * Prefer using `structuredClone` to create a deep clone.
4222
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-structured-clone.md
4801
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-structured-clone.md
4223
4802
  */
4224
4803
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>;
4225
4804
  /**
4226
4805
  * Prefer `switch` over multiple `else-if`.
4227
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-switch.md
4806
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-switch.md
4228
4807
  */
4229
4808
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>;
4230
4809
  /**
4231
- * Prefer ternary expressions over simple `if-else` statements.
4232
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-ternary.md
4810
+ * Prefer `Temporal` over `Date`.
4811
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-temporal.md
4812
+ */
4813
+ 'unicorn/prefer-temporal'?: Linter.RuleEntry<UnicornPreferTemporal>;
4814
+ /**
4815
+ * Prefer ternary expressions over simple `if-else` statements that return or assign values.
4816
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-ternary.md
4233
4817
  */
4234
4818
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>;
4235
4819
  /**
4236
4820
  * Prefer top-level await over top-level promises and async function calls.
4237
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-top-level-await.md
4821
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-top-level-await.md
4238
4822
  */
4239
4823
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
4240
4824
  /**
4241
4825
  * Enforce throwing `TypeError` in type checking conditions.
4242
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-type-error.md
4826
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-type-error.md
4243
4827
  */
4244
4828
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
4829
+ /**
4830
+ * Require type literals to be last in union and intersection types.
4831
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-type-literal-last.md
4832
+ */
4833
+ 'unicorn/prefer-type-literal-last'?: Linter.RuleEntry<[]>;
4834
+ /**
4835
+ * Prefer `Uint8Array#toBase64()` and `Uint8Array.fromBase64()` over `atob()`, `btoa()`, and `Buffer` base64 conversions.
4836
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-uint8array-base64.md
4837
+ */
4838
+ 'unicorn/prefer-uint8array-base64'?: Linter.RuleEntry<[]>;
4839
+ /**
4840
+ * Prefer Unicode code point escapes over legacy escape sequences.
4841
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-unicode-code-point-escapes.md
4842
+ */
4843
+ 'unicorn/prefer-unicode-code-point-escapes'?: Linter.RuleEntry<[]>;
4844
+ /**
4845
+ * Prefer `URL#href` over stringifying a `URL`.
4846
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prefer-url-href.md
4847
+ */
4848
+ 'unicorn/prefer-url-href'?: Linter.RuleEntry<[]>;
4245
4849
  /**
4246
4850
  * Prevent abbreviations.
4247
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prevent-abbreviations.md
4851
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/prevent-abbreviations.md
4248
4852
  */
4249
4853
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>;
4250
4854
  /**
4251
4855
  * Enforce consistent relative URL style.
4252
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/relative-url-style.md
4856
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/relative-url-style.md
4253
4857
  */
4254
4858
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
4255
4859
  /**
4256
4860
  * Enforce using the separator argument with `Array#join()`.
4257
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-array-join-separator.md
4861
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-array-join-separator.md
4258
4862
  */
4259
4863
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
4864
+ /**
4865
+ * Require a compare function when calling `Array#sort()` or `Array#toSorted()`.
4866
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-array-sort-compare.md
4867
+ */
4868
+ 'unicorn/require-array-sort-compare'?: Linter.RuleEntry<[]>;
4869
+ /**
4870
+ * Require `CSS.escape()` for interpolated values in CSS selectors.
4871
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-css-escape.md
4872
+ */
4873
+ 'unicorn/require-css-escape'?: Linter.RuleEntry<UnicornRequireCssEscape>;
4260
4874
  /**
4261
4875
  * Require non-empty module attributes for imports and exports
4262
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-module-attributes.md
4876
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-module-attributes.md
4263
4877
  */
4264
4878
  'unicorn/require-module-attributes'?: Linter.RuleEntry<[]>;
4265
4879
  /**
4266
4880
  * Require non-empty specifier list in import and export statements.
4267
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-module-specifiers.md
4881
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-module-specifiers.md
4268
4882
  */
4269
4883
  'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
4270
4884
  /**
4271
4885
  * Enforce using the digits argument with `Number#toFixed()`.
4272
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-number-to-fixed-digits-argument.md
4886
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-number-to-fixed-digits-argument.md
4273
4887
  */
4274
4888
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
4889
+ /**
4890
+ * Require passive event listeners for high-frequency events.
4891
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-passive-events.md
4892
+ */
4893
+ 'unicorn/require-passive-events'?: Linter.RuleEntry<[]>;
4275
4894
  /**
4276
4895
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
4277
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-post-message-target-origin.md
4896
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-post-message-target-origin.md
4278
4897
  */
4279
4898
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
4899
+ /**
4900
+ * Require boolean-returning Proxy traps to return booleans.
4901
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/require-proxy-trap-boolean-return.md
4902
+ */
4903
+ 'unicorn/require-proxy-trap-boolean-return'?: Linter.RuleEntry<[]>;
4280
4904
  /**
4281
4905
  * Enforce better string content.
4282
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/string-content.md
4906
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/string-content.md
4283
4907
  */
4284
4908
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>;
4285
4909
  /**
4286
4910
  * Enforce consistent brace style for `case` clauses.
4287
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/switch-case-braces.md
4911
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/switch-case-braces.md
4288
4912
  */
4289
4913
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
4290
4914
  /**
4291
4915
  * Enforce consistent `break`/`return`/`continue`/`throw` position in `case` clauses.
4292
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/switch-case-break-position.md
4916
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/switch-case-break-position.md
4293
4917
  */
4294
4918
  'unicorn/switch-case-break-position'?: Linter.RuleEntry<[]>;
4295
4919
  /**
4296
4920
  * Fix whitespace-insensitive template indentation.
4297
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/template-indent.md
4921
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/template-indent.md
4298
4922
  */
4299
4923
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>;
4300
4924
  /**
4301
4925
  * Enforce consistent case for text encoding identifiers.
4302
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/text-encoding-identifier-case.md
4926
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/text-encoding-identifier-case.md
4303
4927
  */
4304
4928
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<UnicornTextEncodingIdentifierCase>;
4305
4929
  /**
4306
4930
  * Require `new` when creating an error.
4307
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/throw-new-error.md
4931
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/throw-new-error.md
4308
4932
  */
4309
4933
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
4934
+ /**
4935
+ * Limit the complexity of `try` blocks.
4936
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v67.0.0/docs/rules/try-complexity.md
4937
+ */
4938
+ 'unicorn/try-complexity'?: Linter.RuleEntry<UnicornTryComplexity>;
4310
4939
  /**
4311
4940
  * Require calls to `isNaN()` when checking for `NaN`
4312
4941
  * @see https://eslint.org/docs/latest/rules/use-isnan
@@ -7293,7 +7922,6 @@ type NNoUnpublishedBin = [] | [{
7293
7922
  exclude?: string[];
7294
7923
  replace: [string, string];
7295
7924
  })[]]);
7296
- [k: string]: unknown | undefined;
7297
7925
  }]; // ----- n/no-unpublished-import -----
7298
7926
  type NNoUnpublishedImport = [] | [{
7299
7927
  allowModules?: string[];
@@ -7347,7 +7975,7 @@ type NNoUnsupportedFeaturesEsSyntax = [] | [{
7347
7975
  type NNoUnsupportedFeaturesNodeBuiltins = [] | [{
7348
7976
  version?: string;
7349
7977
  allowExperimental?: boolean;
7350
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
7978
+ 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.locks" | "navigator.locks.request" | "navigator.locks.query" | "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.decapsulateBits" | "crypto.subtle.decapsulateKey" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encapsulateBits" | "crypto.subtle.encapsulateKey" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.getPublicKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "SubtleCrypto.supports" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decapsulateBits" | "crypto.webcrypto.subtle.decapsulateKey" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encapsulateBits" | "crypto.webcrypto.subtle.encapsulateKey" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.getPublicKey" | "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.argon2" | "crypto.argon2Sync" | "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.decapsulate" | "crypto.diffieHellman" | "crypto.encapsulate" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.mkdtempDisposable" | "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.mkdtempDisposableSync" | "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.Utf8Stream" | "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.mkdtempDisposable" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent()" | "http.Agent" | "http.ClientRequest()" | "http.ClientRequest" | "http.Server()" | "http.Server" | "http.ServerResponse()" | "http.ServerResponse" | "http.IncomingMessage()" | "http.IncomingMessage" | "http.OutgoingMessage()" | "http.OutgoingMessage" | "http.WebSocket()" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.webSocketCreated" | "inspector.Network.webSocketHandshakeResponseReceived" | "inspector.Network.webSocketClosed" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.Network.webSocketCreated" | "inspector/promises.Network.webSocketHandshakeResponseReceived" | "inspector/promises.Network.webSocketClosed" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.eventLoopUtilization" | "perf_hooks.timerify" | "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.getAssetKeys" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getAssetKeys" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "_stream_duplex" | "_stream_passthrough" | "_stream_readable" | "_stream_transform" | "_stream_wrap" | "_stream_writable" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.Session" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.property" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "_tls_common" | "_tls_wrap" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "v8.startCpuProfile" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.threadName" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.locks" | "worker_threads.locks.request" | "worker_threads.locks.query" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
7351
7979
  }]; // ----- n/prefer-global/buffer -----
7352
7980
  type NPreferGlobalBuffer = [] | [("always" | "never")]; // ----- n/prefer-global/console -----
7353
7981
  type NPreferGlobalConsole = [] | [("always" | "never")]; // ----- n/prefer-global/crypto -----
@@ -8138,6 +8766,7 @@ type PerfectionistSortClasses = {
8138
8766
  matchesAstSelector?: string;
8139
8767
  };
8140
8768
  useExperimentalDependencyDetection?: boolean;
8769
+ newlinesBetweenOverloadSignatures?: ("ignore" | number);
8141
8770
  ignoreCallbackDependenciesPatterns?: (({
8142
8771
  pattern: string;
8143
8772
  flags?: string;
@@ -9501,6 +10130,7 @@ type PerfectionistSortModules = [] | [{
9501
10130
  })[];
9502
10131
  newlinesBetween?: ("ignore" | number);
9503
10132
  useExperimentalDependencyDetection?: boolean;
10133
+ newlinesBetweenOverloadSignatures?: ("ignore" | number);
9504
10134
  partitionByComment?: (boolean | (({
9505
10135
  pattern: string;
9506
10136
  flags?: string;
@@ -10818,43 +11448,104 @@ type TailwindcssNoUnnecessaryArbitraryValue = [] | [{
10818
11448
  }]; // ----- template-curly-spacing -----
10819
11449
  type TemplateCurlySpacing = [] | [("always" | "never")]; // ----- template-tag-spacing -----
10820
11450
  type TemplateTagSpacing = [] | [("always" | "never")]; // ----- unicode-bom -----
10821
- type UnicodeBom = [] | [("always" | "never")]; // ----- unicorn/better-regex -----
10822
- type UnicornBetterRegex = [] | [{
10823
- sortCharacterClasses?: boolean;
10824
- }]; // ----- unicorn/catch-error-name -----
11451
+ type UnicodeBom = [] | [("always" | "never")]; // ----- unicorn/catch-error-name -----
10825
11452
  type UnicornCatchErrorName = [] | [{
10826
11453
  name?: string;
10827
11454
  ignore?: unknown[];
10828
- }]; // ----- unicorn/consistent-function-scoping -----
11455
+ }]; // ----- unicorn/class-reference-in-static-methods -----
11456
+ type UnicornClassReferenceInStaticMethods = [] | [{
11457
+ preferThis?: boolean;
11458
+ preferSuper?: boolean;
11459
+ }]; // ----- unicorn/comment-content -----
11460
+ type UnicornCommentContent = [] | [{
11461
+ checkUniformCase?: boolean;
11462
+ extendDefaultReplacements?: boolean;
11463
+ replacements?: {
11464
+ [k: string]: (false | string | {
11465
+ replacement: string;
11466
+ caseSensitive?: boolean;
11467
+ }) | undefined;
11468
+ };
11469
+ }]; // ----- unicorn/consistent-boolean-name -----
11470
+ type UnicornConsistentBooleanName = [] | [{
11471
+ checkProperties?: boolean;
11472
+ prefixes?: {
11473
+ [k: string]: boolean | undefined;
11474
+ };
11475
+ }]; // ----- unicorn/consistent-class-member-order -----
11476
+ type UnicornConsistentClassMemberOrder = [] | [{
11477
+ order?: [("static-field" | "static-block" | "static-method" | "private-field" | "public-field" | "constructor" | "private-method" | "public-method"), ("static-field" | "static-block" | "static-method" | "private-field" | "public-field" | "constructor" | "private-method" | "public-method"), ("static-field" | "static-block" | "static-method" | "private-field" | "public-field" | "constructor" | "private-method" | "public-method"), ("static-field" | "static-block" | "static-method" | "private-field" | "public-field" | "constructor" | "private-method" | "public-method"), ("static-field" | "static-block" | "static-method" | "private-field" | "public-field" | "constructor" | "private-method" | "public-method"), ("static-field" | "static-block" | "static-method" | "private-field" | "public-field" | "constructor" | "private-method" | "public-method"), ("static-field" | "static-block" | "static-method" | "private-field" | "public-field" | "constructor" | "private-method" | "public-method"), ("static-field" | "static-block" | "static-method" | "private-field" | "public-field" | "constructor" | "private-method" | "public-method")];
11478
+ }]; // ----- unicorn/consistent-compound-words -----
11479
+ type UnicornConsistentCompoundWords = [] | [{
11480
+ checkProperties?: boolean;
11481
+ checkVariables?: boolean;
11482
+ checkDefaultAndNamespaceImports?: (boolean | "internal");
11483
+ checkShorthandImports?: (boolean | "internal");
11484
+ checkShorthandProperties?: boolean;
11485
+ extendDefaultReplacements?: boolean;
11486
+ replacements?: _UnicornConsistentCompoundWords_Replacements;
11487
+ allowList?: _UnicornConsistentCompoundWords_TrueObject;
11488
+ }];
11489
+ interface _UnicornConsistentCompoundWords_Replacements {
11490
+ [k: string]: (false | string) | undefined;
11491
+ }
11492
+ interface _UnicornConsistentCompoundWords_TrueObject {
11493
+ [k: string]: true | undefined;
11494
+ } // ----- unicorn/consistent-export-decorator-position -----
11495
+ type UnicornConsistentExportDecoratorPosition = [] | [("above" | "before" | "after")]; // ----- unicorn/consistent-function-scoping -----
10829
11496
  type UnicornConsistentFunctionScoping = [] | [{
10830
11497
  checkArrowFunctions?: boolean;
11498
+ }]; // ----- unicorn/consistent-function-style -----
11499
+ type UnicornConsistentFunctionStyle = [] | [{
11500
+ default?: ("declaration" | "function-expression" | "arrow-function" | "ignore");
11501
+ namedFunctions?: ("declaration" | "function-expression" | "arrow-function" | "ignore");
11502
+ namedExports?: ("declaration" | "function-expression" | "arrow-function" | "ignore");
11503
+ callbacks?: ("function-expression" | "arrow-function" | "ignore");
11504
+ objectProperties?: ("method" | "function-expression" | "arrow-function" | "ignore");
11505
+ reassignedVariables?: ("function-expression" | "arrow-function" | "ignore");
11506
+ typedVariables?: ("function-expression" | "arrow-function" | "ignore");
11507
+ }]; // ----- unicorn/consistent-json-file-read -----
11508
+ type UnicornConsistentJsonFileRead = [] | [("string" | "buffer")]; // ----- unicorn/dom-node-dataset -----
11509
+ type UnicornDomNodeDataset = [] | [{
11510
+ preferAttributes?: boolean;
10831
11511
  }]; // ----- unicorn/escape-case -----
10832
11512
  type UnicornEscapeCase = [] | [("uppercase" | "lowercase")]; // ----- unicorn/expiring-todo-comments -----
10833
11513
  type UnicornExpiringTodoComments = [] | [{
10834
11514
  terms?: string[];
10835
11515
  ignore?: unknown[];
10836
- ignoreDates?: boolean;
10837
- ignoreDatesOnPullRequests?: boolean;
11516
+ checkDates?: boolean;
11517
+ checkDatesOnPullRequests?: boolean;
10838
11518
  allowWarningComments?: boolean;
10839
11519
  date?: string;
10840
11520
  }]; // ----- unicorn/explicit-length-check -----
10841
11521
  type UnicornExplicitLengthCheck = [] | [{
10842
11522
  "non-zero"?: ("greater-than" | "not-equal");
10843
- }]; // ----- unicorn/filename-case -----
11523
+ }]; // ----- unicorn/explicit-timer-delay -----
11524
+ type UnicornExplicitTimerDelay = [] | [("always" | "never")]; // ----- unicorn/filename-case -----
10844
11525
  type UnicornFilenameCase = [] | [({
10845
- case?: ("camelCase" | "snakeCase" | "kebabCase" | "pascalCase");
11526
+ case?: ("camelCase" | "camelCaseWithAcronyms" | "snakeCase" | "kebabCase" | "pascalCase");
10846
11527
  ignore?: unknown[];
10847
11528
  multipleFileExtensions?: boolean;
11529
+ checkDirectories?: boolean;
10848
11530
  } | {
10849
11531
  cases?: {
10850
11532
  camelCase?: boolean;
11533
+ camelCaseWithAcronyms?: boolean;
10851
11534
  snakeCase?: boolean;
10852
11535
  kebabCase?: boolean;
10853
11536
  pascalCase?: boolean;
10854
11537
  };
10855
11538
  ignore?: unknown[];
10856
11539
  multipleFileExtensions?: boolean;
10857
- })]; // ----- unicorn/import-style -----
11540
+ checkDirectories?: boolean;
11541
+ })]; // ----- unicorn/id-match -----
11542
+ type UnicornIdMatch = [] | [string] | [string, {
11543
+ properties?: boolean;
11544
+ classFields?: boolean;
11545
+ onlyDeclarations?: boolean;
11546
+ ignoreDestructuring?: boolean;
11547
+ checkNamedSpecifiers?: boolean;
11548
+ }]; // ----- unicorn/import-style -----
10858
11549
  type UnicornImportStyle = [] | [{
10859
11550
  checkImport?: boolean;
10860
11551
  checkDynamicImport?: boolean;
@@ -10877,6 +11568,15 @@ type UnicornIsolatedFunctions = [] | [{
10877
11568
  functions?: string[];
10878
11569
  selectors?: string[];
10879
11570
  comments?: string[];
11571
+ }]; // ----- unicorn/logical-assignment-operators -----
11572
+ type UnicornLogicalAssignmentOperators = (([] | ["always"] | ["always", {
11573
+ enforceForIfStatements?: boolean;
11574
+ }] | ["never"]) & unknown[]); // ----- unicorn/max-nested-calls -----
11575
+ type UnicornMaxNestedCalls = [] | [{
11576
+ max?: number;
11577
+ }]; // ----- unicorn/no-array-callback-reference -----
11578
+ type UnicornNoArrayCallbackReference = [] | [{
11579
+ ignore?: string[];
10880
11580
  }]; // ----- unicorn/no-array-reduce -----
10881
11581
  type UnicornNoArrayReduce = [] | [{
10882
11582
  allowSimpleOperations?: boolean;
@@ -10886,28 +11586,50 @@ type UnicornNoArrayReverse = [] | [{
10886
11586
  }]; // ----- unicorn/no-array-sort -----
10887
11587
  type UnicornNoArraySort = [] | [{
10888
11588
  allowExpressionStatement?: boolean;
11589
+ }]; // ----- unicorn/no-empty-file -----
11590
+ type UnicornNoEmptyFile = [] | [{
11591
+ allowComments?: boolean;
10889
11592
  }]; // ----- unicorn/no-instanceof-builtins -----
10890
11593
  type UnicornNoInstanceofBuiltins = [] | [{
10891
11594
  useErrorIsError?: boolean;
10892
11595
  strategy?: ("loose" | "strict");
10893
11596
  include?: string[];
10894
11597
  exclude?: string[];
11598
+ }]; // ----- unicorn/no-invalid-argument-count -----
11599
+ type UnicornNoInvalidArgumentCount = [] | [{
11600
+ [k: string]: (number | [number, ...(number)[]] | {
11601
+ min?: number;
11602
+ max?: number;
11603
+ }) | undefined;
10895
11604
  }]; // ----- unicorn/no-keyword-prefix -----
10896
11605
  type UnicornNoKeywordPrefix = [] | [{
10897
11606
  disallowedPrefixes?: [] | [string];
10898
11607
  checkProperties?: boolean;
10899
11608
  onlyCamelCase?: boolean;
11609
+ }]; // ----- unicorn/no-negated-comparison -----
11610
+ type UnicornNoNegatedComparison = [] | [{
11611
+ checkLogicalExpressions?: boolean;
11612
+ }]; // ----- unicorn/no-non-function-verb-prefix -----
11613
+ type UnicornNoNonFunctionVerbPrefix = [] | [{
11614
+ verbs?: string[];
10900
11615
  }]; // ----- unicorn/no-null -----
10901
11616
  type UnicornNoNull = [] | [{
11617
+ checkArguments?: boolean;
10902
11618
  checkStrictEquality?: boolean;
10903
11619
  }]; // ----- unicorn/no-typeof-undefined -----
10904
11620
  type UnicornNoTypeofUndefined = [] | [{
10905
11621
  checkGlobalVariables?: boolean;
10906
11622
  }]; // ----- unicorn/no-unnecessary-polyfills -----
10907
11623
  type UnicornNoUnnecessaryPolyfills = [] | [{
10908
- targets: (string | unknown[] | {
11624
+ targets?: (string | unknown[] | {
10909
11625
  [k: string]: unknown | undefined;
10910
11626
  });
11627
+ }]; // ----- unicorn/no-unreadable-array-destructuring -----
11628
+ type UnicornNoUnreadableArrayDestructuring = [] | [{
11629
+ maximumIgnoredElements?: number;
11630
+ }]; // ----- unicorn/no-useless-fallback-in-spread -----
11631
+ type UnicornNoUselessFallbackInSpread = [] | [{
11632
+ checkTernary?: boolean;
10911
11633
  }]; // ----- unicorn/no-useless-undefined -----
10912
11634
  type UnicornNoUselessUndefined = [] | [{
10913
11635
  checkArguments?: boolean;
@@ -10936,9 +11658,11 @@ type UnicornNumericSeparatorsStyle = [] | [{
10936
11658
  onlyIfContainsSeparator?: boolean;
10937
11659
  minimumDigits?: number;
10938
11660
  groupLength?: number;
11661
+ fractionGroupLength?: number;
10939
11662
  };
10940
11663
  onlyIfContainsSeparator?: boolean;
10941
- }]; // ----- unicorn/prefer-add-event-listener -----
11664
+ }]; // ----- unicorn/operator-assignment -----
11665
+ type UnicornOperatorAssignment = [] | [("always" | "never")]; // ----- unicorn/prefer-add-event-listener -----
10942
11666
  type UnicornPreferAddEventListener = [] | [{
10943
11667
  excludedPackages?: string[];
10944
11668
  }]; // ----- unicorn/prefer-array-find -----
@@ -10951,9 +11675,18 @@ type UnicornPreferArrayFlat = [] | [{
10951
11675
  type UnicornPreferAt = [] | [{
10952
11676
  getLastElementFunctions?: unknown[];
10953
11677
  checkAllIndexAccess?: boolean;
11678
+ }]; // ----- unicorn/prefer-early-return -----
11679
+ type UnicornPreferEarlyReturn = [] | [{
11680
+ maximumStatements?: number;
10954
11681
  }]; // ----- unicorn/prefer-export-from -----
10955
11682
  type UnicornPreferExportFrom = [] | [{
10956
- ignoreUsedVariables?: boolean;
11683
+ checkUsedVariables?: boolean;
11684
+ }]; // ----- unicorn/prefer-includes-over-repeated-comparisons -----
11685
+ type UnicornPreferIncludesOverRepeatedComparisons = [] | [{
11686
+ minimumComparisons?: number;
11687
+ }]; // ----- unicorn/prefer-minimal-ternary -----
11688
+ type UnicornPreferMinimalTernary = [] | [{
11689
+ checkComputedMemberAccess?: boolean;
10957
11690
  }]; // ----- unicorn/prefer-number-properties -----
10958
11691
  type UnicornPreferNumberProperties = [] | [{
10959
11692
  checkInfinity?: boolean;
@@ -10961,9 +11694,22 @@ type UnicornPreferNumberProperties = [] | [{
10961
11694
  }]; // ----- unicorn/prefer-object-from-entries -----
10962
11695
  type UnicornPreferObjectFromEntries = [] | [{
10963
11696
  functions?: unknown[];
11697
+ }]; // ----- unicorn/prefer-query-selector -----
11698
+ type UnicornPreferQuerySelector = [] | [{
11699
+ allowWithVariables?: boolean;
11700
+ }]; // ----- unicorn/prefer-queue-microtask -----
11701
+ type UnicornPreferQueueMicrotask = [] | [{
11702
+ checkSetImmediate?: boolean;
11703
+ checkSetTimeout?: boolean;
11704
+ }]; // ----- unicorn/prefer-set-has -----
11705
+ type UnicornPreferSetHas = [] | [{
11706
+ minimumItems?: number;
10964
11707
  }]; // ----- unicorn/prefer-single-call -----
10965
11708
  type UnicornPreferSingleCall = [] | [{
10966
11709
  ignore?: unknown[];
11710
+ }]; // ----- unicorn/prefer-string-repeat -----
11711
+ type UnicornPreferStringRepeat = [] | [{
11712
+ minimumRepetitions?: number;
10967
11713
  }]; // ----- unicorn/prefer-structured-clone -----
10968
11714
  type UnicornPreferStructuredClone = [] | [{
10969
11715
  functions?: unknown[];
@@ -10971,6 +11717,11 @@ type UnicornPreferStructuredClone = [] | [{
10971
11717
  type UnicornPreferSwitch = [] | [{
10972
11718
  minimumCases?: number;
10973
11719
  emptyDefaultCase?: ("no-default-comment" | "do-nothing-comment" | "no-default-case");
11720
+ }]; // ----- unicorn/prefer-temporal -----
11721
+ type UnicornPreferTemporal = [] | [{
11722
+ checkDateNow?: boolean;
11723
+ checkReferences?: boolean;
11724
+ checkMethods?: boolean;
10974
11725
  }]; // ----- unicorn/prefer-ternary -----
10975
11726
  type UnicornPreferTernary = [] | [("always" | "only-single-line")]; // ----- unicorn/prevent-abbreviations -----
10976
11727
  type UnicornPreventAbbreviations = [] | [{
@@ -10996,17 +11747,22 @@ interface _UnicornPreventAbbreviations_BooleanObject {
10996
11747
  interface _UnicornPreventAbbreviations_BooleanObject {
10997
11748
  [k: string]: boolean | undefined;
10998
11749
  } // ----- unicorn/relative-url-style -----
10999
- type UnicornRelativeUrlStyle = [] | [("never" | "always")]; // ----- unicorn/string-content -----
11750
+ type UnicornRelativeUrlStyle = [] | [("never" | "always")]; // ----- unicorn/require-css-escape -----
11751
+ type UnicornRequireCssEscape = [] | [{
11752
+ checkAllSelectors?: boolean;
11753
+ }]; // ----- unicorn/string-content -----
11000
11754
  type UnicornStringContent = [] | [{
11001
11755
  patterns?: {
11002
11756
  [k: string]: (string | {
11003
11757
  suggest: string;
11004
11758
  fix?: boolean;
11759
+ caseSensitive?: boolean;
11005
11760
  message?: string;
11006
11761
  }) | undefined;
11007
11762
  };
11763
+ selectors?: string[];
11008
11764
  }]; // ----- unicorn/switch-case-braces -----
11009
- type UnicornSwitchCaseBraces = [] | [("always" | "avoid")]; // ----- unicorn/template-indent -----
11765
+ type UnicornSwitchCaseBraces = [] | [("always" | "avoid" | "single-statement")]; // ----- unicorn/template-indent -----
11010
11766
  type UnicornTemplateIndent = [] | [{
11011
11767
  indent?: (string | number);
11012
11768
  tags?: string[];
@@ -11016,6 +11772,9 @@ type UnicornTemplateIndent = [] | [{
11016
11772
  }]; // ----- unicorn/text-encoding-identifier-case -----
11017
11773
  type UnicornTextEncodingIdentifierCase = [] | [{
11018
11774
  withDash?: boolean;
11775
+ }]; // ----- unicorn/try-complexity -----
11776
+ type UnicornTryComplexity = [] | [{
11777
+ max?: number;
11019
11778
  }]; // ----- use-isnan -----
11020
11779
  type UseIsnan = [] | [{
11021
11780
  enforceForSwitchCase?: boolean;
@@ -11146,4 +11905,4 @@ declare const _default$5: FlatConfigItemStrict[];
11146
11905
  */
11147
11906
  declare const lichthagel: (options?: OptionsConfig) => Promise<FlatConfigItemStrict[]>;
11148
11907
  //#endregion
11149
- export { FlatConfigItem, FlatConfigItemStrict, OptionsConfig, Rules, _default as browser, lichthagel as default, _default$1 as javascript, node, _default$2 as perfectionist, solid, _default$3 as stylistic, svelte, tailwindcss, _default$4 as typescript, _default$5 as unicorn };
11908
+ export { type FlatConfigItem, type FlatConfigItemStrict, type OptionsConfig, type Rules, _default as browser, lichthagel as default, _default$1 as javascript, node, _default$2 as perfectionist, solid, _default$3 as stylistic, svelte, tailwindcss, _default$4 as typescript, _default$5 as unicorn };