@eienjs/eslint-config 1.2.1 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/dist/cli/constants.js +74 -0
  2. package/dist/cli/constants_generated.js +13 -0
  3. package/dist/cli/index.d.ts +1 -1
  4. package/dist/cli/index.js +3 -268
  5. package/dist/cli/run.js +77 -0
  6. package/dist/cli/stages/update_eslint_files.js +41 -0
  7. package/dist/cli/stages/update_package_json.js +46 -0
  8. package/dist/cli/stages/update_vscode_settings.js +30 -0
  9. package/dist/cli/utils.js +23 -0
  10. package/dist/configs/adonisjs.d.ts +6 -0
  11. package/dist/configs/adonisjs.js +115 -0
  12. package/dist/configs/astro.d.ts +6 -0
  13. package/dist/configs/astro.js +52 -0
  14. package/dist/configs/command.d.ts +6 -0
  15. package/dist/configs/command.js +12 -0
  16. package/dist/configs/comments.d.ts +6 -0
  17. package/dist/configs/comments.js +19 -0
  18. package/dist/configs/disables.d.ts +6 -0
  19. package/dist/configs/disables.js +85 -0
  20. package/dist/configs/formatters.d.ts +6 -0
  21. package/dist/configs/formatters.js +134 -0
  22. package/dist/configs/ignores.d.ts +6 -0
  23. package/dist/configs/ignores.js +12 -0
  24. package/dist/configs/imports.d.ts +6 -0
  25. package/dist/configs/imports.js +28 -0
  26. package/dist/configs/index.d.ts +25 -95
  27. package/dist/configs/index.js +25 -1
  28. package/dist/configs/javascript.d.ts +6 -0
  29. package/dist/configs/javascript.js +289 -0
  30. package/dist/configs/jsdoc.d.ts +6 -0
  31. package/dist/configs/jsdoc.js +34 -0
  32. package/dist/configs/jsonc.d.ts +6 -0
  33. package/dist/configs/jsonc.js +71 -0
  34. package/dist/configs/markdown.d.ts +6 -0
  35. package/dist/configs/markdown.js +67 -0
  36. package/dist/configs/node.d.ts +6 -0
  37. package/dist/configs/node.js +22 -0
  38. package/dist/configs/nuxt.d.ts +6 -0
  39. package/dist/configs/nuxt.js +137 -0
  40. package/dist/configs/perfectionist.d.ts +12 -0
  41. package/dist/configs/perfectionist.js +56 -0
  42. package/dist/configs/pnpm.d.ts +6 -0
  43. package/dist/configs/pnpm.js +33 -0
  44. package/dist/configs/regexp.d.ts +6 -0
  45. package/dist/configs/regexp.js +21 -0
  46. package/dist/configs/sort.d.ts +18 -0
  47. package/dist/configs/sort.js +239 -0
  48. package/dist/configs/stylistic.d.ts +8 -0
  49. package/dist/configs/stylistic.js +76 -0
  50. package/dist/configs/test.d.ts +6 -0
  51. package/dist/configs/test.js +42 -0
  52. package/dist/configs/toml.d.ts +6 -0
  53. package/dist/configs/toml.js +45 -0
  54. package/dist/configs/typescript.d.ts +6 -0
  55. package/dist/configs/typescript.js +213 -0
  56. package/dist/configs/unicorn.d.ts +6 -0
  57. package/dist/configs/unicorn.js +42 -0
  58. package/dist/configs/vue.d.ts +6 -0
  59. package/dist/configs/vue.js +206 -0
  60. package/dist/configs/yaml.d.ts +6 -0
  61. package/dist/configs/yaml.js +83 -0
  62. package/dist/factory.d.ts +17 -0
  63. package/dist/factory.js +161 -0
  64. package/dist/globs.d.ts +32 -0
  65. package/dist/globs.js +89 -0
  66. package/dist/index.d.ts +5 -85
  67. package/dist/index.js +3 -133
  68. package/dist/package.js +5 -0
  69. package/dist/plugins.js +9 -0
  70. package/dist/{types-CThb4-OB.d.ts → typegen.d.ts} +353 -703
  71. package/dist/types.d.ts +404 -0
  72. package/dist/utils.d.ts +42 -0
  73. package/dist/utils.js +62 -0
  74. package/dist/vendored/prettier_types.d.ts +121 -0
  75. package/package.json +31 -24
  76. package/dist/configs-tpIJYMDE.js +0 -2189
@@ -1,10 +1,7 @@
1
- import { StylisticCustomizeOptions } from "@stylistic/eslint-plugin";
2
- import { ParserOptions } from "@typescript-eslint/parser";
3
- import { FlatGitignoreOptions } from "eslint-config-flat-gitignore";
4
- import { Options } from "eslint-processor-vue-blocks";
5
1
  import { Linter } from "eslint";
6
2
 
7
3
  //#region src/typegen.d.ts
4
+
8
5
  interface RuleOptions {
9
6
  /**
10
7
  * (Needed for HMR) Prefer lazy controller import over standard import
@@ -243,8 +240,9 @@ interface RuleOptions {
243
240
  */
244
241
  '@stylistic/jsx-pascal-case'?: Linter.RuleEntry<StylisticJsxPascalCase>;
245
242
  /**
246
- * Disallow multiple spaces between inline JSX props
243
+ * Disallow multiple spaces between inline JSX props. Deprecated, use `no-multi-spaces` rule instead.
247
244
  * @see https://eslint.style/rules/jsx-props-no-multi-spaces
245
+ * @deprecated
248
246
  */
249
247
  '@stylistic/jsx-props-no-multi-spaces'?: Linter.RuleEntry<[]>;
250
248
  /**
@@ -1855,9 +1853,9 @@ interface RuleOptions {
1855
1853
  * Reports invalid alignment of JSDoc block asterisks.
1856
1854
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-alignment.md#repos-sticky-header
1857
1855
  */
1858
- 'jsdoc/check-alignment'?: Linter.RuleEntry<[]>;
1856
+ 'jsdoc/check-alignment'?: Linter.RuleEntry<JsdocCheckAlignment>;
1859
1857
  /**
1860
- * Ensures that (JavaScript) examples within JSDoc adhere to ESLint rules.
1858
+ * @deprecated - Use `getJsdocProcessorPlugin` processor; ensures that (JavaScript) samples within `@example` tags adhere to ESLint rules.
1861
1859
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-examples.md#repos-sticky-header
1862
1860
  */
1863
1861
  'jsdoc/check-examples'?: Linter.RuleEntry<JsdocCheckExamples>;
@@ -1872,7 +1870,7 @@ interface RuleOptions {
1872
1870
  */
1873
1871
  'jsdoc/check-line-alignment'?: Linter.RuleEntry<JsdocCheckLineAlignment>;
1874
1872
  /**
1875
- * Ensures that parameter names in JSDoc match those in the function declaration.
1873
+ * Checks for dupe `@param` names, that nested param names have roots, and that parameter names in function declarations match JSDoc param names.
1876
1874
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-param-names.md#repos-sticky-header
1877
1875
  */
1878
1876
  'jsdoc/check-param-names'?: Linter.RuleEntry<JsdocCheckParamNames>;
@@ -1897,7 +1895,7 @@ interface RuleOptions {
1897
1895
  */
1898
1896
  'jsdoc/check-template-names'?: Linter.RuleEntry<[]>;
1899
1897
  /**
1900
- * Reports invalid types.
1898
+ * Reports types deemed invalid (customizable and with defaults, for preventing and/or recommending replacements).
1901
1899
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-types.md#repos-sticky-header
1902
1900
  */
1903
1901
  'jsdoc/check-types'?: Linter.RuleEntry<JsdocCheckTypes>;
@@ -1912,12 +1910,12 @@ interface RuleOptions {
1912
1910
  */
1913
1911
  'jsdoc/convert-to-jsdoc-comments'?: Linter.RuleEntry<JsdocConvertToJsdocComments>;
1914
1912
  /**
1915
- * Expects specific tags to be empty of any content.
1913
+ * Checks tags that are expected to be empty (e.g., `@abstract` or `@async`), reporting if they have content
1916
1914
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/empty-tags.md#repos-sticky-header
1917
1915
  */
1918
1916
  'jsdoc/empty-tags'?: Linter.RuleEntry<JsdocEmptyTags>;
1919
1917
  /**
1920
- * Reports an issue with any non-constructor function using `@implements`.
1918
+ * Prohibits use of `@implements` on non-constructor functions (to enforce the tag only being used on classes/constructors).
1921
1919
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/implements-on-classes.md#repos-sticky-header
1922
1920
  */
1923
1921
  'jsdoc/implements-on-classes'?: Linter.RuleEntry<JsdocImplementsOnClasses>;
@@ -1947,17 +1945,17 @@ interface RuleOptions {
1947
1945
  */
1948
1946
  'jsdoc/match-name'?: Linter.RuleEntry<JsdocMatchName>;
1949
1947
  /**
1950
- * Controls how and whether jsdoc blocks can be expressed as single or multiple line blocks.
1948
+ * Controls how and whether JSDoc blocks can be expressed as single or multiple line blocks.
1951
1949
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/multiline-blocks.md#repos-sticky-header
1952
1950
  */
1953
1951
  'jsdoc/multiline-blocks'?: Linter.RuleEntry<JsdocMultilineBlocks>;
1954
1952
  /**
1955
- * This rule checks for multi-line-style comments which fail to meet the criteria of a jsdoc block.
1953
+ * This rule checks for multi-line-style comments which fail to meet the criteria of a JSDoc block.
1956
1954
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-bad-blocks.md#repos-sticky-header
1957
1955
  */
1958
1956
  'jsdoc/no-bad-blocks'?: Linter.RuleEntry<JsdocNoBadBlocks>;
1959
1957
  /**
1960
- * Detects and removes extra lines of a blank block description
1958
+ * If tags are present, this rule will prevent empty lines in the block description. If no tags are present, this rule will prevent extra empty lines in the block description.
1961
1959
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-blank-block-descriptions.md#repos-sticky-header
1962
1960
  */
1963
1961
  'jsdoc/no-blank-block-descriptions'?: Linter.RuleEntry<[]>;
@@ -1987,22 +1985,32 @@ interface RuleOptions {
1987
1985
  */
1988
1986
  'jsdoc/no-restricted-syntax'?: Linter.RuleEntry<JsdocNoRestrictedSyntax>;
1989
1987
  /**
1990
- * This rule reports types being used on `@param` or `@returns`.
1988
+ * This rule reports types being used on `@param` or `@returns` (redundant with TypeScript).
1991
1989
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-types.md#repos-sticky-header
1992
1990
  */
1993
1991
  'jsdoc/no-types'?: Linter.RuleEntry<JsdocNoTypes>;
1994
1992
  /**
1995
- * Checks that types in jsdoc comments are defined.
1993
+ * Besides some expected built-in types, prohibits any types not specified as globals or within `@typedef`.
1996
1994
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-undefined-types.md#repos-sticky-header
1997
1995
  */
1998
1996
  'jsdoc/no-undefined-types'?: Linter.RuleEntry<JsdocNoUndefinedTypes>;
1997
+ /**
1998
+ * Reports use of `any` or `*` type
1999
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-any-type.md#repos-sticky-header
2000
+ */
2001
+ 'jsdoc/reject-any-type'?: Linter.RuleEntry<[]>;
2002
+ /**
2003
+ * Reports use of `Function` type
2004
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-function-type.md#repos-sticky-header
2005
+ */
2006
+ 'jsdoc/reject-function-type'?: Linter.RuleEntry<[]>;
1999
2007
  /**
2000
2008
  * Requires that each JSDoc line starts with an `*`.
2001
2009
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-asterisk-prefix.md#repos-sticky-header
2002
2010
  */
2003
2011
  'jsdoc/require-asterisk-prefix'?: Linter.RuleEntry<JsdocRequireAsteriskPrefix>;
2004
2012
  /**
2005
- * Requires that all functions have a description.
2013
+ * Requires that all functions (and potentially other contexts) have a description.
2006
2014
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-description.md#repos-sticky-header
2007
2015
  */
2008
2016
  'jsdoc/require-description'?: Linter.RuleEntry<JsdocRequireDescription>;
@@ -2012,7 +2020,7 @@ interface RuleOptions {
2012
2020
  */
2013
2021
  'jsdoc/require-description-complete-sentence'?: Linter.RuleEntry<JsdocRequireDescriptionCompleteSentence>;
2014
2022
  /**
2015
- * Requires that all functions have examples.
2023
+ * Requires that all functions (and potentially other contexts) have examples.
2016
2024
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-example.md#repos-sticky-header
2017
2025
  */
2018
2026
  'jsdoc/require-example'?: Linter.RuleEntry<JsdocRequireExample>;
@@ -2022,17 +2030,27 @@ interface RuleOptions {
2022
2030
  */
2023
2031
  'jsdoc/require-file-overview'?: Linter.RuleEntry<JsdocRequireFileOverview>;
2024
2032
  /**
2025
- * Requires a hyphen before the `@param` description.
2033
+ * Requires a hyphen before the `@param` description (and optionally before `@property` descriptions).
2026
2034
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-hyphen-before-param-description.md#repos-sticky-header
2027
2035
  */
2028
2036
  'jsdoc/require-hyphen-before-param-description'?: Linter.RuleEntry<JsdocRequireHyphenBeforeParamDescription>;
2029
2037
  /**
2030
- * Require JSDoc comments
2038
+ * Checks for presence of JSDoc comments, on functions and potentially other contexts (optionally limited to exports).
2031
2039
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-jsdoc.md#repos-sticky-header
2032
2040
  */
2033
2041
  'jsdoc/require-jsdoc'?: Linter.RuleEntry<JsdocRequireJsdoc>;
2034
2042
  /**
2035
- * Requires that all function parameters are documented.
2043
+ * Requires a description for `@next` tags
2044
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-description.md#repos-sticky-header
2045
+ */
2046
+ 'jsdoc/require-next-description'?: Linter.RuleEntry<[]>;
2047
+ /**
2048
+ * Requires a type for `@next` tags
2049
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-type.md#repos-sticky-header
2050
+ */
2051
+ 'jsdoc/require-next-type'?: Linter.RuleEntry<[]>;
2052
+ /**
2053
+ * Requires that all function parameters are documented with a `@param` tag.
2036
2054
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param.md#repos-sticky-header
2037
2055
  */
2038
2056
  'jsdoc/require-param'?: Linter.RuleEntry<JsdocRequireParam>;
@@ -2042,12 +2060,12 @@ interface RuleOptions {
2042
2060
  */
2043
2061
  'jsdoc/require-param-description'?: Linter.RuleEntry<JsdocRequireParamDescription>;
2044
2062
  /**
2045
- * Requires that all function parameters have names.
2063
+ * Requires that all `@param` tags have names.
2046
2064
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-name.md#repos-sticky-header
2047
2065
  */
2048
2066
  'jsdoc/require-param-name'?: Linter.RuleEntry<JsdocRequireParamName>;
2049
2067
  /**
2050
- * Requires that each `@param` tag has a `type` value.
2068
+ * Requires that each `@param` tag has a type value (in curly brackets).
2051
2069
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-type.md#repos-sticky-header
2052
2070
  */
2053
2071
  'jsdoc/require-param-type'?: Linter.RuleEntry<JsdocRequireParamType>;
@@ -2062,62 +2080,87 @@ interface RuleOptions {
2062
2080
  */
2063
2081
  'jsdoc/require-property-description'?: Linter.RuleEntry<[]>;
2064
2082
  /**
2065
- * Requires that all function `@property` tags have names.
2083
+ * Requires that all `@property` tags have names.
2066
2084
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-name.md#repos-sticky-header
2067
2085
  */
2068
2086
  'jsdoc/require-property-name'?: Linter.RuleEntry<[]>;
2069
2087
  /**
2070
- * Requires that each `@property` tag has a `type` value.
2088
+ * Requires that each `@property` tag has a type value (in curly brackets).
2071
2089
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-type.md#repos-sticky-header
2072
2090
  */
2073
2091
  'jsdoc/require-property-type'?: Linter.RuleEntry<[]>;
2074
2092
  /**
2075
- * Requires that returns are documented.
2093
+ * Requires that returns are documented with `@returns`.
2076
2094
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns.md#repos-sticky-header
2077
2095
  */
2078
2096
  'jsdoc/require-returns'?: Linter.RuleEntry<JsdocRequireReturns>;
2079
2097
  /**
2080
- * Requires a return statement in function body if a `@returns` tag is specified in jsdoc comment.
2098
+ * Requires a return statement in function body if a `@returns` tag is specified in JSDoc comment(and reports if multiple `@returns` tags are present).
2081
2099
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-check.md#repos-sticky-header
2082
2100
  */
2083
2101
  'jsdoc/require-returns-check'?: Linter.RuleEntry<JsdocRequireReturnsCheck>;
2084
2102
  /**
2085
- * Requires that the `@returns` tag has a `description` value.
2103
+ * Requires that the `@returns` tag has a `description` value (not including `void`/`undefined` type returns).
2086
2104
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-description.md#repos-sticky-header
2087
2105
  */
2088
2106
  'jsdoc/require-returns-description'?: Linter.RuleEntry<JsdocRequireReturnsDescription>;
2089
2107
  /**
2090
- * Requires that `@returns` tag has `type` value.
2108
+ * Requires that `@returns` tag has type value (in curly brackets).
2091
2109
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-type.md#repos-sticky-header
2092
2110
  */
2093
2111
  'jsdoc/require-returns-type'?: Linter.RuleEntry<JsdocRequireReturnsType>;
2094
2112
  /**
2095
- * Requires template tags for each generic type parameter
2113
+ * Requires tags be present, optionally for specific contexts
2114
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-tags.md#repos-sticky-header
2115
+ */
2116
+ 'jsdoc/require-tags'?: Linter.RuleEntry<JsdocRequireTags>;
2117
+ /**
2118
+ * Requires `@template` tags be present when type parameters are used.
2096
2119
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template.md#repos-sticky-header
2097
2120
  */
2098
2121
  'jsdoc/require-template'?: Linter.RuleEntry<JsdocRequireTemplate>;
2099
2122
  /**
2100
- * Requires that throw statements are documented.
2123
+ * Requires that throw statements are documented with `@throws` tags.
2101
2124
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws.md#repos-sticky-header
2102
2125
  */
2103
2126
  'jsdoc/require-throws'?: Linter.RuleEntry<JsdocRequireThrows>;
2104
2127
  /**
2105
- * Requires yields are documented.
2128
+ * Requires a description for `@throws` tags
2129
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-description.md#repos-sticky-header
2130
+ */
2131
+ 'jsdoc/require-throws-description'?: Linter.RuleEntry<[]>;
2132
+ /**
2133
+ * Requires a type for `@throws` tags
2134
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-type.md#repos-sticky-header
2135
+ */
2136
+ 'jsdoc/require-throws-type'?: Linter.RuleEntry<[]>;
2137
+ /**
2138
+ * Requires yields are documented with `@yields` tags.
2106
2139
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields.md#repos-sticky-header
2107
2140
  */
2108
2141
  'jsdoc/require-yields'?: Linter.RuleEntry<JsdocRequireYields>;
2109
2142
  /**
2110
- * Requires a yield statement in function body if a `@yields` tag is specified in jsdoc comment.
2143
+ * Ensures that if a `@yields` is present that a `yield` (or `yield` with a value) is present in the function body (or that if a `@next` is present that there is a yield with a return value present).
2111
2144
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-check.md#repos-sticky-header
2112
2145
  */
2113
2146
  'jsdoc/require-yields-check'?: Linter.RuleEntry<JsdocRequireYieldsCheck>;
2114
2147
  /**
2115
- * Sorts tags by a specified sequence according to tag name.
2148
+ * Requires a description for `@yields` tags
2149
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-description.md#repos-sticky-header
2150
+ */
2151
+ 'jsdoc/require-yields-description'?: Linter.RuleEntry<[]>;
2152
+ /**
2153
+ * Requires a type for `@yields` tags
2154
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-type.md#repos-sticky-header
2155
+ */
2156
+ 'jsdoc/require-yields-type'?: Linter.RuleEntry<[]>;
2157
+ /**
2158
+ * Sorts tags by a specified sequence according to tag name, optionally adding line breaks between tag groups.
2116
2159
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/sort-tags.md#repos-sticky-header
2117
2160
  */
2118
2161
  'jsdoc/sort-tags'?: Linter.RuleEntry<JsdocSortTags>;
2119
2162
  /**
2120
- * Enforces lines (or no lines) between tags.
2163
+ * Enforces lines (or no lines) before, after, or between tags.
2121
2164
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/tag-lines.md#repos-sticky-header
2122
2165
  */
2123
2166
  'jsdoc/tag-lines'?: Linter.RuleEntry<JsdocTagLines>;
@@ -2127,7 +2170,12 @@ interface RuleOptions {
2127
2170
  */
2128
2171
  'jsdoc/text-escaping'?: Linter.RuleEntry<JsdocTextEscaping>;
2129
2172
  /**
2130
- * Requires all types to be valid JSDoc or Closure compiler types without syntax errors.
2173
+ * Formats JSDoc type values.
2174
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/type-formatting.md#repos-sticky-header
2175
+ */
2176
+ 'jsdoc/type-formatting'?: Linter.RuleEntry<JsdocTypeFormatting>;
2177
+ /**
2178
+ * Requires all types/namepaths to be valid JSDoc, Closure compiler, or TypeScript types (configurable in settings).
2131
2179
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/valid-types.md#repos-sticky-header
2132
2180
  */
2133
2181
  'jsdoc/valid-types'?: Linter.RuleEntry<JsdocValidTypes>;
@@ -2463,7 +2511,7 @@ interface RuleOptions {
2463
2511
  * Disallow missing label references
2464
2512
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
2465
2513
  */
2466
- 'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>;
2514
+ 'markdown/no-missing-label-refs'?: Linter.RuleEntry<MarkdownNoMissingLabelRefs>;
2467
2515
  /**
2468
2516
  * Disallow link fragments that do not reference valid headings
2469
2517
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-link-fragments.md
@@ -2474,6 +2522,11 @@ interface RuleOptions {
2474
2522
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-multiple-h1.md
2475
2523
  */
2476
2524
  'markdown/no-multiple-h1'?: Linter.RuleEntry<MarkdownNoMultipleH1>;
2525
+ /**
2526
+ * Disallow URLs that match defined reference identifiers
2527
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reference-like-urls.md
2528
+ */
2529
+ 'markdown/no-reference-like-urls'?: Linter.RuleEntry<[]>;
2477
2530
  /**
2478
2531
  * Disallow reversed link and image syntax
2479
2532
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reversed-media-syntax.md
@@ -2620,12 +2673,12 @@ interface RuleOptions {
2620
2673
  */
2621
2674
  'n/no-hide-core-modules'?: Linter.RuleEntry<NNoHideCoreModules>;
2622
2675
  /**
2623
- * disallow `import` declarations which import non-existence modules
2676
+ * disallow `import` declarations which import missing modules
2624
2677
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-import.md
2625
2678
  */
2626
2679
  'n/no-missing-import'?: Linter.RuleEntry<NNoMissingImport>;
2627
2680
  /**
2628
- * disallow `require()` expressions which import non-existence modules
2681
+ * disallow `require()` expressions which import missing modules
2629
2682
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-require.md
2630
2683
  */
2631
2684
  'n/no-missing-require'?: Linter.RuleEntry<NNoMissingRequire>;
@@ -3844,6 +3897,11 @@ interface RuleOptions {
3844
3897
  * @see https://eslint.org/docs/latest/rules/prefer-template
3845
3898
  */
3846
3899
  'prefer-template'?: Linter.RuleEntry<[]>;
3900
+ /**
3901
+ * Disallow losing originally caught error when re-throwing custom errors
3902
+ * @see https://eslint.org/docs/latest/rules/preserve-caught-error
3903
+ */
3904
+ 'preserve-caught-error'?: Linter.RuleEntry<PreserveCaughtError>;
3847
3905
  /**
3848
3906
  * Require quotes around object literal property names
3849
3907
  * @see https://eslint.org/docs/latest/rules/quote-props
@@ -4414,6 +4472,11 @@ interface RuleOptions {
4414
4472
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/expect-expect.md
4415
4473
  */
4416
4474
  'test/expect-expect'?: Linter.RuleEntry<TestExpectExpect>;
4475
+ /**
4476
+ * enforce hoisted APIs to be on top of the file
4477
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/hoisted-apis-on-top.md
4478
+ */
4479
+ 'test/hoisted-apis-on-top'?: Linter.RuleEntry<[]>;
4417
4480
  /**
4418
4481
  * enforce a maximum number of expect per test
4419
4482
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/max-expects.md
@@ -4620,6 +4683,11 @@ interface RuleOptions {
4620
4683
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-resolves.md
4621
4684
  */
4622
4685
  'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
4686
+ /**
4687
+ * enforce using `expectTypeOf` instead of `expect(typeof ...)`
4688
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
4689
+ */
4690
+ 'test/prefer-expect-type-of'?: Linter.RuleEntry<[]>;
4623
4691
  /**
4624
4692
  * enforce having hooks in consistent order
4625
4693
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-in-order.md
@@ -4873,690 +4941,710 @@ interface RuleOptions {
4873
4941
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>;
4874
4942
  /**
4875
4943
  * Improve regexes by making them shorter, consistent, and safer.
4876
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/better-regex.md
4944
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/better-regex.md
4877
4945
  */
4878
4946
  'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>;
4879
4947
  /**
4880
4948
  * Enforce a specific parameter name in catch clauses.
4881
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/catch-error-name.md
4949
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/catch-error-name.md
4882
4950
  */
4883
4951
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>;
4884
4952
  /**
4885
4953
  * Enforce consistent assertion style with `node:assert`.
4886
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-assert.md
4954
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-assert.md
4887
4955
  */
4888
4956
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
4889
4957
  /**
4890
4958
  * Prefer passing `Date` directly to the constructor when cloning.
4891
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-date-clone.md
4959
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-date-clone.md
4892
4960
  */
4893
4961
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
4894
4962
  /**
4895
4963
  * Use destructured variables over properties.
4896
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-destructuring.md
4964
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-destructuring.md
4897
4965
  */
4898
4966
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
4899
4967
  /**
4900
4968
  * Prefer consistent types when spreading a ternary in an array literal.
4901
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-empty-array-spread.md
4969
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-empty-array-spread.md
4902
4970
  */
4903
4971
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
4904
4972
  /**
4905
4973
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
4906
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-existence-index-check.md
4974
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-existence-index-check.md
4907
4975
  */
4908
4976
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
4909
4977
  /**
4910
4978
  * Move function definitions to the highest possible scope.
4911
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-function-scoping.md
4979
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/consistent-function-scoping.md
4912
4980
  */
4913
4981
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
4914
4982
  /**
4915
4983
  * Enforce correct `Error` subclassing.
4916
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/custom-error-definition.md
4984
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/custom-error-definition.md
4917
4985
  */
4918
4986
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
4919
4987
  /**
4920
4988
  * Enforce no spaces between braces.
4921
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/empty-brace-spaces.md
4989
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/empty-brace-spaces.md
4922
4990
  */
4923
4991
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
4924
4992
  /**
4925
4993
  * Enforce passing a `message` value when creating a built-in error.
4926
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/error-message.md
4994
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/error-message.md
4927
4995
  */
4928
4996
  'unicorn/error-message'?: Linter.RuleEntry<[]>;
4929
4997
  /**
4930
4998
  * Require escape sequences to use uppercase or lowercase values.
4931
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/escape-case.md
4999
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/escape-case.md
4932
5000
  */
4933
5001
  'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>;
4934
5002
  /**
4935
5003
  * Add expiration conditions to TODO comments.
4936
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/expiring-todo-comments.md
5004
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/expiring-todo-comments.md
4937
5005
  */
4938
5006
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>;
4939
5007
  /**
4940
5008
  * Enforce explicitly comparing the `length` or `size` property of a value.
4941
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/explicit-length-check.md
5009
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/explicit-length-check.md
4942
5010
  */
4943
5011
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
4944
5012
  /**
4945
5013
  * Enforce a case style for filenames.
4946
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/filename-case.md
5014
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/filename-case.md
4947
5015
  */
4948
5016
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>;
4949
5017
  /**
4950
5018
  * Enforce specific import styles per module.
4951
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/import-style.md
5019
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/import-style.md
4952
5020
  */
4953
5021
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>;
4954
5022
  /**
4955
5023
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
4956
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/new-for-builtins.md
5024
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/new-for-builtins.md
4957
5025
  */
4958
5026
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
4959
5027
  /**
4960
5028
  * Enforce specifying rules to disable in `eslint-disable` comments.
4961
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-abusive-eslint-disable.md
5029
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-abusive-eslint-disable.md
4962
5030
  */
4963
5031
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
4964
5032
  /**
4965
5033
  * Disallow recursive access to `this` within getters and setters.
4966
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-accessor-recursion.md
5034
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-accessor-recursion.md
4967
5035
  */
4968
5036
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
4969
5037
  /**
4970
5038
  * Disallow anonymous functions and classes as the default export.
4971
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-anonymous-default-export.md
5039
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-anonymous-default-export.md
4972
5040
  */
4973
5041
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
4974
5042
  /**
4975
5043
  * Prevent passing a function reference directly to iterator methods.
4976
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-callback-reference.md
5044
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-callback-reference.md
4977
5045
  */
4978
5046
  'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
4979
5047
  /**
4980
5048
  * Prefer `for…of` over the `forEach` method.
4981
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-for-each.md
5049
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-for-each.md
4982
5050
  */
4983
5051
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
4984
5052
  /**
4985
5053
  * Disallow using the `this` argument in array methods.
4986
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-method-this-argument.md
5054
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-method-this-argument.md
4987
5055
  */
4988
5056
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
4989
5057
  /**
4990
5058
  * Replaced by `unicorn/prefer-single-call` which covers more cases.
4991
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/deprecated-rules.md#no-array-push-push
5059
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-array-push-push
4992
5060
  * @deprecated
4993
5061
  */
4994
5062
  'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
4995
5063
  /**
4996
5064
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
4997
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-reduce.md
5065
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-reduce.md
4998
5066
  */
4999
5067
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>;
5000
5068
  /**
5001
5069
  * Prefer `Array#toReversed()` over `Array#reverse()`.
5002
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-reverse.md
5070
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-reverse.md
5003
5071
  */
5004
5072
  'unicorn/no-array-reverse'?: Linter.RuleEntry<UnicornNoArrayReverse>;
5073
+ /**
5074
+ * Prefer `Array#toSorted()` over `Array#sort()`.
5075
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-array-sort.md
5076
+ */
5077
+ 'unicorn/no-array-sort'?: Linter.RuleEntry<UnicornNoArraySort>;
5005
5078
  /**
5006
5079
  * Disallow member access from await expression.
5007
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-await-expression-member.md
5080
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-await-expression-member.md
5008
5081
  */
5009
5082
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
5010
5083
  /**
5011
5084
  * Disallow using `await` in `Promise` method parameters.
5012
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-await-in-promise-methods.md
5085
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-await-in-promise-methods.md
5013
5086
  */
5014
5087
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
5015
5088
  /**
5016
5089
  * Do not use leading/trailing space between `console.log` parameters.
5017
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-console-spaces.md
5090
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-console-spaces.md
5018
5091
  */
5019
5092
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
5020
5093
  /**
5021
5094
  * Do not use `document.cookie` directly.
5022
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-document-cookie.md
5095
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-document-cookie.md
5023
5096
  */
5024
5097
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
5025
5098
  /**
5026
5099
  * Disallow empty files.
5027
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-empty-file.md
5100
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-empty-file.md
5028
5101
  */
5029
5102
  'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
5030
5103
  /**
5031
5104
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
5032
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-for-loop.md
5105
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-for-loop.md
5033
5106
  */
5034
5107
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
5035
5108
  /**
5036
5109
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
5037
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-hex-escape.md
5110
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-hex-escape.md
5038
5111
  */
5039
5112
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
5040
5113
  /**
5041
5114
  * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
5042
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/deprecated-rules.md#no-instanceof-array
5115
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-instanceof-array
5043
5116
  * @deprecated
5044
5117
  */
5045
5118
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
5046
5119
  /**
5047
5120
  * Disallow `instanceof` with built-in objects
5048
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-instanceof-builtins.md
5121
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-instanceof-builtins.md
5049
5122
  */
5050
5123
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
5051
5124
  /**
5052
5125
  * Disallow invalid options in `fetch()` and `new Request()`.
5053
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-invalid-fetch-options.md
5126
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-invalid-fetch-options.md
5054
5127
  */
5055
5128
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
5056
5129
  /**
5057
5130
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
5058
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-invalid-remove-event-listener.md
5131
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-invalid-remove-event-listener.md
5059
5132
  */
5060
5133
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
5061
5134
  /**
5062
5135
  * Disallow identifiers starting with `new` or `class`.
5063
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-keyword-prefix.md
5136
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-keyword-prefix.md
5064
5137
  */
5065
5138
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
5066
5139
  /**
5067
5140
  * Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
5068
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/deprecated-rules.md#no-length-as-slice-end
5141
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/deprecated-rules.md#no-length-as-slice-end
5069
5142
  * @deprecated
5070
5143
  */
5071
5144
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
5072
5145
  /**
5073
5146
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
5074
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-lonely-if.md
5147
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-lonely-if.md
5075
5148
  */
5076
5149
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
5077
5150
  /**
5078
5151
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
5079
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-magic-array-flat-depth.md
5152
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-magic-array-flat-depth.md
5080
5153
  */
5081
5154
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
5082
5155
  /**
5083
5156
  * Disallow named usage of default import and export.
5084
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-named-default.md
5157
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-named-default.md
5085
5158
  */
5086
5159
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
5087
5160
  /**
5088
5161
  * Disallow negated conditions.
5089
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-negated-condition.md
5162
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-negated-condition.md
5090
5163
  */
5091
5164
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
5092
5165
  /**
5093
5166
  * Disallow negated expression in equality check.
5094
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-negation-in-equality-check.md
5167
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-negation-in-equality-check.md
5095
5168
  */
5096
5169
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
5097
5170
  /**
5098
5171
  * Disallow nested ternary expressions.
5099
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-nested-ternary.md
5172
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-nested-ternary.md
5100
5173
  */
5101
5174
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
5102
5175
  /**
5103
5176
  * Disallow `new Array()`.
5104
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-new-array.md
5177
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-new-array.md
5105
5178
  */
5106
5179
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
5107
5180
  /**
5108
5181
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
5109
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-new-buffer.md
5182
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-new-buffer.md
5110
5183
  */
5111
5184
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
5112
5185
  /**
5113
5186
  * Disallow the use of the `null` literal.
5114
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-null.md
5187
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-null.md
5115
5188
  */
5116
5189
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>;
5117
5190
  /**
5118
5191
  * Disallow the use of objects as default parameters.
5119
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-object-as-default-parameter.md
5192
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-object-as-default-parameter.md
5120
5193
  */
5121
5194
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
5122
5195
  /**
5123
5196
  * Disallow `process.exit()`.
5124
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-process-exit.md
5197
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-process-exit.md
5125
5198
  */
5126
5199
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
5127
5200
  /**
5128
5201
  * Disallow passing single-element arrays to `Promise` methods.
5129
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-single-promise-in-promise-methods.md
5202
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-single-promise-in-promise-methods.md
5130
5203
  */
5131
5204
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
5132
5205
  /**
5133
5206
  * Disallow classes that only have static members.
5134
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-static-only-class.md
5207
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-static-only-class.md
5135
5208
  */
5136
5209
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
5137
5210
  /**
5138
5211
  * Disallow `then` property.
5139
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-thenable.md
5212
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-thenable.md
5140
5213
  */
5141
5214
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
5142
5215
  /**
5143
5216
  * Disallow assigning `this` to a variable.
5144
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-this-assignment.md
5217
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-this-assignment.md
5145
5218
  */
5146
5219
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
5147
5220
  /**
5148
5221
  * Disallow comparing `undefined` using `typeof`.
5149
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-typeof-undefined.md
5222
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-typeof-undefined.md
5150
5223
  */
5151
5224
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
5152
5225
  /**
5153
5226
  * Disallow using `1` as the `depth` argument of `Array#flat()`.
5154
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-array-flat-depth.md
5227
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-array-flat-depth.md
5155
5228
  */
5156
5229
  'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
5157
5230
  /**
5158
5231
  * Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
5159
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-array-splice-count.md
5232
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-array-splice-count.md
5160
5233
  */
5161
5234
  'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
5162
5235
  /**
5163
5236
  * Disallow awaiting non-promise values.
5164
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-await.md
5237
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-await.md
5165
5238
  */
5166
5239
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
5167
5240
  /**
5168
5241
  * Enforce the use of built-in methods instead of unnecessary polyfills.
5169
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-polyfills.md
5242
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-polyfills.md
5170
5243
  */
5171
5244
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
5172
5245
  /**
5173
5246
  * Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
5174
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-slice-end.md
5247
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unnecessary-slice-end.md
5175
5248
  */
5176
5249
  'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
5177
5250
  /**
5178
5251
  * Disallow unreadable array destructuring.
5179
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unreadable-array-destructuring.md
5252
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unreadable-array-destructuring.md
5180
5253
  */
5181
5254
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
5182
5255
  /**
5183
5256
  * Disallow unreadable IIFEs.
5184
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unreadable-iife.md
5257
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unreadable-iife.md
5185
5258
  */
5186
5259
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
5187
5260
  /**
5188
5261
  * Disallow unused object properties.
5189
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unused-properties.md
5262
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-unused-properties.md
5190
5263
  */
5191
5264
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
5192
5265
  /**
5193
5266
  * Disallow unnecessary `Error.captureStackTrace(…)`.
5194
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-error-capture-stack-trace.md
5267
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-error-capture-stack-trace.md
5195
5268
  */
5196
5269
  'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
5197
5270
  /**
5198
5271
  * Disallow useless fallback when spreading in object literals.
5199
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-fallback-in-spread.md
5272
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-fallback-in-spread.md
5200
5273
  */
5201
5274
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
5202
5275
  /**
5203
5276
  * Disallow useless array length check.
5204
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-length-check.md
5277
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-length-check.md
5205
5278
  */
5206
5279
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
5207
5280
  /**
5208
5281
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
5209
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-promise-resolve-reject.md
5282
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-promise-resolve-reject.md
5210
5283
  */
5211
5284
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
5212
5285
  /**
5213
5286
  * Disallow unnecessary spread.
5214
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-spread.md
5287
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-spread.md
5215
5288
  */
5216
5289
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
5217
5290
  /**
5218
5291
  * Disallow useless case in switch statements.
5219
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-switch-case.md
5292
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-switch-case.md
5220
5293
  */
5221
5294
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
5222
5295
  /**
5223
5296
  * Disallow useless `undefined`.
5224
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-undefined.md
5297
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-useless-undefined.md
5225
5298
  */
5226
5299
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>;
5227
5300
  /**
5228
5301
  * Disallow number literals with zero fractions or dangling dots.
5229
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-zero-fractions.md
5302
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/no-zero-fractions.md
5230
5303
  */
5231
5304
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
5232
5305
  /**
5233
5306
  * Enforce proper case for numeric literals.
5234
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/number-literal-case.md
5307
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/number-literal-case.md
5235
5308
  */
5236
5309
  'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>;
5237
5310
  /**
5238
5311
  * Enforce the style of numeric separators by correctly grouping digits.
5239
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/numeric-separators-style.md
5312
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/numeric-separators-style.md
5240
5313
  */
5241
5314
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
5242
5315
  /**
5243
5316
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
5244
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-add-event-listener.md
5317
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-add-event-listener.md
5245
5318
  */
5246
5319
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>;
5247
5320
  /**
5248
5321
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
5249
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-find.md
5322
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-find.md
5250
5323
  */
5251
5324
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>;
5252
5325
  /**
5253
5326
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
5254
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-flat.md
5327
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-flat.md
5255
5328
  */
5256
5329
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>;
5257
5330
  /**
5258
5331
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
5259
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-flat-map.md
5332
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-flat-map.md
5260
5333
  */
5261
5334
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
5262
5335
  /**
5263
5336
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
5264
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-index-of.md
5337
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-index-of.md
5265
5338
  */
5266
5339
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
5267
5340
  /**
5268
5341
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
5269
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-some.md
5342
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-array-some.md
5270
5343
  */
5271
5344
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
5272
5345
  /**
5273
5346
  * Prefer `.at()` method for index access and `String#charAt()`.
5274
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-at.md
5347
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-at.md
5275
5348
  */
5276
5349
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>;
5350
+ /**
5351
+ * Prefer `BigInt` literals over the constructor.
5352
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-bigint-literals.md
5353
+ */
5354
+ 'unicorn/prefer-bigint-literals'?: Linter.RuleEntry<[]>;
5277
5355
  /**
5278
5356
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
5279
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-blob-reading-methods.md
5357
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-blob-reading-methods.md
5280
5358
  */
5281
5359
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
5282
5360
  /**
5283
5361
  * Prefer class field declarations over `this` assignments in constructors.
5284
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-class-fields.md
5362
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-class-fields.md
5285
5363
  */
5286
5364
  'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
5365
+ /**
5366
+ * Prefer using `Element#classList.toggle()` to toggle class names.
5367
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-classlist-toggle.md
5368
+ */
5369
+ 'unicorn/prefer-classlist-toggle'?: Linter.RuleEntry<[]>;
5287
5370
  /**
5288
5371
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
5289
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-code-point.md
5372
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-code-point.md
5290
5373
  */
5291
5374
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
5292
5375
  /**
5293
5376
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
5294
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-date-now.md
5377
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-date-now.md
5295
5378
  */
5296
5379
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
5297
5380
  /**
5298
5381
  * Prefer default parameters over reassignment.
5299
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-default-parameters.md
5382
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-default-parameters.md
5300
5383
  */
5301
5384
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
5302
5385
  /**
5303
5386
  * Prefer `Node#append()` over `Node#appendChild()`.
5304
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-dom-node-append.md
5387
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-append.md
5305
5388
  */
5306
5389
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
5307
5390
  /**
5308
5391
  * Prefer using `.dataset` on DOM elements over calling attribute methods.
5309
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-dom-node-dataset.md
5392
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-dataset.md
5310
5393
  */
5311
5394
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
5312
5395
  /**
5313
5396
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
5314
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-dom-node-remove.md
5397
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-remove.md
5315
5398
  */
5316
5399
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
5317
5400
  /**
5318
5401
  * Prefer `.textContent` over `.innerText`.
5319
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-dom-node-text-content.md
5402
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-dom-node-text-content.md
5320
5403
  */
5321
5404
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
5322
5405
  /**
5323
5406
  * Prefer `EventTarget` over `EventEmitter`.
5324
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-event-target.md
5407
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-event-target.md
5325
5408
  */
5326
5409
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
5327
5410
  /**
5328
5411
  * Prefer `export…from` when re-exporting.
5329
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-export-from.md
5412
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-export-from.md
5330
5413
  */
5331
5414
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>;
5332
5415
  /**
5333
5416
  * Prefer `globalThis` over `window`, `self`, and `global`.
5334
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-global-this.md
5417
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-global-this.md
5335
5418
  */
5336
5419
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
5337
5420
  /**
5338
5421
  * Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
5339
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-import-meta-properties.md
5422
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-import-meta-properties.md
5340
5423
  */
5341
5424
  'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
5342
5425
  /**
5343
5426
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
5344
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-includes.md
5427
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-includes.md
5345
5428
  */
5346
5429
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
5347
5430
  /**
5348
5431
  * Prefer reading a JSON file as a buffer.
5349
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-json-parse-buffer.md
5432
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-json-parse-buffer.md
5350
5433
  */
5351
5434
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
5352
5435
  /**
5353
5436
  * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
5354
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-keyboard-event-key.md
5437
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-keyboard-event-key.md
5355
5438
  */
5356
5439
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
5357
5440
  /**
5358
5441
  * Prefer using a logical operator over a ternary.
5359
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-logical-operator-over-ternary.md
5442
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-logical-operator-over-ternary.md
5360
5443
  */
5361
5444
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
5362
5445
  /**
5363
5446
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
5364
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-math-min-max.md
5447
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-math-min-max.md
5365
5448
  */
5366
5449
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
5367
5450
  /**
5368
5451
  * Enforce the use of `Math.trunc` instead of bitwise operators.
5369
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-math-trunc.md
5452
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-math-trunc.md
5370
5453
  */
5371
5454
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
5372
5455
  /**
5373
5456
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
5374
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-modern-dom-apis.md
5457
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-modern-dom-apis.md
5375
5458
  */
5376
5459
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
5377
5460
  /**
5378
5461
  * Prefer modern `Math` APIs over legacy patterns.
5379
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-modern-math-apis.md
5462
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-modern-math-apis.md
5380
5463
  */
5381
5464
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
5382
5465
  /**
5383
5466
  * Prefer JavaScript modules (ESM) over CommonJS.
5384
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-module.md
5467
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-module.md
5385
5468
  */
5386
5469
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
5387
5470
  /**
5388
5471
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
5389
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-native-coercion-functions.md
5472
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-native-coercion-functions.md
5390
5473
  */
5391
5474
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
5392
5475
  /**
5393
5476
  * Prefer negative index over `.length - index` when possible.
5394
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-negative-index.md
5477
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-negative-index.md
5395
5478
  */
5396
5479
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
5397
5480
  /**
5398
5481
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
5399
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-node-protocol.md
5482
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-node-protocol.md
5400
5483
  */
5401
5484
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
5402
5485
  /**
5403
5486
  * Prefer `Number` static properties over global ones.
5404
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-number-properties.md
5487
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-number-properties.md
5405
5488
  */
5406
5489
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>;
5407
5490
  /**
5408
5491
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
5409
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-object-from-entries.md
5492
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-object-from-entries.md
5410
5493
  */
5411
5494
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
5412
5495
  /**
5413
5496
  * Prefer omitting the `catch` binding parameter.
5414
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-optional-catch-binding.md
5497
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-optional-catch-binding.md
5415
5498
  */
5416
5499
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
5417
5500
  /**
5418
5501
  * Prefer borrowing methods from the prototype instead of the instance.
5419
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-prototype-methods.md
5502
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-prototype-methods.md
5420
5503
  */
5421
5504
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
5422
5505
  /**
5423
5506
  * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
5424
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-query-selector.md
5507
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-query-selector.md
5425
5508
  */
5426
5509
  'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
5427
5510
  /**
5428
5511
  * Prefer `Reflect.apply()` over `Function#apply()`.
5429
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-reflect-apply.md
5512
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-reflect-apply.md
5430
5513
  */
5431
5514
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
5432
5515
  /**
5433
5516
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
5434
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-regexp-test.md
5517
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-regexp-test.md
5435
5518
  */
5436
5519
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
5437
5520
  /**
5438
5521
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
5439
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-set-has.md
5522
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-set-has.md
5440
5523
  */
5441
5524
  'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
5442
5525
  /**
5443
5526
  * Prefer using `Set#size` instead of `Array#length`.
5444
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-set-size.md
5527
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-set-size.md
5445
5528
  */
5446
5529
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
5447
5530
  /**
5448
5531
  * Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
5449
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-single-call.md
5532
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-single-call.md
5450
5533
  */
5451
5534
  'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>;
5452
5535
  /**
5453
5536
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
5454
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-spread.md
5537
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-spread.md
5455
5538
  */
5456
5539
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
5457
5540
  /**
5458
5541
  * Prefer using the `String.raw` tag to avoid escaping `\`.
5459
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-raw.md
5542
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-raw.md
5460
5543
  */
5461
5544
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
5462
5545
  /**
5463
5546
  * Prefer `String#replaceAll()` over regex searches with the global flag.
5464
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-replace-all.md
5547
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-replace-all.md
5465
5548
  */
5466
5549
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
5467
5550
  /**
5468
5551
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
5469
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-slice.md
5552
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-slice.md
5470
5553
  */
5471
5554
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
5472
5555
  /**
5473
5556
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
5474
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-starts-ends-with.md
5557
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-starts-ends-with.md
5475
5558
  */
5476
5559
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
5477
5560
  /**
5478
5561
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
5479
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-trim-start-end.md
5562
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-string-trim-start-end.md
5480
5563
  */
5481
5564
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
5482
5565
  /**
5483
5566
  * Prefer using `structuredClone` to create a deep clone.
5484
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-structured-clone.md
5567
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-structured-clone.md
5485
5568
  */
5486
5569
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>;
5487
5570
  /**
5488
5571
  * Prefer `switch` over multiple `else-if`.
5489
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-switch.md
5572
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-switch.md
5490
5573
  */
5491
5574
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>;
5492
5575
  /**
5493
5576
  * Prefer ternary expressions over simple `if-else` statements.
5494
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-ternary.md
5577
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-ternary.md
5495
5578
  */
5496
5579
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>;
5497
5580
  /**
5498
5581
  * Prefer top-level await over top-level promises and async function calls.
5499
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-top-level-await.md
5582
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-top-level-await.md
5500
5583
  */
5501
5584
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
5502
5585
  /**
5503
5586
  * Enforce throwing `TypeError` in type checking conditions.
5504
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-type-error.md
5587
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prefer-type-error.md
5505
5588
  */
5506
5589
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
5507
5590
  /**
5508
5591
  * Prevent abbreviations.
5509
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prevent-abbreviations.md
5592
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/prevent-abbreviations.md
5510
5593
  */
5511
5594
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>;
5512
5595
  /**
5513
5596
  * Enforce consistent relative URL style.
5514
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/relative-url-style.md
5597
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/relative-url-style.md
5515
5598
  */
5516
5599
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
5517
5600
  /**
5518
5601
  * Enforce using the separator argument with `Array#join()`.
5519
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/require-array-join-separator.md
5602
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-array-join-separator.md
5520
5603
  */
5521
5604
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
5605
+ /**
5606
+ * Require non-empty module attributes for imports and exports
5607
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-module-attributes.md
5608
+ */
5609
+ 'unicorn/require-module-attributes'?: Linter.RuleEntry<[]>;
5522
5610
  /**
5523
5611
  * Require non-empty specifier list in import and export statements.
5524
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/require-module-specifiers.md
5612
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-module-specifiers.md
5525
5613
  */
5526
5614
  'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
5527
5615
  /**
5528
5616
  * Enforce using the digits argument with `Number#toFixed()`.
5529
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/require-number-to-fixed-digits-argument.md
5617
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-number-to-fixed-digits-argument.md
5530
5618
  */
5531
5619
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
5532
5620
  /**
5533
5621
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
5534
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/require-post-message-target-origin.md
5622
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/require-post-message-target-origin.md
5535
5623
  */
5536
5624
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
5537
5625
  /**
5538
5626
  * Enforce better string content.
5539
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/string-content.md
5627
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/string-content.md
5540
5628
  */
5541
5629
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>;
5542
5630
  /**
5543
5631
  * Enforce consistent brace style for `case` clauses.
5544
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/switch-case-braces.md
5632
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/switch-case-braces.md
5545
5633
  */
5546
5634
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
5547
5635
  /**
5548
5636
  * Fix whitespace-insensitive template indentation.
5549
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/template-indent.md
5637
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/template-indent.md
5550
5638
  */
5551
5639
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>;
5552
5640
  /**
5553
5641
  * Enforce consistent case for text encoding identifiers.
5554
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/text-encoding-identifier-case.md
5642
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/text-encoding-identifier-case.md
5555
5643
  */
5556
5644
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>;
5557
5645
  /**
5558
5646
  * Require `new` when creating an error.
5559
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/throw-new-error.md
5647
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v61.0.2/docs/rules/throw-new-error.md
5560
5648
  */
5561
5649
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
5562
5650
  /**
@@ -5878,7 +5966,7 @@ interface RuleOptions {
5878
5966
  * disallow asynchronous actions in computed properties
5879
5967
  * @see https://eslint.vuejs.org/rules/no-async-in-computed-properties.html
5880
5968
  */
5881
- 'vue/no-async-in-computed-properties'?: Linter.RuleEntry<[]>;
5969
+ 'vue/no-async-in-computed-properties'?: Linter.RuleEntry<VueNoAsyncInComputedProperties>;
5882
5970
  /**
5883
5971
  * disallow the use of bare strings in `<template>`
5884
5972
  * @see https://eslint.vuejs.org/rules/no-bare-strings-in-template.html
@@ -6379,7 +6467,7 @@ interface RuleOptions {
6379
6467
  * disallow use of v-html to prevent XSS attack
6380
6468
  * @see https://eslint.vuejs.org/rules/no-v-html.html
6381
6469
  */
6382
- 'vue/no-v-html'?: Linter.RuleEntry<[]>;
6470
+ 'vue/no-v-html'?: Linter.RuleEntry<VueNoVHtml>;
6383
6471
  /**
6384
6472
  * disallow adding an argument to `v-model` used in custom component
6385
6473
  * @see https://eslint.vuejs.org/rules/no-v-model-argument.html
@@ -6987,7 +7075,6 @@ interface RuleOptions {
6987
7075
  */
6988
7076
  'yoda'?: Linter.RuleEntry<Yoda>;
6989
7077
  }
6990
-
6991
7078
  /* ======= Declarations ======= */
6992
7079
  // ----- @eslint-community/eslint-comments/disable-enable-pair -----
6993
7080
  type EslintCommunityEslintCommentsDisableEnablePair = [] | [{
@@ -7214,6 +7301,10 @@ type StylisticGeneratorStarSpacing = [] | [(("before" | "after" | "both" | "neit
7214
7301
  before?: boolean;
7215
7302
  after?: boolean;
7216
7303
  });
7304
+ shorthand?: (("before" | "after" | "both" | "neither") | {
7305
+ before?: boolean;
7306
+ after?: boolean;
7307
+ });
7217
7308
  })];
7218
7309
  // ----- @stylistic/implicit-arrow-linebreak -----
7219
7310
  type StylisticImplicitArrowLinebreak = [] | [("beside" | "below")];
@@ -7226,6 +7317,7 @@ type StylisticIndent = [] | [("tab" | number)] | [("tab" | number), {
7226
7317
  const?: (number | ("first" | "off"));
7227
7318
  using?: (number | ("first" | "off"));
7228
7319
  });
7320
+ assignmentOperator?: (number | "off");
7229
7321
  outerIIFEBody?: (number | "off");
7230
7322
  MemberExpression?: (number | "off");
7231
7323
  FunctionDeclaration?: {
@@ -7690,7 +7782,7 @@ type StylisticKeywordSpacing = [] | [{
7690
7782
  before?: boolean;
7691
7783
  after?: boolean;
7692
7784
  };
7693
- accessor?: {
7785
+ arguments?: {
7694
7786
  before?: boolean;
7695
7787
  after?: boolean;
7696
7788
  };
@@ -7706,6 +7798,10 @@ type StylisticKeywordSpacing = [] | [{
7706
7798
  before?: boolean;
7707
7799
  after?: boolean;
7708
7800
  };
7801
+ eval?: {
7802
+ before?: boolean;
7803
+ after?: boolean;
7804
+ };
7709
7805
  from?: {
7710
7806
  before?: boolean;
7711
7807
  after?: boolean;
@@ -7722,11 +7818,11 @@ type StylisticKeywordSpacing = [] | [{
7722
7818
  before?: boolean;
7723
7819
  after?: boolean;
7724
7820
  };
7725
- satisfies?: {
7821
+ set?: {
7726
7822
  before?: boolean;
7727
7823
  after?: boolean;
7728
7824
  };
7729
- set?: {
7825
+ type?: {
7730
7826
  before?: boolean;
7731
7827
  after?: boolean;
7732
7828
  };
@@ -7738,7 +7834,11 @@ type StylisticKeywordSpacing = [] | [{
7738
7834
  before?: boolean;
7739
7835
  after?: boolean;
7740
7836
  };
7741
- type?: {
7837
+ accessor?: {
7838
+ before?: boolean;
7839
+ after?: boolean;
7840
+ };
7841
+ satisfies?: {
7742
7842
  before?: boolean;
7743
7843
  after?: boolean;
7744
7844
  };
@@ -7941,6 +8041,7 @@ type StylisticNoExtraParens = ([] | ["functions"] | [] | ["all"] | ["all", {
7941
8041
  LogicalExpression?: boolean;
7942
8042
  AwaitExpression?: boolean;
7943
8043
  };
8044
+ ignoredNodes?: string[];
7944
8045
  }]);
7945
8046
  // ----- @stylistic/no-mixed-operators -----
7946
8047
  type StylisticNoMixedOperators = [] | [{
@@ -8028,6 +8129,18 @@ type StylisticObjectCurlyNewline = [] | [((("always" | "never") | {
8028
8129
  type StylisticObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
8029
8130
  arraysInObjects?: boolean;
8030
8131
  objectsInObjects?: boolean;
8132
+ overrides?: {
8133
+ ObjectPattern?: ("always" | "never");
8134
+ ObjectExpression?: ("always" | "never");
8135
+ ImportDeclaration?: ("always" | "never");
8136
+ ImportAttributes?: ("always" | "never");
8137
+ ExportNamedDeclaration?: ("always" | "never");
8138
+ ExportAllDeclaration?: ("always" | "never");
8139
+ TSMappedType?: ("always" | "never");
8140
+ TSTypeLiteral?: ("always" | "never");
8141
+ TSInterfaceBody?: ("always" | "never");
8142
+ TSEnumBody?: ("always" | "never");
8143
+ };
8031
8144
  }];
8032
8145
  // ----- @stylistic/object-property-newline -----
8033
8146
  type StylisticObjectPropertyNewline = [] | [{
@@ -8056,7 +8169,7 @@ type StylisticPaddedBlocks = [] | [(("always" | "never" | "start" | "end") | {
8056
8169
  // ----- @stylistic/padding-line-between-statements -----
8057
8170
  type _StylisticPaddingLineBetweenStatementsPaddingType = ("any" | "never" | "always");
8058
8171
  type _StylisticPaddingLineBetweenStatementsStatementOption = (_StylisticPaddingLineBetweenStatementsStatementType | [_StylisticPaddingLineBetweenStatementsStatementType, ...(_StylisticPaddingLineBetweenStatementsStatementType)[]]);
8059
- type _StylisticPaddingLineBetweenStatementsStatementType = ("*" | "exports" | "require" | "directive" | "iife" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "continue" | "debugger" | "default" | "do" | "for" | "if" | "import" | "return" | "switch" | "throw" | "try" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "type" | "function-overload" | "block-like" | "singleline-block-like" | "multiline-block-like" | "expression" | "singleline-expression" | "multiline-expression" | "export" | "singleline-export" | "multiline-export" | "var" | "singleline-var" | "multiline-var" | "let" | "singleline-let" | "multiline-let" | "const" | "singleline-const" | "multiline-const" | "using" | "singleline-using" | "multiline-using");
8172
+ type _StylisticPaddingLineBetweenStatementsStatementType = ("*" | "exports" | "require" | "directive" | "iife" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "continue" | "debugger" | "default" | "do" | "for" | "if" | "import" | "switch" | "throw" | "try" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "function-overload" | "block-like" | "singleline-block-like" | "multiline-block-like" | "expression" | "singleline-expression" | "multiline-expression" | "return" | "singleline-return" | "multiline-return" | "export" | "singleline-export" | "multiline-export" | "var" | "singleline-var" | "multiline-var" | "let" | "singleline-let" | "multiline-let" | "const" | "singleline-const" | "multiline-const" | "using" | "singleline-using" | "multiline-using" | "type" | "singleline-type" | "multiline-type");
8060
8173
  type StylisticPaddingLineBetweenStatements = {
8061
8174
  blankLine: _StylisticPaddingLineBetweenStatementsPaddingType;
8062
8175
  prev: _StylisticPaddingLineBetweenStatementsStatementOption;
@@ -9475,6 +9588,10 @@ type IndentLegacy = [] | [("tab" | number)] | [("tab" | number), {
9475
9588
  type InitDeclarations = ([] | ["always"] | [] | ["never"] | ["never", {
9476
9589
  ignoreForLoopInit?: boolean;
9477
9590
  }]);
9591
+ // ----- jsdoc/check-alignment -----
9592
+ type JsdocCheckAlignment = [] | [{
9593
+ innerIndent?: number;
9594
+ }];
9478
9595
  // ----- jsdoc/check-examples -----
9479
9596
  type JsdocCheckExamples = [] | [{
9480
9597
  allowInlineConfig?: boolean;
@@ -9764,6 +9881,7 @@ type JsdocRequireJsdoc = [] | [{
9764
9881
  enableFixer?: boolean;
9765
9882
  exemptEmptyConstructors?: boolean;
9766
9883
  exemptEmptyFunctions?: boolean;
9884
+ exemptOverloadedImplementations?: boolean;
9767
9885
  fixerMessage?: string;
9768
9886
  minLineCount?: number;
9769
9887
  publicOnly?: (boolean | {
@@ -9780,6 +9898,7 @@ type JsdocRequireJsdoc = [] | [{
9780
9898
  FunctionExpression?: boolean;
9781
9899
  MethodDefinition?: boolean;
9782
9900
  };
9901
+ skipInterveningOverloadedDeclarations?: boolean;
9783
9902
  }];
9784
9903
  // ----- jsdoc/require-param -----
9785
9904
  type JsdocRequireParam = [] | [{
@@ -9800,6 +9919,7 @@ type JsdocRequireParam = [] | [{
9800
9919
  enableRootFixer?: boolean;
9801
9920
  exemptedBy?: string[];
9802
9921
  ignoreWhenAllParamsMissing?: boolean;
9922
+ interfaceExemptsParamsCheck?: boolean;
9803
9923
  unnamedRootBase?: string[];
9804
9924
  useDefaultObjectProperties?: boolean;
9805
9925
  }];
@@ -9868,8 +9988,17 @@ type JsdocRequireReturnsType = [] | [{
9868
9988
  context?: string;
9869
9989
  })[];
9870
9990
  }];
9991
+ // ----- jsdoc/require-tags -----
9992
+ type JsdocRequireTags = [] | [{
9993
+ tags?: (string | {
9994
+ context?: string;
9995
+ tag?: string;
9996
+ [k: string]: unknown | undefined;
9997
+ })[];
9998
+ }];
9871
9999
  // ----- jsdoc/require-template -----
9872
10000
  type JsdocRequireTemplate = [] | [{
10001
+ exemptedBy?: string[];
9873
10002
  requireSeparateTemplates?: boolean;
9874
10003
  }];
9875
10004
  // ----- jsdoc/require-throws -----
@@ -9900,7 +10029,6 @@ type JsdocRequireYieldsCheck = [] | [{
9900
10029
  comment?: string;
9901
10030
  context?: string;
9902
10031
  })[];
9903
- exemptedBy?: string[];
9904
10032
  next?: boolean;
9905
10033
  }];
9906
10034
  // ----- jsdoc/sort-tags -----
@@ -9918,6 +10046,7 @@ type JsdocTagLines = [] | [("always" | "any" | "never")] | [("always" | "any" |
9918
10046
  applyToEndTag?: boolean;
9919
10047
  count?: number;
9920
10048
  endLines?: (number | null);
10049
+ maxBlockLines?: (number | null);
9921
10050
  startLines?: (number | null);
9922
10051
  tags?: {
9923
10052
  [k: string]: {
@@ -9931,6 +10060,21 @@ type JsdocTextEscaping = [] | [{
9931
10060
  escapeHTML?: boolean;
9932
10061
  escapeMarkdown?: boolean;
9933
10062
  }];
10063
+ // ----- jsdoc/type-formatting -----
10064
+ type JsdocTypeFormatting = [] | [{
10065
+ arrayBrackets?: ("angle" | "square");
10066
+ enableFixer?: boolean;
10067
+ genericDot?: boolean;
10068
+ objectFieldIndent?: string;
10069
+ objectFieldQuote?: ("double" | "single" | null);
10070
+ objectFieldSeparator?: ("comma" | "comma-and-linebreak" | "linebreak" | "semicolon" | "semicolon-and-linebreak");
10071
+ objectFieldSeparatorOptionalLinebreak?: boolean;
10072
+ objectFieldSeparatorTrailingPunctuation?: boolean;
10073
+ separatorForSingleObjectField?: boolean;
10074
+ stringQuotes?: ("double" | "single");
10075
+ typeBracketSpacing?: string;
10076
+ unionSpacing?: string;
10077
+ }];
9934
10078
  // ----- jsdoc/valid-types -----
9935
10079
  type JsdocValidTypes = [] | [{
9936
10080
  allowEmptyNamepaths?: boolean;
@@ -10619,6 +10763,10 @@ type MarkdownNoHtml = [] | [{
10619
10763
  type MarkdownNoMissingAtxHeadingSpace = [] | [{
10620
10764
  checkClosedHeadings?: boolean;
10621
10765
  }];
10766
+ // ----- markdown/no-missing-label-refs -----
10767
+ type MarkdownNoMissingLabelRefs = [] | [{
10768
+ allowLabels?: string[];
10769
+ }];
10622
10770
  // ----- markdown/no-missing-link-fragments -----
10623
10771
  type MarkdownNoMissingLinkFragments = [] | [{
10624
10772
  ignoreCase?: boolean;
@@ -10797,7 +10945,7 @@ type NHashbang = [] | [{
10797
10945
  // ----- n/no-deprecated-api -----
10798
10946
  type NNoDeprecatedApi = [] | [{
10799
10947
  version?: string;
10800
- ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[];
10948
+ ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "repl.builtinModules" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[];
10801
10949
  ignoreGlobalItems?: ("Buffer()" | "new Buffer()" | "COUNTER_NET_SERVER_CONNECTION" | "COUNTER_NET_SERVER_CONNECTION_CLOSE" | "COUNTER_HTTP_SERVER_REQUEST" | "COUNTER_HTTP_SERVER_RESPONSE" | "COUNTER_HTTP_CLIENT_REQUEST" | "COUNTER_HTTP_CLIENT_RESPONSE" | "GLOBAL" | "Intl.v8BreakIterator" | "require.extensions" | "root" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport")[];
10802
10950
  ignoreIndirectDependencies?: boolean;
10803
10951
  }];
@@ -10991,7 +11139,7 @@ type NNoUnsupportedFeaturesEsSyntax = [] | [{
10991
11139
  type NNoUnsupportedFeaturesNodeBuiltins = [] | [{
10992
11140
  version?: string;
10993
11141
  allowExperimental?: boolean;
10994
- 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.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.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.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.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" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "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.isBuiltin" | "module.register" | "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.isBuiltin" | "module.Module.register" | "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.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.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.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "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.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.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.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[];
11142
+ 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")[];
10995
11143
  }];
10996
11144
  // ----- n/prefer-global/buffer -----
10997
11145
  type NPreferGlobalBuffer = [] | [("always" | "never")];
@@ -13290,6 +13438,10 @@ type PreferReflect = [] | [{
13290
13438
  type PreferRegexLiterals = [] | [{
13291
13439
  disallowRedundantWrapping?: boolean;
13292
13440
  }];
13441
+ // ----- preserve-caught-error -----
13442
+ type PreserveCaughtError = [] | [{
13443
+ requireCatchParameter?: boolean;
13444
+ }];
13293
13445
  // ----- quote-props -----
13294
13446
  type QuoteProps = ([] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
13295
13447
  keywords?: boolean;
@@ -13818,6 +13970,10 @@ type UnicornNoArrayReduce = [] | [{
13818
13970
  type UnicornNoArrayReverse = [] | [{
13819
13971
  allowExpressionStatement?: boolean;
13820
13972
  }];
13973
+ // ----- unicorn/no-array-sort -----
13974
+ type UnicornNoArraySort = [] | [{
13975
+ allowExpressionStatement?: boolean;
13976
+ }];
13821
13977
  // ----- unicorn/no-instanceof-builtins -----
13822
13978
  type UnicornNoInstanceofBuiltins = [] | [{
13823
13979
  useErrorIsError?: boolean;
@@ -14039,6 +14195,7 @@ type VueAttributeHyphenation = [] | [("always" | "never")] | [("always" | "never
14039
14195
  type VueAttributesOrder = [] | [{
14040
14196
  order?: (("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT") | ("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT")[])[];
14041
14197
  alphabetical?: boolean;
14198
+ sortLineLength?: boolean;
14042
14199
  }];
14043
14200
  // ----- vue/block-lang -----
14044
14201
  type VueBlockLang = [] | [{
@@ -14685,6 +14842,10 @@ type VueNewLineBetweenMultiLineProperty = [] | [{
14685
14842
  }];
14686
14843
  // ----- vue/next-tick-style -----
14687
14844
  type VueNextTickStyle = [] | [("promise" | "callback")];
14845
+ // ----- vue/no-async-in-computed-properties -----
14846
+ type VueNoAsyncInComputedProperties = [] | [{
14847
+ ignoredObjectNames?: string[];
14848
+ }];
14688
14849
  // ----- vue/no-bare-strings-in-template -----
14689
14850
  type VueNoBareStringsInTemplate = [] | [{
14690
14851
  allowlist?: string[];
@@ -14969,6 +15130,10 @@ type VueNoUselessVBind = [] | [{
14969
15130
  ignoreIncludesComment?: boolean;
14970
15131
  ignoreStringEscape?: boolean;
14971
15132
  }];
15133
+ // ----- vue/no-v-html -----
15134
+ type VueNoVHtml = [] | [{
15135
+ ignorePattern?: string;
15136
+ }];
14972
15137
  // ----- vue/no-v-text-v-html-on-component -----
14973
15138
  type VueNoVTextVHtmlOnComponent = [] | [{
14974
15139
  allow?: string[];
@@ -15403,519 +15568,4 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
15403
15568
  // Names of all the configs
15404
15569
  type ConfigNames = 'eienjs/adonisjs/rules' | 'eienjs/adonisjs/disables' | 'eienjs/adonisjs/database-disables' | 'eienjs/adonisjs/bin-disables' | 'eienjs/adonisjs/commands-disables' | 'eienjs/adonisjs/middleware-disables' | 'eienjs/adonisjs/exceptions-disables' | 'eienjs/adonisjs/controllers-disables' | 'eienjs/adonisjs/config-disables' | 'eienjs/adonisjs/providers-disables' | 'eienjs/adonisjs/tests-disables' | 'eienjs/astro/setup' | 'eienjs/astro/rules' | 'eienjs/eslint-comments/rules' | 'eienjs/formatter/setup' | 'eienjs/imports/rules' | 'eienjs/javascript/setup' | 'eienjs/javascript/rules' | 'eienjs/jsdoc/rules' | 'eienjs/jsonc/setup' | 'eienjs/jsonc/rules' | 'eienjs/markdown/setup' | 'eienjs/markdown/processor' | 'eienjs/markdown/parser' | 'eienjs/markdown/disables' | 'eienjs/node/rules' | 'eienjs/nuxt/setup' | 'eienjs/nuxt/vue/single-root' | 'eienjs/nuxt/rules' | 'eienjs/nuxt/utils-disables' | 'eienjs/nuxt/sort-config' | 'eienjs/nuxt/vue/rules' | 'eienjs/perfectionist/setup' | 'eienjs/sort/package-json' | 'eienjs/stylistic/rules' | 'eienjs/test/setup' | 'eienjs/test/rules' | 'eienjs/toml/setup' | 'eienjs/toml/rules' | 'eienjs/regexp/rules' | 'eienjs/typescript/setup' | 'eienjs/typescript/parser' | 'eienjs/typescript/rules' | 'eienjs/unicorn/rules' | 'eienjs/unicorn/special-rules' | 'eienjs/vue/setup' | 'eienjs/vue/rules' | 'eienjs/vue/composables-disables' | 'eienjs/yaml/setup' | 'eienjs/yaml/rules' | 'eienjs/yaml/pnpm-workspace';
15405
15570
  //#endregion
15406
- //#region src/vendored/prettier_types.d.ts
15407
- /**
15408
- * Vendor types from Prettier so we don't rely on the dependency.
15409
- */
15410
- type VendoredPrettierOptions = Partial<VendoredPrettierOptionsRequired>;
15411
- interface VendoredPrettierOptionsRequired {
15412
- /**
15413
- * Specify the line length that the printer will wrap on.
15414
- * @default 120
15415
- */
15416
- printWidth: number;
15417
- /**
15418
- * Specify the number of spaces per indentation-level.
15419
- */
15420
- tabWidth: number;
15421
- /**
15422
- * Indent lines with tabs instead of spaces
15423
- */
15424
- useTabs?: boolean;
15425
- /**
15426
- * Print semicolons at the ends of statements.
15427
- */
15428
- semi: boolean;
15429
- /**
15430
- * Use single quotes instead of double quotes.
15431
- */
15432
- singleQuote: boolean;
15433
- /**
15434
- * Use single quotes in JSX.
15435
- */
15436
- jsxSingleQuote: boolean;
15437
- /**
15438
- * Print trailing commas wherever possible.
15439
- */
15440
- trailingComma: 'none' | 'es5' | 'all';
15441
- /**
15442
- * Print spaces between brackets in object literals.
15443
- */
15444
- bracketSpacing: boolean;
15445
- /**
15446
- * Put the `>` of a multi-line HTML (HTML, XML, JSX, Vue, Angular) element at the end of the last line instead of being
15447
- * alone on the next line (does not apply to self closing elements).
15448
- */
15449
- bracketSameLine: boolean;
15450
- /**
15451
- * Put the `>` of a multi-line JSX element at the end of the last line instead of being alone on the next line.
15452
- * @deprecated use bracketSameLine instead
15453
- */
15454
- jsxBracketSameLine: boolean;
15455
- /**
15456
- * Format only a segment of a file.
15457
- */
15458
- rangeStart: number;
15459
- /**
15460
- * Format only a segment of a file.
15461
- * @default Number.POSITIVE_INFINITY
15462
- */
15463
- rangeEnd: number;
15464
- /**
15465
- * By default, Prettier will wrap markdown text as-is since some services use a linebreak-sensitive renderer.
15466
- * In some cases you may want to rely on editor/viewer soft wrapping instead, so this option allows you to opt out.
15467
- * @default "preserve"
15468
- */
15469
- proseWrap: 'always' | 'never' | 'preserve';
15470
- /**
15471
- * Include parentheses around a sole arrow function parameter.
15472
- * @default "always"
15473
- */
15474
- arrowParens: 'avoid' | 'always';
15475
- /**
15476
- * Provide ability to support new languages to prettier.
15477
- */
15478
- plugins: unknown[];
15479
- /**
15480
- * How to handle whitespaces in HTML.
15481
- * @default "css"
15482
- */
15483
- htmlWhitespaceSensitivity: 'css' | 'strict' | 'ignore';
15484
- /**
15485
- * Which end of line characters to apply.
15486
- * @default "lf"
15487
- */
15488
- endOfLine: 'auto' | 'lf' | 'crlf' | 'cr';
15489
- /**
15490
- * Change when properties in objects are quoted.
15491
- * @default "as-needed"
15492
- */
15493
- quoteProps: 'as-needed' | 'consistent' | 'preserve';
15494
- /**
15495
- * Whether or not to indent the code inside <script> and <style> tags in Vue files.
15496
- * @default false
15497
- */
15498
- vueIndentScriptAndStyle: boolean;
15499
- /**
15500
- * Enforce single attribute per line in HTML, XML, Vue and JSX.
15501
- * @default false
15502
- */
15503
- singleAttributePerLine: boolean;
15504
- /**
15505
- * How to handle whitespaces in XML.
15506
- * @default "preserve"
15507
- */
15508
- xmlQuoteAttributes: 'single' | 'double' | 'preserve';
15509
- /**
15510
- * Whether to put a space inside the brackets of self-closing XML elements.
15511
- * @default true
15512
- */
15513
- xmlSelfClosingSpace: boolean;
15514
- /**
15515
- * Whether to sort attributes by key in XML elements.
15516
- * @default false
15517
- */
15518
- xmlSortAttributesByKey: boolean;
15519
- /**
15520
- * How to handle whitespaces in XML.
15521
- * @default "ignore"
15522
- */
15523
- xmlWhitespaceSensitivity: 'ignore' | 'strict' | 'preserve';
15524
- }
15525
- //#endregion
15526
- //#region src/types.d.ts
15527
- type Awaitable<T> = T | Promise<T>;
15528
- type Rules = Record<string, Linter.RuleEntry | undefined> & RuleOptions;
15529
- /**
15530
- * An updated version of ESLint's `Linter.Config`, which provides autocompletion
15531
- * for `rules` and relaxes type limitations for `plugins` and `rules`, because
15532
- * many plugins still lack proper type definitions.
15533
- */
15534
- type TypedFlatConfigItem = Omit<Linter.Config, 'plugins' | 'rules'> & {
15535
- /**
15536
- * An object containing a name-value mapping of plugin names to plugin objects.
15537
- * When `files` is specified, these plugins are only available to the matching files.
15538
- *
15539
- * @see [Using plugins in your configuration](https://eslint.org/docs/latest/user-guide/configuring/configuration-files-new#using-plugins-in-your-configuration)
15540
- */
15541
- plugins?: Record<string, unknown>;
15542
- /**
15543
- * An object containing the configured rules. When `files` or `ignores` are
15544
- * specified, these rule configurations are only available to the matching files.
15545
- */
15546
- rules?: Rules;
15547
- };
15548
- interface OptionsNuxt extends OptionsOverrides {
15549
- /**
15550
- * Version of Nuxt
15551
- *
15552
- * @default 4
15553
- */
15554
- version?: 3 | 4;
15555
- /**
15556
- * Sort keys in nuxt.config to maintain a consistent order
15557
- *
15558
- * @default true when `stylistic` is enabled
15559
- */
15560
- sortConfigKeys?: boolean;
15561
- dirs?: {
15562
- /**
15563
- * Nuxt source directory
15564
- */
15565
- src?: string[];
15566
- /**
15567
- * Root directory for nuxt project
15568
- */
15569
- root?: string[];
15570
- /**
15571
- * Directory for pages
15572
- */
15573
- pages?: string[];
15574
- /**
15575
- * Directory for layouts
15576
- */
15577
- layouts?: string[];
15578
- /**
15579
- * Directory for components
15580
- */
15581
- components?: string[];
15582
- /**
15583
- * Directory for components with prefix
15584
- * Ignore `vue/multi-word-component-names`
15585
- */
15586
- componentsPrefixed?: string[];
15587
- /**
15588
- * Directory for composobles
15589
- */
15590
- composables?: string[];
15591
- /**
15592
- * Directory for plugins
15593
- */
15594
- plugins?: string[];
15595
- /**
15596
- * Directory for modules
15597
- */
15598
- modules?: string[];
15599
- /**
15600
- * Directory for middleware
15601
- */
15602
- middleware?: string[];
15603
- /**
15604
- * Directory for server
15605
- */
15606
- servers?: string[];
15607
- /**
15608
- * Directory for utils
15609
- */
15610
- utils?: string[];
15611
- };
15612
- }
15613
- interface OptionsAdonisJS extends OptionsOverrides {
15614
- /**
15615
- * Override the `dirs` option to provide custom directories of adonisjs app.
15616
- */
15617
- dirs?: {
15618
- root?: string;
15619
- bin?: string;
15620
- controllers?: string;
15621
- exceptions?: string;
15622
- models?: string;
15623
- mails?: string;
15624
- services?: string;
15625
- listeners?: string;
15626
- events?: string;
15627
- middleware?: string;
15628
- validators?: string;
15629
- providers?: string;
15630
- policies?: string;
15631
- abilities?: string;
15632
- database?: string;
15633
- start?: string;
15634
- tests?: string;
15635
- config?: string;
15636
- commands?: string;
15637
- };
15638
- }
15639
- interface OptionsVue extends OptionsOverrides {
15640
- /**
15641
- * Create virtual files for Vue SFC blocks to enable linting.
15642
- *
15643
- * @see https://github.com/antfu/eslint-processor-vue-blocks
15644
- * @default true
15645
- */
15646
- sfcBlocks?: boolean | Options;
15647
- /**
15648
- * Only check registered components in template casing.
15649
- *
15650
- * @default false
15651
- */
15652
- componentNameInTemplateCasingOnlyRegistered?: boolean;
15653
- /**
15654
- * Ignored components in template casing.
15655
- *
15656
- * @default []
15657
- */
15658
- componentNameInTemplateCasingIgnores?: string[];
15659
- /**
15660
- * Global components in template casing.
15661
- *
15662
- * @default []
15663
- */
15664
- componentNameInTemplateCasingGlobals?: string[];
15665
- }
15666
- type OptionsTypescript = (OptionsTypeScriptWithTypes & OptionsOverrides) | (OptionsTypeScriptParserOptions & OptionsOverrides);
15667
- interface OptionsFormatters {
15668
- /**
15669
- * Enable formatting support for CSS, Less, Sass, and SCSS.
15670
- *
15671
- * Currently only support Prettier.
15672
- */
15673
- css?: 'prettier' | boolean;
15674
- /**
15675
- * Enable formatting support for HTML.
15676
- *
15677
- * Currently only support Prettier.
15678
- */
15679
- html?: 'prettier' | boolean;
15680
- /**
15681
- * Enable formatting support for XML.
15682
- *
15683
- * Currently only support Prettier.
15684
- */
15685
- xml?: 'prettier' | boolean;
15686
- /**
15687
- * Enable formatting support for SVG.
15688
- *
15689
- * Currently only support Prettier.
15690
- */
15691
- svg?: 'prettier' | boolean;
15692
- /**
15693
- * Enable formatting support for Markdown.
15694
- *
15695
- * Support both Prettier and dprint.
15696
- *
15697
- * When set to `true`, it will use Prettier.
15698
- */
15699
- markdown?: 'prettier' | boolean;
15700
- /**
15701
- * Custom options for Prettier.
15702
- *
15703
- * By default it's controlled by our own config.
15704
- */
15705
- prettierOptions?: VendoredPrettierOptions;
15706
- /**
15707
- * Enable formatting support for Astro.
15708
- *
15709
- * Currently only support Prettier.
15710
- */
15711
- astro?: 'prettier' | boolean;
15712
- }
15713
- interface OptionsComponentExts {
15714
- /**
15715
- * Additional extensions for components.
15716
- *
15717
- * @example ['vue']
15718
- * @default []
15719
- */
15720
- componentExts?: string[];
15721
- }
15722
- interface OptionsTypeScriptParserOptions {
15723
- /**
15724
- * Additional parser options for TypeScript.
15725
- */
15726
- parserOptions?: Partial<ParserOptions>;
15727
- /**
15728
- * Glob patterns for files that should be type aware.
15729
- * @default ['**\/*.{ts,tsx}']
15730
- */
15731
- filesTypeAware?: string[];
15732
- /**
15733
- * Glob patterns for files that should not be type aware.
15734
- * @default ['**\/*.md\/**', '**\/*.astro/*.ts']
15735
- */
15736
- ignoresTypeAware?: string[];
15737
- }
15738
- interface OptionsTypeScriptWithTypes {
15739
- /**
15740
- * When this options is provided, type aware rules will be enabled.
15741
- * @see https://typescript-eslint.io/linting/typed-linting/
15742
- */
15743
- tsconfigPath?: string;
15744
- /**
15745
- * Override type aware rules.
15746
- */
15747
- overridesTypeAware?: TypedFlatConfigItem['rules'];
15748
- }
15749
- interface OptionsHasTypeScript {
15750
- typescript?: boolean;
15751
- }
15752
- interface OptionsStylistic {
15753
- stylistic?: boolean | StylisticConfig;
15754
- }
15755
- interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes'> {
15756
- maxLineLength?: number;
15757
- }
15758
- interface OptionsOverrides {
15759
- overrides?: TypedFlatConfigItem['rules'];
15760
- }
15761
- interface OptionsFiles {
15762
- /**
15763
- * Override the `files` option to provide custom globs.
15764
- */
15765
- files?: string[];
15766
- }
15767
- interface OptionsRegExp {
15768
- /**
15769
- * Override rulelevels
15770
- */
15771
- level?: 'error' | 'warn';
15772
- }
15773
- interface OptionsIsInEditor {
15774
- isInEditor?: boolean;
15775
- }
15776
- interface OptionsConfig extends OptionsComponentExts {
15777
- /**
15778
- * Enable gitignore support.
15779
- *
15780
- * Passing an object to configure the options.
15781
- *
15782
- * @see https://github.com/antfu/eslint-config-flat-gitignore
15783
- * @default true
15784
- */
15785
- gitignore?: boolean | FlatGitignoreOptions;
15786
- /**
15787
- * Core rules. Can't be disabled.
15788
- */
15789
- javascript?: OptionsOverrides;
15790
- /**
15791
- * Enable TypeScript support.
15792
- *
15793
- * Passing an object to enable TypeScript Language Server support.
15794
- *
15795
- * @default auto-detect based on the dependencies
15796
- */
15797
- typescript?: boolean | OptionsTypescript;
15798
- /**
15799
- * Options for eslint-plugin-unicorn.
15800
- *
15801
- * @default true
15802
- */
15803
- unicorn?: boolean | OptionsOverrides;
15804
- /**
15805
- * Options for eslint-plugin-import-lite.
15806
- *
15807
- * @default true
15808
- */
15809
- imports?: boolean | OptionsOverrides;
15810
- /**
15811
- * Enable test support.
15812
- *
15813
- * @default true
15814
- */
15815
- test?: boolean | OptionsOverrides;
15816
- /**
15817
- * Enable Vue support.
15818
- *
15819
- * @default auto-detect based on the dependencies
15820
- */
15821
- vue?: boolean | OptionsVue;
15822
- /**
15823
- * Enable JSONC support.
15824
- *
15825
- * @default true
15826
- */
15827
- jsonc?: boolean | OptionsOverrides;
15828
- /**
15829
- * Enable YAML support.
15830
- *
15831
- * @default true
15832
- */
15833
- yaml?: boolean | OptionsOverrides;
15834
- /**
15835
- * Enable TOML support.
15836
- *
15837
- * @default true
15838
- */
15839
- toml?: boolean | OptionsOverrides;
15840
- /**
15841
- * Enable ASTRO support.
15842
- *
15843
- * Requires installing:
15844
- * - `eslint-plugin-astro`
15845
- *
15846
- * Requires installing for formatting .astro:
15847
- * - `prettier-plugin-astro`
15848
- *
15849
- * @default false
15850
- */
15851
- astro?: boolean | OptionsOverrides;
15852
- /**
15853
- * Enable linting for **code snippets** in Markdown.
15854
- *
15855
- * For formatting Markdown content, enable also `formatters.markdown`.
15856
- *
15857
- * @default true
15858
- */
15859
- markdown?: boolean | OptionsOverrides;
15860
- /**
15861
- * Enable stylistic rules.
15862
- *
15863
- * @see https://eslint.style/
15864
- * @default true
15865
- */
15866
- stylistic?: boolean | (StylisticConfig & OptionsOverrides);
15867
- /**
15868
- * Enable regexp rules.
15869
- *
15870
- * @see https://ota-meshi.github.io/eslint-plugin-regexp/
15871
- * @default true
15872
- */
15873
- regexp?: boolean | (OptionsRegExp & OptionsOverrides);
15874
- /**
15875
- * Enable pnpm (workspace/catalogs) support.
15876
- *
15877
- * Currently it's disabled by default, as it's still experimental.
15878
- * In the future it will be smartly enabled based on the project usage.
15879
- *
15880
- * @see https://github.com/antfu/pnpm-workspace-utils
15881
- * @experimental
15882
- * @default false
15883
- */
15884
- pnpm?: boolean;
15885
- /**
15886
- * Use external formatters to format files.
15887
- *
15888
- * Requires installing:
15889
- * - `eslint-plugin-format`
15890
- *
15891
- * When set to `true`, it will enable all formatters.
15892
- *
15893
- * @default false
15894
- */
15895
- formatters?: boolean | OptionsFormatters;
15896
- /**
15897
- * Control to disable some rules in editors.
15898
- * @default auto-detect based on the process.env
15899
- */
15900
- isInEditor?: boolean;
15901
- /**
15902
- * Enable AdonisJS support.
15903
- *
15904
- * Requires installing:
15905
- * - `@adonisjs/eslint-plugin`
15906
- *
15907
- * @default false
15908
- */
15909
- adonisjs?: boolean | OptionsAdonisJS;
15910
- /**
15911
- * Enable Nuxt support.
15912
- *
15913
- * Requires installing:
15914
- * - `@nuxt/eslint-plugin`
15915
- *
15916
- * @default false
15917
- */
15918
- nuxt?: boolean | OptionsNuxt;
15919
- }
15920
- //#endregion
15921
- export { Awaitable, type ConfigNames, OptionsAdonisJS, OptionsComponentExts, OptionsConfig, OptionsFiles, OptionsFormatters, OptionsHasTypeScript, OptionsIsInEditor, OptionsNuxt, OptionsOverrides, OptionsRegExp, OptionsStylistic, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsVue, RuleOptions, Rules, StylisticConfig, TypedFlatConfigItem };
15571
+ export { ConfigNames, RuleOptions };