@rotki/eslint-config 6.0.0 → 6.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.mts +668 -230
  2. package/dist/index.mjs +45 -53
  3. package/package.json +40 -40
package/dist/index.d.mts CHANGED
@@ -308,7 +308,7 @@ interface OptionsHasTypeScript {
308
308
  interface OptionsStylistic {
309
309
  stylistic?: boolean | StylisticConfig;
310
310
  }
311
- interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi'> {}
311
+ interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi' | 'braceStyle'> {}
312
312
  interface OptionsIsInEditor {
313
313
  isInEditor?: boolean;
314
314
  }
@@ -430,6 +430,11 @@ interface RuleOptions {
430
430
  * @see https://eslint-plugin-vue-i18n.intlify.dev/rules/valid-message-syntax.html
431
431
  */
432
432
  '@intlify/vue-i18n/valid-message-syntax'?: Linter.RuleEntry<IntlifyVueI18NValidMessageSyntax>;
433
+ /**
434
+ * enforce valid plural form counts for each locale to prevent runtime errors
435
+ * @see https://eslint-plugin-vue-i18n.intlify.dev/rules/valid-plural-forms.html
436
+ */
437
+ '@intlify/vue-i18n/valid-plural-forms'?: Linter.RuleEntry<IntlifyVueI18NValidPluralForms>;
433
438
  /**
434
439
  * Prefer MaybeRefOrGetter over Ref for composable parameters
435
440
  * @see https://rotki.github.io/eslint-plugin/rules/composable-input-flexibility
@@ -500,6 +505,11 @@ interface RuleOptions {
500
505
  * @see https://rotki.github.io/eslint-plugin/rules/no-legacy-library-import
501
506
  */
502
507
  '@rotki/no-legacy-library-import'?: Linter.RuleEntry<[]>;
508
+ /**
509
+ * disallow redundant `flex-row` since `flex` already defaults to the row direction
510
+ * @see https://rotki.github.io/eslint-plugin/rules/no-redundant-flex-row
511
+ */
512
+ '@rotki/no-redundant-flex-row'?: Linter.RuleEntry<[]>;
503
513
  /**
504
514
  * disallow unused i18n keys in locale files
505
515
  * @see https://rotki.github.io/eslint-plugin/rules/no-unused-i18n-keys
@@ -1681,12 +1691,12 @@ interface RuleOptions {
1681
1691
  */
1682
1692
  'accessor-pairs'?: Linter.RuleEntry<AccessorPairs>;
1683
1693
  /**
1684
- * Having line breaks styles to object, array and named imports
1694
+ * Enforce consistent line breaks for chaining member access
1685
1695
  * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-chaining.md
1686
1696
  */
1687
1697
  'antfu/consistent-chaining'?: Linter.RuleEntry<AntfuConsistentChaining>;
1688
1698
  /**
1689
- * Having line breaks styles to object, array and named imports
1699
+ * Enforce consistent line breaks inside braces and parentheses
1690
1700
  * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-list-newline.md
1691
1701
  */
1692
1702
  'antfu/consistent-list-newline'?: Linter.RuleEntry<AntfuConsistentListNewline>;
@@ -1712,22 +1722,22 @@ interface RuleOptions {
1712
1722
  'antfu/indent-unindent'?: Linter.RuleEntry<AntfuIndentUnindent>;
1713
1723
  /**
1714
1724
  * Prevent importing modules in `dist` folder
1715
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.test.ts
1725
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.md
1716
1726
  */
1717
1727
  'antfu/no-import-dist'?: Linter.RuleEntry<[]>;
1718
1728
  /**
1719
1729
  * Prevent importing modules in `node_modules` folder by relative or absolute path
1720
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.test.ts
1730
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.md
1721
1731
  */
1722
1732
  'antfu/no-import-node-modules-by-path'?: Linter.RuleEntry<[]>;
1723
1733
  /**
1724
1734
  * Prevent using top-level await
1725
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.test.ts
1735
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.md
1726
1736
  */
1727
1737
  'antfu/no-top-level-await'?: Linter.RuleEntry<[]>;
1728
1738
  /**
1729
1739
  * Do not use `exports =`
1730
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.test.ts
1740
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.md
1731
1741
  */
1732
1742
  'antfu/no-ts-export-equal'?: Linter.RuleEntry<[]>;
1733
1743
  /**
@@ -3674,6 +3684,11 @@ interface RuleOptions {
3674
3684
  * @see https://perfectionist.dev/rules/sort-array-includes
3675
3685
  */
3676
3686
  'perfectionist/sort-array-includes'?: Linter.RuleEntry<PerfectionistSortArrayIncludes>;
3687
+ /**
3688
+ * Enforce sorted arrays.
3689
+ * @see https://perfectionist.dev/rules/sort-arrays
3690
+ */
3691
+ 'perfectionist/sort-arrays'?: Linter.RuleEntry<PerfectionistSortArrays>;
3677
3692
  /**
3678
3693
  * Enforce sorted classes.
3679
3694
  * @see https://perfectionist.dev/rules/sort-classes
@@ -3868,7 +3883,7 @@ interface RuleOptions {
3868
3883
  */
3869
3884
  'quotes'?: Linter.RuleEntry<Quotes>;
3870
3885
  /**
3871
- * Enforce the consistent use of the radix argument when using `parseInt()`
3886
+ * Enforce the use of the radix argument when using `parseInt()`
3872
3887
  * @see https://eslint.org/docs/latest/rules/radix
3873
3888
  */
3874
3889
  'radix'?: Linter.RuleEntry<Radix>;
@@ -4607,7 +4622,7 @@ interface RuleOptions {
4607
4622
  */
4608
4623
  'test/no-mocks-import'?: Linter.RuleEntry<[]>;
4609
4624
  /**
4610
- * disallow .only blocks in tests
4625
+ * disallow focused/only tests
4611
4626
  * @see https://github.com/levibuzolic/eslint-plugin-no-only-tests
4612
4627
  */
4613
4628
  'test/no-only-tests'?: Linter.RuleEntry<TestNoOnlyTests>;
@@ -4732,7 +4747,7 @@ interface RuleOptions {
4732
4747
  */
4733
4748
  'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
4734
4749
  /**
4735
- * enforce using `expectTypeOf` instead of `expect(typeof ...)`
4750
+ * enforce using `expect(...).toBeTypeOf(...)` instead of `expect(typeof ...).toBe(...)`
4736
4751
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
4737
4752
  */
4738
4753
  'test/prefer-expect-type-of'?: Linter.RuleEntry<[]>;
@@ -4907,753 +4922,921 @@ interface RuleOptions {
4907
4922
  */
4908
4923
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>;
4909
4924
  /**
4910
- * Improve regexes by making them shorter, consistent, and safer.
4911
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/better-regex.md
4925
+ * Prefer better DOM traversal APIs.
4926
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/better-dom-traversing.md
4912
4927
  */
4913
- 'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>;
4928
+ 'unicorn/better-dom-traversing'?: Linter.RuleEntry<[]>;
4929
+ /**
4930
+ * Removed. Prefer `eslint-plugin-regexp`
4931
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#better-regex
4932
+ * @deprecated
4933
+ */
4934
+ 'unicorn/better-regex'?: Linter.RuleEntry<[]>;
4914
4935
  /**
4915
4936
  * Enforce a specific parameter name in catch clauses.
4916
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/catch-error-name.md
4937
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/catch-error-name.md
4917
4938
  */
4918
4939
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>;
4919
4940
  /**
4920
4941
  * Enforce consistent assertion style with `node:assert`.
4921
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-assert.md
4942
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-assert.md
4922
4943
  */
4923
4944
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
4945
+ /**
4946
+ * Enforce consistent spelling of compound words in identifiers.
4947
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-compound-words.md
4948
+ */
4949
+ 'unicorn/consistent-compound-words'?: Linter.RuleEntry<UnicornConsistentCompoundWords>;
4924
4950
  /**
4925
4951
  * Prefer passing `Date` directly to the constructor when cloning.
4926
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-date-clone.md
4952
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-date-clone.md
4927
4953
  */
4928
4954
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
4929
4955
  /**
4930
4956
  * Use destructured variables over properties.
4931
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-destructuring.md
4957
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-destructuring.md
4932
4958
  */
4933
4959
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
4934
4960
  /**
4935
4961
  * Prefer consistent types when spreading a ternary in an array literal.
4936
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-empty-array-spread.md
4962
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-empty-array-spread.md
4937
4963
  */
4938
4964
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
4939
4965
  /**
4940
4966
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
4941
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-existence-index-check.md
4967
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-existence-index-check.md
4942
4968
  */
4943
4969
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
4944
4970
  /**
4945
4971
  * Move function definitions to the highest possible scope.
4946
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-function-scoping.md
4972
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-function-scoping.md
4947
4973
  */
4948
4974
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
4975
+ /**
4976
+ * Enforce consistent JSON file reads before `JSON.parse()`.
4977
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-json-file-read.md
4978
+ */
4979
+ 'unicorn/consistent-json-file-read'?: Linter.RuleEntry<UnicornConsistentJsonFileRead>;
4949
4980
  /**
4950
4981
  * Enforce consistent style for escaping `${` in template literals.
4951
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-template-literal-escape.md
4982
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-template-literal-escape.md
4952
4983
  */
4953
4984
  'unicorn/consistent-template-literal-escape'?: Linter.RuleEntry<[]>;
4954
4985
  /**
4955
4986
  * Enforce correct `Error` subclassing.
4956
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/custom-error-definition.md
4987
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/custom-error-definition.md
4957
4988
  */
4958
4989
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
4990
+ /**
4991
+ * Enforce consistent style for DOM element dataset access.
4992
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/dom-node-dataset.md
4993
+ */
4994
+ 'unicorn/dom-node-dataset'?: Linter.RuleEntry<UnicornDomNodeDataset>;
4959
4995
  /**
4960
4996
  * Enforce no spaces between braces.
4961
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/empty-brace-spaces.md
4997
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/empty-brace-spaces.md
4962
4998
  */
4963
4999
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
4964
5000
  /**
4965
5001
  * Enforce passing a `message` value when creating a built-in error.
4966
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/error-message.md
5002
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/error-message.md
4967
5003
  */
4968
5004
  'unicorn/error-message'?: Linter.RuleEntry<[]>;
4969
5005
  /**
4970
5006
  * Require escape sequences to use uppercase or lowercase values.
4971
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/escape-case.md
5007
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/escape-case.md
4972
5008
  */
4973
5009
  'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>;
4974
5010
  /**
4975
5011
  * Add expiration conditions to TODO comments.
4976
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/expiring-todo-comments.md
5012
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/expiring-todo-comments.md
4977
5013
  */
4978
5014
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>;
4979
5015
  /**
4980
5016
  * Enforce explicitly comparing the `length` or `size` property of a value.
4981
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/explicit-length-check.md
5017
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/explicit-length-check.md
4982
5018
  */
4983
5019
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
4984
5020
  /**
4985
- * Enforce a case style for filenames.
4986
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/filename-case.md
5021
+ * Enforce a case style for filenames and directory names.
5022
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/filename-case.md
4987
5023
  */
4988
5024
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>;
4989
5025
  /**
4990
5026
  * Enforce specific import styles per module.
4991
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/import-style.md
5027
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/import-style.md
4992
5028
  */
4993
5029
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>;
4994
5030
  /**
4995
5031
  * Prevent usage of variables from outside the scope of isolated functions.
4996
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/isolated-functions.md
5032
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/isolated-functions.md
4997
5033
  */
4998
5034
  'unicorn/isolated-functions'?: Linter.RuleEntry<UnicornIsolatedFunctions>;
4999
5035
  /**
5000
5036
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
5001
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/new-for-builtins.md
5037
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/new-for-builtins.md
5002
5038
  */
5003
5039
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
5004
5040
  /**
5005
5041
  * Enforce specifying rules to disable in `eslint-disable` comments.
5006
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-abusive-eslint-disable.md
5042
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-abusive-eslint-disable.md
5007
5043
  */
5008
5044
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
5009
5045
  /**
5010
5046
  * Disallow recursive access to `this` within getters and setters.
5011
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-accessor-recursion.md
5047
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-accessor-recursion.md
5012
5048
  */
5013
5049
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
5014
5050
  /**
5015
5051
  * Disallow anonymous functions and classes as the default export.
5016
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-anonymous-default-export.md
5052
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-anonymous-default-export.md
5017
5053
  */
5018
5054
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
5019
5055
  /**
5020
5056
  * Prevent passing a function reference directly to iterator methods.
5021
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-callback-reference.md
5057
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-callback-reference.md
5058
+ */
5059
+ 'unicorn/no-array-callback-reference'?: Linter.RuleEntry<UnicornNoArrayCallbackReference>;
5060
+ /**
5061
+ * Disallow using reference values as `Array#fill()` values.
5062
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-fill-with-reference-type.md
5022
5063
  */
5023
- 'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
5064
+ 'unicorn/no-array-fill-with-reference-type'?: Linter.RuleEntry<[]>;
5024
5065
  /**
5025
5066
  * Prefer `for…of` over the `forEach` method.
5026
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-for-each.md
5067
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-for-each.md
5027
5068
  */
5028
5069
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
5070
+ /**
5071
+ * Disallow `.fill()` after `Array.from({length: …})`.
5072
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-from-fill.md
5073
+ */
5074
+ 'unicorn/no-array-from-fill'?: Linter.RuleEntry<[]>;
5029
5075
  /**
5030
5076
  * Disallow using the `this` argument in array methods.
5031
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-method-this-argument.md
5077
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-method-this-argument.md
5032
5078
  */
5033
5079
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
5034
5080
  /**
5035
5081
  * Replaced by `unicorn/prefer-single-call` which covers more cases.
5036
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-array-push-push
5082
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#no-array-push-push
5037
5083
  * @deprecated
5038
5084
  */
5039
5085
  'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
5040
5086
  /**
5041
5087
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
5042
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-reduce.md
5088
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-reduce.md
5043
5089
  */
5044
5090
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>;
5045
5091
  /**
5046
5092
  * Prefer `Array#toReversed()` over `Array#reverse()`.
5047
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-reverse.md
5093
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-reverse.md
5048
5094
  */
5049
5095
  'unicorn/no-array-reverse'?: Linter.RuleEntry<UnicornNoArrayReverse>;
5050
5096
  /**
5051
5097
  * Prefer `Array#toSorted()` over `Array#sort()`.
5052
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-sort.md
5098
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-sort.md
5053
5099
  */
5054
5100
  'unicorn/no-array-sort'?: Linter.RuleEntry<UnicornNoArraySort>;
5055
5101
  /**
5056
5102
  * Disallow member access from await expression.
5057
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-await-expression-member.md
5103
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-await-expression-member.md
5058
5104
  */
5059
5105
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
5060
5106
  /**
5061
5107
  * Disallow using `await` in `Promise` method parameters.
5062
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-await-in-promise-methods.md
5108
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-await-in-promise-methods.md
5063
5109
  */
5064
5110
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
5111
+ /**
5112
+ * Disallow unnecessary `Blob` to `File` conversion.
5113
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-blob-to-file.md
5114
+ */
5115
+ 'unicorn/no-blob-to-file'?: Linter.RuleEntry<[]>;
5116
+ /**
5117
+ * Prefer drawing canvases directly instead of converting them to images.
5118
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-canvas-to-image.md
5119
+ */
5120
+ 'unicorn/no-canvas-to-image'?: Linter.RuleEntry<[]>;
5121
+ /**
5122
+ * Disallow confusing uses of `Array#{splice,toSpliced}()`.
5123
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-confusing-array-splice.md
5124
+ */
5125
+ 'unicorn/no-confusing-array-splice'?: Linter.RuleEntry<[]>;
5065
5126
  /**
5066
5127
  * Do not use leading/trailing space between `console.log` parameters.
5067
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-console-spaces.md
5128
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-console-spaces.md
5068
5129
  */
5069
5130
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
5070
5131
  /**
5071
5132
  * Do not use `document.cookie` directly.
5072
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-document-cookie.md
5133
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-document-cookie.md
5073
5134
  */
5074
5135
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
5136
+ /**
5137
+ * Disallow duplicate values in `Set` constructor array literals.
5138
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-duplicate-set-values.md
5139
+ */
5140
+ 'unicorn/no-duplicate-set-values'?: Linter.RuleEntry<[]>;
5075
5141
  /**
5076
5142
  * Disallow empty files.
5077
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-empty-file.md
5143
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-empty-file.md
5078
5144
  */
5079
- 'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
5145
+ 'unicorn/no-empty-file'?: Linter.RuleEntry<UnicornNoEmptyFile>;
5146
+ /**
5147
+ * Disallow exports in scripts.
5148
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-exports-in-scripts.md
5149
+ */
5150
+ 'unicorn/no-exports-in-scripts'?: Linter.RuleEntry<[]>;
5080
5151
  /**
5081
5152
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
5082
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-for-loop.md
5153
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-for-loop.md
5083
5154
  */
5084
5155
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
5085
5156
  /**
5086
5157
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
5087
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-hex-escape.md
5158
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-hex-escape.md
5088
5159
  */
5089
5160
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
5090
5161
  /**
5091
5162
  * Disallow immediate mutation after variable assignment.
5092
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-immediate-mutation.md
5163
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-immediate-mutation.md
5093
5164
  */
5094
5165
  'unicorn/no-immediate-mutation'?: Linter.RuleEntry<[]>;
5166
+ /**
5167
+ * Disallow incorrect `querySelector()` and `querySelectorAll()` usage.
5168
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-incorrect-query-selector.md
5169
+ */
5170
+ 'unicorn/no-incorrect-query-selector'?: Linter.RuleEntry<[]>;
5095
5171
  /**
5096
5172
  * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
5097
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-instanceof-array
5173
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#no-instanceof-array
5098
5174
  * @deprecated
5099
5175
  */
5100
5176
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
5101
5177
  /**
5102
5178
  * Disallow `instanceof` with built-in objects
5103
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-instanceof-builtins.md
5179
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-instanceof-builtins.md
5104
5180
  */
5105
5181
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
5106
5182
  /**
5107
5183
  * Disallow invalid options in `fetch()` and `new Request()`.
5108
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-invalid-fetch-options.md
5184
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-invalid-fetch-options.md
5109
5185
  */
5110
5186
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
5187
+ /**
5188
+ * Disallow invalid `accept` values on file inputs.
5189
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-invalid-file-input-accept.md
5190
+ */
5191
+ 'unicorn/no-invalid-file-input-accept'?: Linter.RuleEntry<[]>;
5111
5192
  /**
5112
5193
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
5113
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-invalid-remove-event-listener.md
5194
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-invalid-remove-event-listener.md
5114
5195
  */
5115
5196
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
5116
5197
  /**
5117
5198
  * Disallow identifiers starting with `new` or `class`.
5118
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-keyword-prefix.md
5199
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-keyword-prefix.md
5119
5200
  */
5120
5201
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
5202
+ /**
5203
+ * Disallow accessing `event.currentTarget` after the synchronous event dispatch has finished.
5204
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-late-current-target-access.md
5205
+ */
5206
+ 'unicorn/no-late-current-target-access'?: Linter.RuleEntry<[]>;
5121
5207
  /**
5122
5208
  * Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
5123
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
5209
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
5124
5210
  * @deprecated
5125
5211
  */
5126
5212
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
5127
5213
  /**
5128
5214
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
5129
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-lonely-if.md
5215
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-lonely-if.md
5130
5216
  */
5131
5217
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
5132
5218
  /**
5133
5219
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
5134
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-magic-array-flat-depth.md
5220
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-magic-array-flat-depth.md
5135
5221
  */
5136
5222
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
5223
+ /**
5224
+ * Disallow manually wrapped comments.
5225
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-manually-wrapped-comments.md
5226
+ */
5227
+ 'unicorn/no-manually-wrapped-comments'?: Linter.RuleEntry<[]>;
5137
5228
  /**
5138
5229
  * Disallow named usage of default import and export.
5139
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-named-default.md
5230
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-named-default.md
5140
5231
  */
5141
5232
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
5142
5233
  /**
5143
5234
  * Disallow negated conditions.
5144
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-negated-condition.md
5235
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-negated-condition.md
5145
5236
  */
5146
5237
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
5147
5238
  /**
5148
5239
  * Disallow negated expression in equality check.
5149
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-negation-in-equality-check.md
5240
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-negation-in-equality-check.md
5150
5241
  */
5151
5242
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
5152
5243
  /**
5153
5244
  * Disallow nested ternary expressions.
5154
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-nested-ternary.md
5245
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-nested-ternary.md
5155
5246
  */
5156
5247
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
5157
5248
  /**
5158
5249
  * Disallow `new Array()`.
5159
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-new-array.md
5250
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-new-array.md
5160
5251
  */
5161
5252
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
5162
5253
  /**
5163
5254
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
5164
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-new-buffer.md
5255
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-new-buffer.md
5165
5256
  */
5166
5257
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
5167
5258
  /**
5168
5259
  * Disallow the use of the `null` literal.
5169
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-null.md
5260
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-null.md
5170
5261
  */
5171
5262
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>;
5172
5263
  /**
5173
5264
  * Disallow the use of objects as default parameters.
5174
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-object-as-default-parameter.md
5265
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-object-as-default-parameter.md
5175
5266
  */
5176
5267
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
5177
5268
  /**
5178
5269
  * Disallow `process.exit()`.
5179
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-process-exit.md
5270
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-process-exit.md
5180
5271
  */
5181
5272
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
5182
5273
  /**
5183
5274
  * Disallow passing single-element arrays to `Promise` methods.
5184
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-single-promise-in-promise-methods.md
5275
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-single-promise-in-promise-methods.md
5185
5276
  */
5186
5277
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
5187
5278
  /**
5188
5279
  * Disallow classes that only have static members.
5189
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-static-only-class.md
5280
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-static-only-class.md
5190
5281
  */
5191
5282
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
5192
5283
  /**
5193
5284
  * Disallow `then` property.
5194
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-thenable.md
5285
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-thenable.md
5195
5286
  */
5196
5287
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
5197
5288
  /**
5198
5289
  * Disallow assigning `this` to a variable.
5199
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-this-assignment.md
5290
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-this-assignment.md
5200
5291
  */
5201
5292
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
5293
+ /**
5294
+ * Disallow `this` outside of classes.
5295
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-this-outside-of-class.md
5296
+ */
5297
+ 'unicorn/no-this-outside-of-class'?: Linter.RuleEntry<[]>;
5202
5298
  /**
5203
5299
  * Disallow comparing `undefined` using `typeof`.
5204
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-typeof-undefined.md
5300
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-typeof-undefined.md
5205
5301
  */
5206
5302
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
5207
5303
  /**
5208
5304
  * Disallow using `1` as the `depth` argument of `Array#flat()`.
5209
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-array-flat-depth.md
5305
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-array-flat-depth.md
5210
5306
  */
5211
5307
  'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
5212
5308
  /**
5213
5309
  * Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
5214
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-array-splice-count.md
5310
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-array-splice-count.md
5215
5311
  */
5216
5312
  'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
5217
5313
  /**
5218
5314
  * Disallow awaiting non-promise values.
5219
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-await.md
5315
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-await.md
5220
5316
  */
5221
5317
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
5318
+ /**
5319
+ * Disallow unnecessary nested ternary expressions.
5320
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-nested-ternary.md
5321
+ */
5322
+ 'unicorn/no-unnecessary-nested-ternary'?: Linter.RuleEntry<[]>;
5222
5323
  /**
5223
5324
  * Enforce the use of built-in methods instead of unnecessary polyfills.
5224
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-polyfills.md
5325
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-polyfills.md
5225
5326
  */
5226
5327
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
5227
5328
  /**
5228
5329
  * Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
5229
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-slice-end.md
5330
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-slice-end.md
5230
5331
  */
5231
5332
  'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
5232
5333
  /**
5233
5334
  * Disallow unreadable array destructuring.
5234
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unreadable-array-destructuring.md
5335
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unreadable-array-destructuring.md
5235
5336
  */
5236
5337
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
5237
5338
  /**
5238
5339
  * Disallow unreadable IIFEs.
5239
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unreadable-iife.md
5340
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unreadable-iife.md
5240
5341
  */
5241
5342
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
5343
+ /**
5344
+ * Disallow ignoring the return value of selected array methods.
5345
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unused-array-method-return.md
5346
+ */
5347
+ 'unicorn/no-unused-array-method-return'?: Linter.RuleEntry<[]>;
5242
5348
  /**
5243
5349
  * Disallow unused object properties.
5244
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unused-properties.md
5350
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unused-properties.md
5245
5351
  */
5246
5352
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
5247
5353
  /**
5248
5354
  * Disallow useless values or fallbacks in `Set`, `Map`, `WeakSet`, or `WeakMap`.
5249
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-collection-argument.md
5355
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-collection-argument.md
5250
5356
  */
5251
5357
  'unicorn/no-useless-collection-argument'?: Linter.RuleEntry<[]>;
5252
5358
  /**
5253
5359
  * Disallow unnecessary `Error.captureStackTrace(…)`.
5254
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-error-capture-stack-trace.md
5360
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-error-capture-stack-trace.md
5255
5361
  */
5256
5362
  'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
5257
5363
  /**
5258
5364
  * Disallow useless fallback when spreading in object literals.
5259
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-fallback-in-spread.md
5365
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-fallback-in-spread.md
5260
5366
  */
5261
5367
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
5262
5368
  /**
5263
5369
  * Disallow unnecessary `.toArray()` on iterators.
5264
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-iterator-to-array.md
5370
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-iterator-to-array.md
5265
5371
  */
5266
5372
  'unicorn/no-useless-iterator-to-array'?: Linter.RuleEntry<[]>;
5267
5373
  /**
5268
5374
  * Disallow useless array length check.
5269
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-length-check.md
5375
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-length-check.md
5270
5376
  */
5271
5377
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
5272
5378
  /**
5273
5379
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
5274
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-promise-resolve-reject.md
5380
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-promise-resolve-reject.md
5275
5381
  */
5276
5382
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
5277
5383
  /**
5278
5384
  * Disallow unnecessary spread.
5279
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-spread.md
5385
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-spread.md
5280
5386
  */
5281
5387
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
5282
5388
  /**
5283
5389
  * Disallow useless case in switch statements.
5284
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-switch-case.md
5390
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-switch-case.md
5285
5391
  */
5286
5392
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
5287
5393
  /**
5288
5394
  * Disallow useless `undefined`.
5289
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-undefined.md
5395
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-undefined.md
5290
5396
  */
5291
5397
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>;
5292
5398
  /**
5293
5399
  * Disallow number literals with zero fractions or dangling dots.
5294
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-zero-fractions.md
5400
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-zero-fractions.md
5295
5401
  */
5296
5402
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
5297
5403
  /**
5298
5404
  * Enforce proper case for numeric literals.
5299
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/number-literal-case.md
5405
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/number-literal-case.md
5300
5406
  */
5301
5407
  'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>;
5302
5408
  /**
5303
5409
  * Enforce the style of numeric separators by correctly grouping digits.
5304
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/numeric-separators-style.md
5410
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/numeric-separators-style.md
5305
5411
  */
5306
5412
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
5307
5413
  /**
5308
5414
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
5309
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-add-event-listener.md
5415
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-add-event-listener.md
5310
5416
  */
5311
5417
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>;
5312
5418
  /**
5313
5419
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
5314
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-find.md
5420
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-find.md
5315
5421
  */
5316
5422
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>;
5317
5423
  /**
5318
5424
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
5319
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-flat.md
5425
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-flat.md
5320
5426
  */
5321
5427
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>;
5322
5428
  /**
5323
5429
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
5324
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-flat-map.md
5430
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-flat-map.md
5325
5431
  */
5326
5432
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
5327
5433
  /**
5328
5434
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
5329
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-index-of.md
5435
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-index-of.md
5330
5436
  */
5331
5437
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
5438
+ /**
5439
+ * Prefer last-oriented array methods over `Array#reverse()` or `Array#toReversed()` followed by a method.
5440
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-last-methods.md
5441
+ */
5442
+ 'unicorn/prefer-array-last-methods'?: Linter.RuleEntry<[]>;
5332
5443
  /**
5333
5444
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
5334
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-some.md
5445
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-some.md
5335
5446
  */
5336
5447
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
5337
5448
  /**
5338
5449
  * Prefer `.at()` method for index access and `String#charAt()`.
5339
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-at.md
5450
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-at.md
5340
5451
  */
5341
5452
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>;
5342
5453
  /**
5343
5454
  * Prefer `BigInt` literals over the constructor.
5344
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-bigint-literals.md
5455
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-bigint-literals.md
5345
5456
  */
5346
5457
  'unicorn/prefer-bigint-literals'?: Linter.RuleEntry<[]>;
5347
5458
  /**
5348
5459
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
5349
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-blob-reading-methods.md
5460
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-blob-reading-methods.md
5350
5461
  */
5351
5462
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
5352
5463
  /**
5353
5464
  * Prefer class field declarations over `this` assignments in constructors.
5354
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-class-fields.md
5465
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-class-fields.md
5355
5466
  */
5356
5467
  'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
5357
5468
  /**
5358
5469
  * Prefer using `Element#classList.toggle()` to toggle class names.
5359
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-classlist-toggle.md
5470
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-classlist-toggle.md
5360
5471
  */
5361
5472
  'unicorn/prefer-classlist-toggle'?: Linter.RuleEntry<[]>;
5362
5473
  /**
5363
5474
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
5364
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-code-point.md
5475
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-code-point.md
5365
5476
  */
5366
5477
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
5367
5478
  /**
5368
5479
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
5369
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-date-now.md
5480
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-date-now.md
5370
5481
  */
5371
5482
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
5372
5483
  /**
5373
5484
  * Prefer default parameters over reassignment.
5374
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-default-parameters.md
5485
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-default-parameters.md
5375
5486
  */
5376
5487
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
5377
5488
  /**
5378
- * Prefer `Node#append()` over `Node#appendChild()`.
5379
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-append.md
5489
+ * Prefer `Element#append()` over `Node#appendChild()`.
5490
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-dom-node-append.md
5380
5491
  */
5381
5492
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
5382
5493
  /**
5383
- * Prefer using `.dataset` on DOM elements over calling attribute methods.
5384
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-dataset.md
5494
+ * Renamed to `unicorn/dom-node-dataset`.
5495
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#prefer-dom-node-dataset
5496
+ * @deprecated
5385
5497
  */
5386
5498
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
5387
5499
  /**
5388
5500
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
5389
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-remove.md
5501
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-dom-node-remove.md
5390
5502
  */
5391
5503
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
5392
5504
  /**
5393
5505
  * Prefer `.textContent` over `.innerText`.
5394
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-text-content.md
5506
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-dom-node-text-content.md
5395
5507
  */
5396
5508
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
5397
5509
  /**
5398
5510
  * Prefer `EventTarget` over `EventEmitter`.
5399
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-event-target.md
5511
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-event-target.md
5400
5512
  */
5401
5513
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
5402
5514
  /**
5403
5515
  * Prefer `export…from` when re-exporting.
5404
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-export-from.md
5516
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-export-from.md
5405
5517
  */
5406
5518
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>;
5519
+ /**
5520
+ * Prefer `.getOrInsertComputed()` when the default value has side effects.
5521
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-get-or-insert-computed.md
5522
+ */
5523
+ 'unicorn/prefer-get-or-insert-computed'?: Linter.RuleEntry<[]>;
5407
5524
  /**
5408
5525
  * Prefer `globalThis` over `window`, `self`, and `global`.
5409
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-global-this.md
5526
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-global-this.md
5410
5527
  */
5411
5528
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
5529
+ /**
5530
+ * Prefer HTTPS over HTTP.
5531
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-https.md
5532
+ */
5533
+ 'unicorn/prefer-https'?: Linter.RuleEntry<[]>;
5412
5534
  /**
5413
5535
  * Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
5414
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-import-meta-properties.md
5536
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-import-meta-properties.md
5415
5537
  */
5416
5538
  'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
5417
5539
  /**
5418
5540
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
5419
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-includes.md
5541
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-includes.md
5420
5542
  */
5421
5543
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
5422
5544
  /**
5423
- * Prefer reading a JSON file as a buffer.
5424
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-json-parse-buffer.md
5545
+ * Prefer `.includes()` over repeated equality comparisons.
5546
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-includes-over-repeated-comparisons.md
5547
+ */
5548
+ 'unicorn/prefer-includes-over-repeated-comparisons'?: Linter.RuleEntry<UnicornPreferIncludesOverRepeatedComparisons>;
5549
+ /**
5550
+ * Prefer `Iterator.concat(…)` over temporary spread arrays.
5551
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-iterator-concat.md
5552
+ */
5553
+ 'unicorn/prefer-iterator-concat'?: Linter.RuleEntry<[]>;
5554
+ /**
5555
+ * Prefer moving `.toArray()` to the end of iterator helper chains.
5556
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-iterator-to-array-at-end.md
5557
+ */
5558
+ 'unicorn/prefer-iterator-to-array-at-end'?: Linter.RuleEntry<[]>;
5559
+ /**
5560
+ * Renamed to `unicorn/consistent-json-file-read`.
5561
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#prefer-json-parse-buffer
5562
+ * @deprecated
5425
5563
  */
5426
5564
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
5427
5565
  /**
5428
- * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
5429
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-keyboard-event-key.md
5566
+ * Prefer `KeyboardEvent#key` over deprecated keyboard event properties.
5567
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-keyboard-event-key.md
5430
5568
  */
5431
5569
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
5432
5570
  /**
5433
5571
  * Prefer using a logical operator over a ternary.
5434
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-logical-operator-over-ternary.md
5572
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-logical-operator-over-ternary.md
5435
5573
  */
5436
5574
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
5575
+ /**
5576
+ * Prefer `Math.abs()` over manual absolute value expressions and symmetric range checks.
5577
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-math-abs.md
5578
+ */
5579
+ 'unicorn/prefer-math-abs'?: Linter.RuleEntry<[]>;
5437
5580
  /**
5438
5581
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
5439
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-math-min-max.md
5582
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-math-min-max.md
5440
5583
  */
5441
5584
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
5442
5585
  /**
5443
5586
  * Enforce the use of `Math.trunc` instead of bitwise operators.
5444
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-math-trunc.md
5587
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-math-trunc.md
5445
5588
  */
5446
5589
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
5447
5590
  /**
5448
5591
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
5449
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-modern-dom-apis.md
5592
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-modern-dom-apis.md
5450
5593
  */
5451
5594
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
5452
5595
  /**
5453
5596
  * Prefer modern `Math` APIs over legacy patterns.
5454
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-modern-math-apis.md
5597
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-modern-math-apis.md
5455
5598
  */
5456
5599
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
5457
5600
  /**
5458
5601
  * Prefer JavaScript modules (ESM) over CommonJS.
5459
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-module.md
5602
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-module.md
5460
5603
  */
5461
5604
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
5462
5605
  /**
5463
5606
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
5464
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-native-coercion-functions.md
5607
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-native-coercion-functions.md
5465
5608
  */
5466
5609
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
5467
5610
  /**
5468
5611
  * Prefer negative index over `.length - index` when possible.
5469
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-negative-index.md
5612
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-negative-index.md
5470
5613
  */
5471
5614
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
5472
5615
  /**
5473
5616
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
5474
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-node-protocol.md
5617
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-node-protocol.md
5475
5618
  */
5476
5619
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
5477
5620
  /**
5478
5621
  * Prefer `Number` static properties over global ones.
5479
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-number-properties.md
5622
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-number-properties.md
5480
5623
  */
5481
5624
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>;
5482
5625
  /**
5483
5626
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
5484
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-object-from-entries.md
5627
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-object-from-entries.md
5485
5628
  */
5486
5629
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
5487
5630
  /**
5488
5631
  * Prefer omitting the `catch` binding parameter.
5489
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-optional-catch-binding.md
5632
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-optional-catch-binding.md
5490
5633
  */
5491
5634
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
5492
5635
  /**
5493
5636
  * Prefer borrowing methods from the prototype instead of the instance.
5494
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-prototype-methods.md
5637
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-prototype-methods.md
5495
5638
  */
5496
5639
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
5497
5640
  /**
5498
- * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
5499
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-query-selector.md
5641
+ * Prefer `.querySelector()` and `.querySelectorAll()` over older DOM query methods.
5642
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-query-selector.md
5643
+ */
5644
+ 'unicorn/prefer-query-selector'?: Linter.RuleEntry<UnicornPreferQuerySelector>;
5645
+ /**
5646
+ * Prefer `queueMicrotask()` over `process.nextTick()`, `setImmediate()`, and `setTimeout(…, 0)`.
5647
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-queue-microtask.md
5500
5648
  */
5501
- 'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
5649
+ 'unicorn/prefer-queue-microtask'?: Linter.RuleEntry<UnicornPreferQueueMicrotask>;
5502
5650
  /**
5503
5651
  * Prefer `Reflect.apply()` over `Function#apply()`.
5504
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-reflect-apply.md
5652
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-reflect-apply.md
5505
5653
  */
5506
5654
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
5507
5655
  /**
5508
5656
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
5509
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-regexp-test.md
5657
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-regexp-test.md
5510
5658
  */
5511
5659
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
5512
5660
  /**
5513
5661
  * Prefer `Response.json()` over `new Response(JSON.stringify())`.
5514
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-response-static-json.md
5662
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-response-static-json.md
5515
5663
  */
5516
5664
  'unicorn/prefer-response-static-json'?: Linter.RuleEntry<[]>;
5517
5665
  /**
5518
5666
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
5519
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-set-has.md
5667
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-set-has.md
5520
5668
  */
5521
- 'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
5669
+ 'unicorn/prefer-set-has'?: Linter.RuleEntry<UnicornPreferSetHas>;
5522
5670
  /**
5523
5671
  * Prefer using `Set#size` instead of `Array#length`.
5524
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-set-size.md
5672
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-set-size.md
5525
5673
  */
5526
5674
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
5527
5675
  /**
5528
5676
  * Prefer simple conditions first in logical expressions.
5529
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-simple-condition-first.md
5677
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-simple-condition-first.md
5530
5678
  */
5531
5679
  'unicorn/prefer-simple-condition-first'?: Linter.RuleEntry<[]>;
5532
5680
  /**
5533
- * Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
5534
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-single-call.md
5681
+ * Enforce combining multiple `Array#{push,unshift}()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
5682
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-single-call.md
5535
5683
  */
5536
5684
  'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>;
5685
+ /**
5686
+ * Prefer `String#split()` with a limit.
5687
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-split-limit.md
5688
+ */
5689
+ 'unicorn/prefer-split-limit'?: Linter.RuleEntry<[]>;
5537
5690
  /**
5538
5691
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
5539
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-spread.md
5692
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-spread.md
5540
5693
  */
5541
5694
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
5695
+ /**
5696
+ * Prefer `String#matchAll()` over `RegExp#exec()` loops.
5697
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-match-all.md
5698
+ */
5699
+ 'unicorn/prefer-string-match-all'?: Linter.RuleEntry<[]>;
5700
+ /**
5701
+ * Prefer `String#padStart()` and `String#padEnd()` over manual string padding.
5702
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-pad-start-end.md
5703
+ */
5704
+ 'unicorn/prefer-string-pad-start-end'?: Linter.RuleEntry<[]>;
5542
5705
  /**
5543
5706
  * Prefer using the `String.raw` tag to avoid escaping `\`.
5544
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-raw.md
5707
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-raw.md
5545
5708
  */
5546
5709
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
5547
5710
  /**
5548
- * Prefer `String#replaceAll()` over regex searches with the global flag.
5549
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-replace-all.md
5711
+ * Prefer `String#repeat()` for repeated whitespace.
5712
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-repeat.md
5713
+ */
5714
+ 'unicorn/prefer-string-repeat'?: Linter.RuleEntry<UnicornPreferStringRepeat>;
5715
+ /**
5716
+ * Prefer `String#replaceAll()` over regex searches with the global flag and `String#split().join()`.
5717
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-replace-all.md
5550
5718
  */
5551
5719
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
5552
5720
  /**
5553
5721
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
5554
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-slice.md
5722
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-slice.md
5555
5723
  */
5556
5724
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
5557
5725
  /**
5558
5726
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
5559
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-starts-ends-with.md
5727
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-starts-ends-with.md
5560
5728
  */
5561
5729
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
5562
5730
  /**
5563
5731
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
5564
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-trim-start-end.md
5732
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-trim-start-end.md
5565
5733
  */
5566
5734
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
5567
5735
  /**
5568
5736
  * Prefer using `structuredClone` to create a deep clone.
5569
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-structured-clone.md
5737
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-structured-clone.md
5570
5738
  */
5571
5739
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>;
5572
5740
  /**
5573
5741
  * Prefer `switch` over multiple `else-if`.
5574
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-switch.md
5742
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-switch.md
5575
5743
  */
5576
5744
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>;
5577
5745
  /**
5578
5746
  * Prefer ternary expressions over simple `if-else` statements.
5579
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-ternary.md
5747
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-ternary.md
5580
5748
  */
5581
5749
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>;
5582
5750
  /**
5583
5751
  * Prefer top-level await over top-level promises and async function calls.
5584
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-top-level-await.md
5752
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-top-level-await.md
5585
5753
  */
5586
5754
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
5587
5755
  /**
5588
5756
  * Enforce throwing `TypeError` in type checking conditions.
5589
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-type-error.md
5757
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-type-error.md
5590
5758
  */
5591
5759
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
5592
5760
  /**
5593
5761
  * Prevent abbreviations.
5594
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prevent-abbreviations.md
5762
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prevent-abbreviations.md
5595
5763
  */
5596
5764
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>;
5597
5765
  /**
5598
5766
  * Enforce consistent relative URL style.
5599
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/relative-url-style.md
5767
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/relative-url-style.md
5600
5768
  */
5601
5769
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
5602
5770
  /**
5603
5771
  * Enforce using the separator argument with `Array#join()`.
5604
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-array-join-separator.md
5772
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-array-join-separator.md
5605
5773
  */
5606
5774
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
5775
+ /**
5776
+ * Require `CSS.escape()` for interpolated values in CSS selectors.
5777
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-css-escape.md
5778
+ */
5779
+ 'unicorn/require-css-escape'?: Linter.RuleEntry<UnicornRequireCssEscape>;
5607
5780
  /**
5608
5781
  * Require non-empty module attributes for imports and exports
5609
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-module-attributes.md
5782
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-module-attributes.md
5610
5783
  */
5611
5784
  'unicorn/require-module-attributes'?: Linter.RuleEntry<[]>;
5612
5785
  /**
5613
5786
  * Require non-empty specifier list in import and export statements.
5614
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-module-specifiers.md
5787
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-module-specifiers.md
5615
5788
  */
5616
5789
  'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
5617
5790
  /**
5618
5791
  * Enforce using the digits argument with `Number#toFixed()`.
5619
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-number-to-fixed-digits-argument.md
5792
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-number-to-fixed-digits-argument.md
5620
5793
  */
5621
5794
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
5795
+ /**
5796
+ * Require passive event listeners for high-frequency events.
5797
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-passive-events.md
5798
+ */
5799
+ 'unicorn/require-passive-events'?: Linter.RuleEntry<[]>;
5622
5800
  /**
5623
5801
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
5624
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-post-message-target-origin.md
5802
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-post-message-target-origin.md
5625
5803
  */
5626
5804
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
5627
5805
  /**
5628
5806
  * Enforce better string content.
5629
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/string-content.md
5807
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/string-content.md
5630
5808
  */
5631
5809
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>;
5632
5810
  /**
5633
5811
  * Enforce consistent brace style for `case` clauses.
5634
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/switch-case-braces.md
5812
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/switch-case-braces.md
5635
5813
  */
5636
5814
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
5637
5815
  /**
5638
5816
  * Enforce consistent `break`/`return`/`continue`/`throw` position in `case` clauses.
5639
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/switch-case-break-position.md
5817
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/switch-case-break-position.md
5640
5818
  */
5641
5819
  'unicorn/switch-case-break-position'?: Linter.RuleEntry<[]>;
5642
5820
  /**
5643
5821
  * Fix whitespace-insensitive template indentation.
5644
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/template-indent.md
5822
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/template-indent.md
5645
5823
  */
5646
5824
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>;
5647
5825
  /**
5648
5826
  * Enforce consistent case for text encoding identifiers.
5649
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/text-encoding-identifier-case.md
5827
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/text-encoding-identifier-case.md
5650
5828
  */
5651
5829
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<UnicornTextEncodingIdentifierCase>;
5652
5830
  /**
5653
5831
  * Require `new` when creating an error.
5654
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/throw-new-error.md
5832
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/throw-new-error.md
5655
5833
  */
5656
5834
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
5835
+ /**
5836
+ * Limit the complexity of `try` blocks.
5837
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/try-complexity.md
5838
+ */
5839
+ 'unicorn/try-complexity'?: Linter.RuleEntry<UnicornTryComplexity>;
5657
5840
  /**
5658
5841
  * Disallow unused variables
5659
5842
  * @see https://github.com/sweepline/eslint-plugin-unused-imports/blob/master/docs/rules/no-unused-imports.md
@@ -5890,7 +6073,7 @@ interface RuleOptions {
5890
6073
  */
5891
6074
  'vue/jsx-uses-vars'?: Linter.RuleEntry<[]>;
5892
6075
  /**
5893
- * Enforce consistent spacing between keys and values in object literal properties in `<template>`
6076
+ * Enforce consistent spacing between property names and type annotations in types and interfaces in `<template>`
5894
6077
  * @see https://eslint.vuejs.org/rules/key-spacing.html
5895
6078
  */
5896
6079
  'vue/key-spacing'?: Linter.RuleEntry<VueKeySpacing>;
@@ -6188,7 +6371,7 @@ interface RuleOptions {
6188
6371
  * disallow object, array, and function literals in template
6189
6372
  * @see https://eslint.vuejs.org/rules/no-literals-in-template.html
6190
6373
  */
6191
- 'vue/no-literals-in-template'?: Linter.RuleEntry<[]>;
6374
+ 'vue/no-literals-in-template'?: Linter.RuleEntry<VueNoLiteralsInTemplate>;
6192
6375
  /**
6193
6376
  * disallow unnecessary `<template>`
6194
6377
  * @see https://eslint.vuejs.org/rules/no-lone-template.html
@@ -6581,6 +6764,11 @@ interface RuleOptions {
6581
6764
  * @see https://eslint.vuejs.org/rules/prefer-separate-static-class.html
6582
6765
  */
6583
6766
  'vue/prefer-separate-static-class'?: Linter.RuleEntry<[]>;
6767
+ /**
6768
+ * enforce passing a single argument to custom event emissions
6769
+ * @see https://eslint.vuejs.org/rules/prefer-single-event-payload.html
6770
+ */
6771
+ 'vue/prefer-single-event-payload'?: Linter.RuleEntry<[]>;
6584
6772
  /**
6585
6773
  * Require template literals instead of string concatenation in `<template>`
6586
6774
  * @see https://eslint.vuejs.org/rules/prefer-template.html
@@ -6596,13 +6784,18 @@ interface RuleOptions {
6596
6784
  * @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
6597
6785
  */
6598
6786
  'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>;
6787
+ /**
6788
+ * enforce using `v-model` instead of `:prop`/`@update:prop` pair
6789
+ * @see https://eslint.vuejs.org/rules/prefer-v-model.html
6790
+ */
6791
+ 'vue/prefer-v-model'?: Linter.RuleEntry<[]>;
6599
6792
  /**
6600
6793
  * enforce specific casing for the Prop name in Vue components
6601
6794
  * @see https://eslint.vuejs.org/rules/prop-name-casing.html
6602
6795
  */
6603
6796
  'vue/prop-name-casing'?: Linter.RuleEntry<VuePropNameCasing>;
6604
6797
  /**
6605
- * Require quotes around object literal property names in `<template>`
6798
+ * Require quotes around object literal, type literal, interfaces and enums property names in `<template>`
6606
6799
  * @see https://eslint.vuejs.org/rules/quote-props.html
6607
6800
  */
6608
6801
  'vue/quote-props'?: Linter.RuleEntry<VueQuoteProps>;
@@ -7116,7 +7309,6 @@ type IntlifyVueI18NNoRawText = [] | [{
7116
7309
  ignoreNodes?: unknown[];
7117
7310
  ignorePattern?: string;
7118
7311
  ignoreText?: unknown[];
7119
- [k: string]: unknown | undefined;
7120
7312
  }]; // ----- @intlify/vue-i18n/no-unknown-locale -----
7121
7313
  type IntlifyVueI18NNoUnknownLocale = [] | [{
7122
7314
  locales?: string[];
@@ -7131,6 +7323,11 @@ type IntlifyVueI18NNoUnusedKeys = [] | [{
7131
7323
  type IntlifyVueI18NSfcLocaleAttr = [] | [("always" | "never")]; // ----- @intlify/vue-i18n/valid-message-syntax -----
7132
7324
  type IntlifyVueI18NValidMessageSyntax = [] | [{
7133
7325
  allowNotString?: boolean;
7326
+ }]; // ----- @intlify/vue-i18n/valid-plural-forms -----
7327
+ type IntlifyVueI18NValidPluralForms = [] | [{
7328
+ pluralFormCounts?: {
7329
+ [k: string]: [number, ...(number)[]] | undefined;
7330
+ };
7134
7331
  }]; // ----- @rotki/composable-input-flexibility -----
7135
7332
  type RotkiComposableInputFlexibility = [] | [{
7136
7333
  autofix?: boolean;
@@ -7140,6 +7337,7 @@ type RotkiComposablePreferShallowref = [] | [{
7140
7337
  }]; // ----- @rotki/composable-return-readonly -----
7141
7338
  type RotkiComposableReturnReadonly = [] | [{
7142
7339
  autofix?: boolean;
7340
+ writablePrefixes?: string[];
7143
7341
  }]; // ----- @rotki/consistent-ref-type-annotation -----
7144
7342
  type RotkiConsistentRefTypeAnnotation = [] | [{
7145
7343
  allowInference?: boolean;
@@ -10296,6 +10494,7 @@ type MaxParams = [] | [(number | {
10296
10494
  maximum?: number;
10297
10495
  max?: number;
10298
10496
  countVoidThis?: boolean;
10497
+ countThis?: ("never" | "except-void" | "always");
10299
10498
  })]; // ----- max-statements -----
10300
10499
  type MaxStatements = [] | [(number | {
10301
10500
  maximum?: number;
@@ -10796,7 +10995,6 @@ type NodeNoUnpublishedBin = [] | [{
10796
10995
  exclude?: string[];
10797
10996
  replace: [string, string];
10798
10997
  })[]]);
10799
- [k: string]: unknown | undefined;
10800
10998
  }]; // ----- node/no-unpublished-import -----
10801
10999
  type NodeNoUnpublishedImport = [] | [{
10802
11000
  allowModules?: string[];
@@ -10850,7 +11048,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
10850
11048
  type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
10851
11049
  version?: string;
10852
11050
  allowExperimental?: boolean;
10853
- 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")[];
11051
+ 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")[];
10854
11052
  }]; // ----- node/prefer-global/buffer -----
10855
11053
  type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
10856
11054
  type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
@@ -11074,6 +11272,112 @@ type PerfectionistSortArrayIncludes = {
11074
11272
  } | string)));
11075
11273
  });
11076
11274
  partitionByNewLine?: boolean;
11275
+ }[]; // ----- perfectionist/sort-arrays -----
11276
+ type PerfectionistSortArrays = {
11277
+ fallbackSort?: {
11278
+ type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
11279
+ order?: ("asc" | "desc");
11280
+ };
11281
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
11282
+ specialCharacters?: ("remove" | "trim" | "keep");
11283
+ ignoreCase?: boolean;
11284
+ alphabet?: string;
11285
+ locales?: (string | string[]);
11286
+ order?: ("asc" | "desc");
11287
+ customGroups?: ({
11288
+ fallbackSort?: {
11289
+ type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
11290
+ order?: ("asc" | "desc");
11291
+ };
11292
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
11293
+ groupName: string;
11294
+ newlinesInside?: ("ignore" | number);
11295
+ order?: ("asc" | "desc");
11296
+ anyOf: [{
11297
+ elementNamePattern?: (({
11298
+ pattern: string;
11299
+ flags?: string;
11300
+ } | string)[] | ({
11301
+ pattern: string;
11302
+ flags?: string;
11303
+ } | string));
11304
+ selector?: "literal";
11305
+ }, ...({
11306
+ elementNamePattern?: (({
11307
+ pattern: string;
11308
+ flags?: string;
11309
+ } | string)[] | ({
11310
+ pattern: string;
11311
+ flags?: string;
11312
+ } | string));
11313
+ selector?: "literal";
11314
+ })[]];
11315
+ } | {
11316
+ fallbackSort?: {
11317
+ type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
11318
+ order?: ("asc" | "desc");
11319
+ };
11320
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
11321
+ groupName: string;
11322
+ newlinesInside?: ("ignore" | number);
11323
+ order?: ("asc" | "desc");
11324
+ elementNamePattern?: (({
11325
+ pattern: string;
11326
+ flags?: string;
11327
+ } | string)[] | ({
11328
+ pattern: string;
11329
+ flags?: string;
11330
+ } | string));
11331
+ selector?: "literal";
11332
+ })[];
11333
+ newlinesInside?: (("ignore" | number) | "newlinesBetween");
11334
+ groups?: (string | [string, ...(string)[]] | {
11335
+ newlinesBetween: ("ignore" | number);
11336
+ } | {
11337
+ group: (string | [string, ...(string)[]]);
11338
+ fallbackSort?: {
11339
+ type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
11340
+ order?: ("asc" | "desc");
11341
+ };
11342
+ commentAbove?: string;
11343
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
11344
+ newlinesInside?: ("ignore" | number);
11345
+ order?: ("asc" | "desc");
11346
+ })[];
11347
+ newlinesBetween?: ("ignore" | number);
11348
+ useConfigurationIf: {
11349
+ allNamesMatchPattern?: (({
11350
+ pattern: string;
11351
+ flags?: string;
11352
+ } | string)[] | ({
11353
+ pattern: string;
11354
+ flags?: string;
11355
+ } | string));
11356
+ matchesAstSelector?: string;
11357
+ };
11358
+ partitionByComment?: (boolean | (({
11359
+ pattern: string;
11360
+ flags?: string;
11361
+ } | string)[] | ({
11362
+ pattern: string;
11363
+ flags?: string;
11364
+ } | string)) | {
11365
+ block?: (boolean | (({
11366
+ pattern: string;
11367
+ flags?: string;
11368
+ } | string)[] | ({
11369
+ pattern: string;
11370
+ flags?: string;
11371
+ } | string)));
11372
+ line?: (boolean | (({
11373
+ pattern: string;
11374
+ flags?: string;
11375
+ } | string)[] | ({
11376
+ pattern: string;
11377
+ flags?: string;
11378
+ } | string)));
11379
+ });
11380
+ partitionByNewLine?: boolean;
11077
11381
  }[]; // ----- perfectionist/sort-classes -----
11078
11382
  type PerfectionistSortClasses = {
11079
11383
  fallbackSort?: {
@@ -11203,6 +11507,7 @@ type PerfectionistSortClasses = {
11203
11507
  matchesAstSelector?: string;
11204
11508
  };
11205
11509
  useExperimentalDependencyDetection?: boolean;
11510
+ newlinesBetweenOverloadSignatures?: ("ignore" | number);
11206
11511
  ignoreCallbackDependenciesPatterns?: (({
11207
11512
  pattern: string;
11208
11513
  flags?: string;
@@ -12566,6 +12871,7 @@ type PerfectionistSortModules = [] | [{
12566
12871
  })[];
12567
12872
  newlinesBetween?: ("ignore" | number);
12568
12873
  useExperimentalDependencyDetection?: boolean;
12874
+ newlinesBetweenOverloadSignatures?: ("ignore" | number);
12569
12875
  partitionByComment?: (boolean | (({
12570
12876
  pattern: string;
12571
12877
  flags?: string;
@@ -13696,7 +14002,6 @@ type StorybookMetaInlineProperties = [] | [{
13696
14002
  type StorybookNoUninstalledAddons = [] | [{
13697
14003
  packageJsonLocation?: string;
13698
14004
  ignore?: string[];
13699
- [k: string]: unknown | undefined;
13700
14005
  }]; // ----- strict -----
13701
14006
  type Strict = [] | [("never" | "global" | "function" | "safe")]; // ----- switch-colon-spacing -----
13702
14007
  type SwitchColonSpacing = [] | [{
@@ -13804,23 +14109,40 @@ type TestValidTitle = [] | [{
13804
14109
  [k: string]: (string | [string] | [string, string]) | undefined;
13805
14110
  });
13806
14111
  }]; // ----- unicode-bom -----
13807
- type UnicodeBom = [] | [("always" | "never")]; // ----- unicorn/better-regex -----
13808
- type UnicornBetterRegex = [] | [{
13809
- sortCharacterClasses?: boolean;
13810
- }]; // ----- unicorn/catch-error-name -----
14112
+ type UnicodeBom = [] | [("always" | "never")]; // ----- unicorn/catch-error-name -----
13811
14113
  type UnicornCatchErrorName = [] | [{
13812
14114
  name?: string;
13813
14115
  ignore?: unknown[];
13814
- }]; // ----- unicorn/consistent-function-scoping -----
14116
+ }]; // ----- unicorn/consistent-compound-words -----
14117
+ type UnicornConsistentCompoundWords = [] | [{
14118
+ checkProperties?: boolean;
14119
+ checkVariables?: boolean;
14120
+ checkDefaultAndNamespaceImports?: (boolean | "internal");
14121
+ checkShorthandImports?: (boolean | "internal");
14122
+ checkShorthandProperties?: boolean;
14123
+ extendDefaultReplacements?: boolean;
14124
+ replacements?: _UnicornConsistentCompoundWords_Replacements;
14125
+ allowList?: _UnicornConsistentCompoundWords_TrueObject;
14126
+ }];
14127
+ interface _UnicornConsistentCompoundWords_Replacements {
14128
+ [k: string]: (false | string) | undefined;
14129
+ }
14130
+ interface _UnicornConsistentCompoundWords_TrueObject {
14131
+ [k: string]: true | undefined;
14132
+ } // ----- unicorn/consistent-function-scoping -----
13815
14133
  type UnicornConsistentFunctionScoping = [] | [{
13816
14134
  checkArrowFunctions?: boolean;
14135
+ }]; // ----- unicorn/consistent-json-file-read -----
14136
+ type UnicornConsistentJsonFileRead = [] | [("string" | "buffer")]; // ----- unicorn/dom-node-dataset -----
14137
+ type UnicornDomNodeDataset = [] | [{
14138
+ preferAttributes?: boolean;
13817
14139
  }]; // ----- unicorn/escape-case -----
13818
14140
  type UnicornEscapeCase = [] | [("uppercase" | "lowercase")]; // ----- unicorn/expiring-todo-comments -----
13819
14141
  type UnicornExpiringTodoComments = [] | [{
13820
14142
  terms?: string[];
13821
14143
  ignore?: unknown[];
13822
- ignoreDates?: boolean;
13823
- ignoreDatesOnPullRequests?: boolean;
14144
+ checkDates?: boolean;
14145
+ checkDatesOnPullRequests?: boolean;
13824
14146
  allowWarningComments?: boolean;
13825
14147
  date?: string;
13826
14148
  }]; // ----- unicorn/explicit-length-check -----
@@ -13831,6 +14153,7 @@ type UnicornFilenameCase = [] | [({
13831
14153
  case?: ("camelCase" | "snakeCase" | "kebabCase" | "pascalCase");
13832
14154
  ignore?: unknown[];
13833
14155
  multipleFileExtensions?: boolean;
14156
+ checkDirectories?: boolean;
13834
14157
  } | {
13835
14158
  cases?: {
13836
14159
  camelCase?: boolean;
@@ -13840,6 +14163,7 @@ type UnicornFilenameCase = [] | [({
13840
14163
  };
13841
14164
  ignore?: unknown[];
13842
14165
  multipleFileExtensions?: boolean;
14166
+ checkDirectories?: boolean;
13843
14167
  })]; // ----- unicorn/import-style -----
13844
14168
  type UnicornImportStyle = [] | [{
13845
14169
  checkImport?: boolean;
@@ -13863,6 +14187,9 @@ type UnicornIsolatedFunctions = [] | [{
13863
14187
  functions?: string[];
13864
14188
  selectors?: string[];
13865
14189
  comments?: string[];
14190
+ }]; // ----- unicorn/no-array-callback-reference -----
14191
+ type UnicornNoArrayCallbackReference = [] | [{
14192
+ ignore?: string[];
13866
14193
  }]; // ----- unicorn/no-array-reduce -----
13867
14194
  type UnicornNoArrayReduce = [] | [{
13868
14195
  allowSimpleOperations?: boolean;
@@ -13872,6 +14199,9 @@ type UnicornNoArrayReverse = [] | [{
13872
14199
  }]; // ----- unicorn/no-array-sort -----
13873
14200
  type UnicornNoArraySort = [] | [{
13874
14201
  allowExpressionStatement?: boolean;
14202
+ }]; // ----- unicorn/no-empty-file -----
14203
+ type UnicornNoEmptyFile = [] | [{
14204
+ allowComments?: boolean;
13875
14205
  }]; // ----- unicorn/no-instanceof-builtins -----
13876
14206
  type UnicornNoInstanceofBuiltins = [] | [{
13877
14207
  useErrorIsError?: boolean;
@@ -13885,13 +14215,14 @@ type UnicornNoKeywordPrefix = [] | [{
13885
14215
  onlyCamelCase?: boolean;
13886
14216
  }]; // ----- unicorn/no-null -----
13887
14217
  type UnicornNoNull = [] | [{
14218
+ checkArguments?: boolean;
13888
14219
  checkStrictEquality?: boolean;
13889
14220
  }]; // ----- unicorn/no-typeof-undefined -----
13890
14221
  type UnicornNoTypeofUndefined = [] | [{
13891
14222
  checkGlobalVariables?: boolean;
13892
14223
  }]; // ----- unicorn/no-unnecessary-polyfills -----
13893
14224
  type UnicornNoUnnecessaryPolyfills = [] | [{
13894
- targets: (string | unknown[] | {
14225
+ targets?: (string | unknown[] | {
13895
14226
  [k: string]: unknown | undefined;
13896
14227
  });
13897
14228
  }]; // ----- unicorn/no-useless-undefined -----
@@ -13922,6 +14253,7 @@ type UnicornNumericSeparatorsStyle = [] | [{
13922
14253
  onlyIfContainsSeparator?: boolean;
13923
14254
  minimumDigits?: number;
13924
14255
  groupLength?: number;
14256
+ fractionGroupLength?: number;
13925
14257
  };
13926
14258
  onlyIfContainsSeparator?: boolean;
13927
14259
  }]; // ----- unicorn/prefer-add-event-listener -----
@@ -13939,7 +14271,10 @@ type UnicornPreferAt = [] | [{
13939
14271
  checkAllIndexAccess?: boolean;
13940
14272
  }]; // ----- unicorn/prefer-export-from -----
13941
14273
  type UnicornPreferExportFrom = [] | [{
13942
- ignoreUsedVariables?: boolean;
14274
+ checkUsedVariables?: boolean;
14275
+ }]; // ----- unicorn/prefer-includes-over-repeated-comparisons -----
14276
+ type UnicornPreferIncludesOverRepeatedComparisons = [] | [{
14277
+ minimumComparisons?: number;
13943
14278
  }]; // ----- unicorn/prefer-number-properties -----
13944
14279
  type UnicornPreferNumberProperties = [] | [{
13945
14280
  checkInfinity?: boolean;
@@ -13947,9 +14282,22 @@ type UnicornPreferNumberProperties = [] | [{
13947
14282
  }]; // ----- unicorn/prefer-object-from-entries -----
13948
14283
  type UnicornPreferObjectFromEntries = [] | [{
13949
14284
  functions?: unknown[];
14285
+ }]; // ----- unicorn/prefer-query-selector -----
14286
+ type UnicornPreferQuerySelector = [] | [{
14287
+ allowWithVariables?: boolean;
14288
+ }]; // ----- unicorn/prefer-queue-microtask -----
14289
+ type UnicornPreferQueueMicrotask = [] | [{
14290
+ checkSetImmediate?: boolean;
14291
+ checkSetTimeout?: boolean;
14292
+ }]; // ----- unicorn/prefer-set-has -----
14293
+ type UnicornPreferSetHas = [] | [{
14294
+ minimumItems?: number;
13950
14295
  }]; // ----- unicorn/prefer-single-call -----
13951
14296
  type UnicornPreferSingleCall = [] | [{
13952
14297
  ignore?: unknown[];
14298
+ }]; // ----- unicorn/prefer-string-repeat -----
14299
+ type UnicornPreferStringRepeat = [] | [{
14300
+ minimumRepetitions?: number;
13953
14301
  }]; // ----- unicorn/prefer-structured-clone -----
13954
14302
  type UnicornPreferStructuredClone = [] | [{
13955
14303
  functions?: unknown[];
@@ -13982,15 +14330,20 @@ interface _UnicornPreventAbbreviations_BooleanObject {
13982
14330
  interface _UnicornPreventAbbreviations_BooleanObject {
13983
14331
  [k: string]: boolean | undefined;
13984
14332
  } // ----- unicorn/relative-url-style -----
13985
- type UnicornRelativeUrlStyle = [] | [("never" | "always")]; // ----- unicorn/string-content -----
14333
+ type UnicornRelativeUrlStyle = [] | [("never" | "always")]; // ----- unicorn/require-css-escape -----
14334
+ type UnicornRequireCssEscape = [] | [{
14335
+ checkAllSelectors?: boolean;
14336
+ }]; // ----- unicorn/string-content -----
13986
14337
  type UnicornStringContent = [] | [{
13987
14338
  patterns?: {
13988
14339
  [k: string]: (string | {
13989
14340
  suggest: string;
13990
14341
  fix?: boolean;
14342
+ caseSensitive?: boolean;
13991
14343
  message?: string;
13992
14344
  }) | undefined;
13993
14345
  };
14346
+ selectors?: string[];
13994
14347
  }]; // ----- unicorn/switch-case-braces -----
13995
14348
  type UnicornSwitchCaseBraces = [] | [("always" | "avoid")]; // ----- unicorn/template-indent -----
13996
14349
  type UnicornTemplateIndent = [] | [{
@@ -14002,6 +14355,9 @@ type UnicornTemplateIndent = [] | [{
14002
14355
  }]; // ----- unicorn/text-encoding-identifier-case -----
14003
14356
  type UnicornTextEncodingIdentifierCase = [] | [{
14004
14357
  withDash?: boolean;
14358
+ }]; // ----- unicorn/try-complexity -----
14359
+ type UnicornTryComplexity = [] | [{
14360
+ max?: number;
14005
14361
  }]; // ----- unused-imports/no-unused-imports -----
14006
14362
  type UnusedImportsNoUnusedImports = [] | [(("all" | "local") | {
14007
14363
  args?: ("all" | "after-used" | "none");
@@ -14056,6 +14412,7 @@ type VueArrayElementNewline = [] | [(_VueArrayElementNewlineBasicConfig | {
14056
14412
  ArrayPattern?: _VueArrayElementNewlineBasicConfig;
14057
14413
  })];
14058
14414
  type _VueArrayElementNewlineBasicConfig = (("always" | "never" | "consistent") | {
14415
+ consistent?: boolean;
14059
14416
  multiline?: boolean;
14060
14417
  minItems?: (number | null);
14061
14418
  }); // ----- vue/arrow-spacing -----
@@ -14115,9 +14472,14 @@ type VueCommaDangle = [] | [(_VueCommaDangleValue | {
14115
14472
  imports?: _VueCommaDangleValueWithIgnore;
14116
14473
  exports?: _VueCommaDangleValueWithIgnore;
14117
14474
  functions?: _VueCommaDangleValueWithIgnore;
14475
+ importAttributes?: _VueCommaDangleValueWithIgnore;
14476
+ dynamicImports?: _VueCommaDangleValueWithIgnore;
14477
+ enums?: _VueCommaDangleValueWithIgnore;
14478
+ generics?: _VueCommaDangleValueWithIgnore;
14479
+ tuples?: _VueCommaDangleValueWithIgnore;
14118
14480
  })];
14119
14481
  type _VueCommaDangleValue = ("always-multiline" | "always" | "never" | "only-multiline");
14120
- type _VueCommaDangleValueWithIgnore = ("always-multiline" | "always" | "ignore" | "never" | "only-multiline"); // ----- vue/comma-spacing -----
14482
+ type _VueCommaDangleValueWithIgnore = ("always-multiline" | "always" | "never" | "only-multiline" | "ignore"); // ----- vue/comma-spacing -----
14121
14483
  type VueCommaSpacing = [] | [{
14122
14484
  before?: boolean;
14123
14485
  after?: boolean;
@@ -14167,6 +14529,10 @@ type VueFirstAttributeLinebreak = [] | [{
14167
14529
  }]; // ----- vue/func-call-spacing -----
14168
14530
  type VueFuncCallSpacing = ([] | ["never"] | [] | ["always"] | ["always", {
14169
14531
  allowNewlines?: boolean;
14532
+ optionalChain?: {
14533
+ before?: boolean;
14534
+ after?: boolean;
14535
+ };
14170
14536
  }]); // ----- vue/html-button-has-type -----
14171
14537
  type VueHtmlButtonHasType = [] | [{
14172
14538
  button?: boolean;
@@ -14238,6 +14604,7 @@ type VueKeySpacing = [] | [({
14238
14604
  mode?: ("strict" | "minimum");
14239
14605
  beforeColon?: boolean;
14240
14606
  afterColon?: boolean;
14607
+ ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[];
14241
14608
  } | {
14242
14609
  singleLine?: {
14243
14610
  mode?: ("strict" | "minimum");
@@ -14281,18 +14648,6 @@ type VueKeywordSpacing = [] | [{
14281
14648
  before?: boolean;
14282
14649
  after?: boolean;
14283
14650
  };
14284
- as?: {
14285
- before?: boolean;
14286
- after?: boolean;
14287
- };
14288
- async?: {
14289
- before?: boolean;
14290
- after?: boolean;
14291
- };
14292
- await?: {
14293
- before?: boolean;
14294
- after?: boolean;
14295
- };
14296
14651
  boolean?: {
14297
14652
  before?: boolean;
14298
14653
  after?: boolean;
@@ -14385,18 +14740,10 @@ type VueKeywordSpacing = [] | [{
14385
14740
  before?: boolean;
14386
14741
  after?: boolean;
14387
14742
  };
14388
- from?: {
14389
- before?: boolean;
14390
- after?: boolean;
14391
- };
14392
14743
  function?: {
14393
14744
  before?: boolean;
14394
14745
  after?: boolean;
14395
14746
  };
14396
- get?: {
14397
- before?: boolean;
14398
- after?: boolean;
14399
- };
14400
14747
  goto?: {
14401
14748
  before?: boolean;
14402
14749
  after?: boolean;
@@ -14429,10 +14776,6 @@ type VueKeywordSpacing = [] | [{
14429
14776
  before?: boolean;
14430
14777
  after?: boolean;
14431
14778
  };
14432
- let?: {
14433
- before?: boolean;
14434
- after?: boolean;
14435
- };
14436
14779
  long?: {
14437
14780
  before?: boolean;
14438
14781
  after?: boolean;
@@ -14449,10 +14792,6 @@ type VueKeywordSpacing = [] | [{
14449
14792
  before?: boolean;
14450
14793
  after?: boolean;
14451
14794
  };
14452
- of?: {
14453
- before?: boolean;
14454
- after?: boolean;
14455
- };
14456
14795
  package?: {
14457
14796
  before?: boolean;
14458
14797
  after?: boolean;
@@ -14473,10 +14812,6 @@ type VueKeywordSpacing = [] | [{
14473
14812
  before?: boolean;
14474
14813
  after?: boolean;
14475
14814
  };
14476
- set?: {
14477
- before?: boolean;
14478
- after?: boolean;
14479
- };
14480
14815
  short?: {
14481
14816
  before?: boolean;
14482
14817
  after?: boolean;
@@ -14545,10 +14880,66 @@ type VueKeywordSpacing = [] | [{
14545
14880
  before?: boolean;
14546
14881
  after?: boolean;
14547
14882
  };
14883
+ arguments?: {
14884
+ before?: boolean;
14885
+ after?: boolean;
14886
+ };
14887
+ as?: {
14888
+ before?: boolean;
14889
+ after?: boolean;
14890
+ };
14891
+ async?: {
14892
+ before?: boolean;
14893
+ after?: boolean;
14894
+ };
14895
+ await?: {
14896
+ before?: boolean;
14897
+ after?: boolean;
14898
+ };
14899
+ eval?: {
14900
+ before?: boolean;
14901
+ after?: boolean;
14902
+ };
14903
+ from?: {
14904
+ before?: boolean;
14905
+ after?: boolean;
14906
+ };
14907
+ get?: {
14908
+ before?: boolean;
14909
+ after?: boolean;
14910
+ };
14911
+ let?: {
14912
+ before?: boolean;
14913
+ after?: boolean;
14914
+ };
14915
+ of?: {
14916
+ before?: boolean;
14917
+ after?: boolean;
14918
+ };
14919
+ set?: {
14920
+ before?: boolean;
14921
+ after?: boolean;
14922
+ };
14923
+ type?: {
14924
+ before?: boolean;
14925
+ after?: boolean;
14926
+ };
14927
+ using?: {
14928
+ before?: boolean;
14929
+ after?: boolean;
14930
+ };
14548
14931
  yield?: {
14549
14932
  before?: boolean;
14550
14933
  after?: boolean;
14551
14934
  };
14935
+ accessor?: {
14936
+ before?: boolean;
14937
+ after?: boolean;
14938
+ };
14939
+ satisfies?: {
14940
+ before?: boolean;
14941
+ after?: boolean;
14942
+ };
14552
14943
  };
14553
14944
  }]; // ----- vue/match-component-file-name -----
14554
14945
  type VueMatchComponentFileName = [] | [{
@@ -14668,7 +15059,9 @@ type VueMultilineHtmlElementContentNewline = [] | [{
14668
15059
  ignores?: string[];
14669
15060
  allowEmptyLines?: boolean;
14670
15061
  }]; // ----- vue/multiline-ternary -----
14671
- type VueMultilineTernary = [] | [("always" | "always-multiline" | "never")]; // ----- vue/mustache-interpolation-spacing -----
15062
+ type VueMultilineTernary = [] | [("always" | "always-multiline" | "never")] | [("always" | "always-multiline" | "never"), {
15063
+ ignoreJSX?: boolean;
15064
+ }]; // ----- vue/mustache-interpolation-spacing -----
14672
15065
  type VueMustacheInterpolationSpacing = [] | [("always" | "never")]; // ----- vue/new-line-between-multi-line-property -----
14673
15066
  type VueNewLineBetweenMultiLineProperty = [] | [{
14674
15067
  minLineOfMultilineProperty?: number;
@@ -14728,6 +15121,13 @@ type VueNoExtraParens = ([] | ["functions"] | [] | ["all"] | ["all", {
14728
15121
  enforceForNewInMemberExpressions?: boolean;
14729
15122
  enforceForFunctionPrototypeMethods?: boolean;
14730
15123
  allowParensAfterCommentPattern?: string;
15124
+ nestedConditionalExpressions?: boolean;
15125
+ allowNodesInSpreadElement?: {
15126
+ ConditionalExpression?: boolean;
15127
+ LogicalExpression?: boolean;
15128
+ AwaitExpression?: boolean;
15129
+ };
15130
+ ignoredNodes?: string[];
14731
15131
  }]); // ----- vue/no-implicit-coercion -----
14732
15132
  type VueNoImplicitCoercion = [] | [{
14733
15133
  boolean?: boolean;
@@ -14743,6 +15143,9 @@ type VueNoIrregularWhitespace = [] | [{
14743
15143
  skipRegExps?: boolean;
14744
15144
  skipHTMLAttributeValues?: boolean;
14745
15145
  skipHTMLTextContents?: boolean;
15146
+ }]; // ----- vue/no-literals-in-template -----
15147
+ type VueNoLiteralsInTemplate = [] | [{
15148
+ ignores?: string[];
14746
15149
  }]; // ----- vue/no-lone-template -----
14747
15150
  type VueNoLoneTemplate = [] | [{
14748
15151
  ignoreAccessible?: boolean;
@@ -14897,7 +15300,7 @@ type VueNoUnusedComponents = [] | [{
14897
15300
  ignoreWhenBindingPresent?: boolean;
14898
15301
  }]; // ----- vue/no-unused-properties -----
14899
15302
  type VueNoUnusedProperties = [] | [{
14900
- groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup")[];
15303
+ groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup" | "inject")[];
14901
15304
  deepData?: boolean;
14902
15305
  ignorePublicMembers?: boolean;
14903
15306
  unreferencedOptions?: ("unknownMemberAsUnreferenced" | "returnAsUnreferenced")[];
@@ -14948,14 +15351,41 @@ type VueObjectCurlyNewline = [] | [((("always" | "never") | {
14948
15351
  minProperties?: number;
14949
15352
  consistent?: boolean;
14950
15353
  });
15354
+ TSTypeLiteral?: (("always" | "never") | {
15355
+ multiline?: boolean;
15356
+ minProperties?: number;
15357
+ consistent?: boolean;
15358
+ });
15359
+ TSInterfaceBody?: (("always" | "never") | {
15360
+ multiline?: boolean;
15361
+ minProperties?: number;
15362
+ consistent?: boolean;
15363
+ });
15364
+ TSEnumBody?: (("always" | "never") | {
15365
+ multiline?: boolean;
15366
+ minProperties?: number;
15367
+ consistent?: boolean;
15368
+ });
14951
15369
  })]; // ----- vue/object-curly-spacing -----
14952
15370
  type VueObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
14953
15371
  arraysInObjects?: boolean;
14954
15372
  objectsInObjects?: boolean;
15373
+ overrides?: {
15374
+ ObjectPattern?: ("always" | "never");
15375
+ ObjectExpression?: ("always" | "never");
15376
+ ImportDeclaration?: ("always" | "never");
15377
+ ImportAttributes?: ("always" | "never");
15378
+ ExportNamedDeclaration?: ("always" | "never");
15379
+ ExportAllDeclaration?: ("always" | "never");
15380
+ TSMappedType?: ("always" | "never");
15381
+ TSTypeLiteral?: ("always" | "never");
15382
+ TSInterfaceBody?: ("always" | "never");
15383
+ TSEnumBody?: ("always" | "never");
15384
+ };
15385
+ emptyObjects?: ("ignore" | "always" | "never");
14955
15386
  }]; // ----- vue/object-property-newline -----
14956
15387
  type VueObjectPropertyNewline = [] | [{
14957
15388
  allowAllPropertiesOnSameLine?: boolean;
14958
- allowMultiplePropertiesPerLine?: boolean;
14959
15389
  }]; // ----- vue/object-shorthand -----
14960
15390
  type VueObjectShorthand = ([] | [("always" | "methods" | "properties" | "never" | "consistent" | "consistent-as-needed")] | [] | [("always" | "methods" | "properties")] | [("always" | "methods" | "properties"), {
14961
15391
  avoidQuotes?: boolean;
@@ -14965,7 +15395,7 @@ type VueObjectShorthand = ([] | [("always" | "methods" | "properties" | "never"
14965
15395
  avoidQuotes?: boolean;
14966
15396
  avoidExplicitReturnArrows?: boolean;
14967
15397
  }]); // ----- vue/operator-linebreak -----
14968
- type VueOperatorLinebreak = [] | [("after" | "before" | "none" | null)] | [("after" | "before" | "none" | null), {
15398
+ type VueOperatorLinebreak = [] | [(("after" | "before" | "none") | null)] | [(("after" | "before" | "none") | null), {
14969
15399
  overrides?: {
14970
15400
  [k: string]: ("after" | "before" | "none" | "ignore") | undefined;
14971
15401
  };
@@ -15053,6 +15483,7 @@ type VueSpaceInParens = [] | [("always" | "never")] | [("always" | "never"), {
15053
15483
  }]; // ----- vue/space-infix-ops -----
15054
15484
  type VueSpaceInfixOps = [] | [{
15055
15485
  int32Hint?: boolean;
15486
+ ignoreTypes?: boolean;
15056
15487
  }]; // ----- vue/space-unary-ops -----
15057
15488
  type VueSpaceUnaryOps = [] | [{
15058
15489
  words?: boolean;
@@ -15294,7 +15725,7 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
15294
15725
  exceptRange?: boolean;
15295
15726
  onlyEquality?: boolean;
15296
15727
  }]; // Names of all the configs
15297
- type ConfigNames = 'rotki/eslint-comments/rules' | 'rotki/formatter/setup' | 'rotki/import/rules' | 'rotki/javascript/setup' | 'rotki/javascript/rules' | 'rotki/jsonc/setup' | 'rotki/jsonc/rules' | 'rotki/markdown/setup' | 'rotki/markdown/processor' | 'rotki/markdown/parser' | 'rotki/markdown/rules' | 'rotki/markdown/disables/markdown' | 'rotki/markdown/disables/code' | 'rotki/markdown/no-max' | 'rotki/node/rules' | 'rotki/perfectionist/setup' | 'rotki/sort/package-json' | 'rotki/storybook/setup' | 'rotki/storybook/rules' | 'rotki/storybook/main' | 'rotki/stylistic/rules' | 'rotki/test/setup' | 'rotki/test/rules' | 'rotki/regexp/rules' | 'rotki/rotki/setup' | 'rotki/rotki/rules' | 'rotki/typescript/setup' | 'rotki/typescript/parser' | 'rotki/typescript/rules' | 'rotki/unicorn/rules' | 'rotki/unicorn/github-markdown' | 'rotki/vue/setup' | 'rotki/vue/rules' | 'rotki/vue-i18n/setup' | 'rotki/vue-i18n/rules' | 'rotki/yaml/setup' | 'rotki/yaml/rules';
15728
+ type ConfigNames = 'rotki/eslint-comments/rules' | 'rotki/formatter/setup' | 'rotki/import/rules' | 'rotki/javascript/setup' | 'rotki/javascript/rules' | 'rotki/jsonc/setup' | 'rotki/jsonc/rules' | 'rotki/markdown/setup' | 'rotki/markdown/processor' | 'rotki/markdown/parser' | 'rotki/markdown/rules' | 'rotki/markdown/disables/code' | 'rotki/markdown/no-max' | 'rotki/node/rules' | 'rotki/perfectionist/setup' | 'rotki/sort/package-json' | 'rotki/storybook/setup' | 'rotki/storybook/rules' | 'rotki/storybook/main' | 'rotki/stylistic/rules' | 'rotki/test/setup' | 'rotki/test/rules' | 'rotki/regexp/rules' | 'rotki/rotki/setup' | 'rotki/rotki/rules' | 'rotki/typescript/setup' | 'rotki/typescript/parser' | 'rotki/typescript/rules' | 'rotki/unicorn/rules' | 'rotki/unicorn/github-markdown' | 'rotki/vue/setup' | 'rotki/vue/rules' | 'rotki/vue-i18n/setup' | 'rotki/vue-i18n/rules' | 'rotki/yaml/setup' | 'rotki/yaml/rules';
15298
15729
  //#endregion
15299
15730
  //#region src/types.d.ts
15300
15731
  type Awaitable<T> = T | Promise<T>;
@@ -15311,7 +15742,7 @@ type TypedFlatConfigItem = Omit<ConfigWithExtends, 'plugins' | 'rules'> & {
15311
15742
  */
15312
15743
  rules?: Linter.RulesRecord & Rules;
15313
15744
  };
15314
- interface OptionsConfig {
15745
+ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
15315
15746
  /**
15316
15747
  * Enable gitignore support.
15317
15748
  *
@@ -15400,6 +15831,13 @@ interface OptionsConfig {
15400
15831
  * @default true
15401
15832
  */
15402
15833
  stylistic?: boolean | StylisticConfig;
15834
+ /**
15835
+ * Enable perfectionist (imports/exports sorting) rules.
15836
+ *
15837
+ * @see https://github.com/azat-io/eslint-plugin-perfectionist
15838
+ * @default true
15839
+ */
15840
+ perfectionist?: boolean | OptionsOverrides;
15403
15841
  /**
15404
15842
  * Enable regexp rules.
15405
15843
  *
@@ -15527,7 +15965,7 @@ declare function node(): Promise<TypedFlatConfigItem[]>;
15527
15965
  *
15528
15966
  * @see https://github.com/azat-io/eslint-plugin-perfectionist
15529
15967
  */
15530
- declare function perfectionist(): Promise<TypedFlatConfigItem[]>;
15968
+ declare function perfectionist(options?: OptionsOverrides): Promise<TypedFlatConfigItem[]>;
15531
15969
  //#endregion
15532
15970
  //#region src/configs/pnpm.d.ts
15533
15971
  declare function pnpm(options: OptionsPnpm): Promise<TypedFlatConfigItem[]>;