@anolilab/eslint-config 16.3.0 → 16.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +696 -186
- package/dist/index.d.mts +696 -186
- package/dist/index.d.ts +696 -186
- package/dist/index.mjs +2 -2
- package/package.json +261 -261
package/dist/index.d.ts
CHANGED
|
@@ -1813,7 +1813,7 @@ interface RuleOptions {
|
|
|
1813
1813
|
*/
|
|
1814
1814
|
'jsdoc/check-alignment'?: Linter.RuleEntry<JsdocCheckAlignment>
|
|
1815
1815
|
/**
|
|
1816
|
-
*
|
|
1816
|
+
* @deprecated - Use `getJsdocProcessorPlugin` processor; ensures that (JavaScript) samples within `@example` tags adhere to ESLint rules.
|
|
1817
1817
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-examples.md#repos-sticky-header
|
|
1818
1818
|
*/
|
|
1819
1819
|
'jsdoc/check-examples'?: Linter.RuleEntry<JsdocCheckExamples>
|
|
@@ -1828,7 +1828,7 @@ interface RuleOptions {
|
|
|
1828
1828
|
*/
|
|
1829
1829
|
'jsdoc/check-line-alignment'?: Linter.RuleEntry<JsdocCheckLineAlignment>
|
|
1830
1830
|
/**
|
|
1831
|
-
*
|
|
1831
|
+
* Checks for dupe `@param` names, that nested param names have roots, and that parameter names in function declarations match JSDoc param names.
|
|
1832
1832
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-param-names.md#repos-sticky-header
|
|
1833
1833
|
*/
|
|
1834
1834
|
'jsdoc/check-param-names'?: Linter.RuleEntry<JsdocCheckParamNames>
|
|
@@ -1853,7 +1853,7 @@ interface RuleOptions {
|
|
|
1853
1853
|
*/
|
|
1854
1854
|
'jsdoc/check-template-names'?: Linter.RuleEntry<[]>
|
|
1855
1855
|
/**
|
|
1856
|
-
* Reports invalid
|
|
1856
|
+
* Reports types deemed invalid (customizable and with defaults, for preventing and/or recommending replacements).
|
|
1857
1857
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-types.md#repos-sticky-header
|
|
1858
1858
|
*/
|
|
1859
1859
|
'jsdoc/check-types'?: Linter.RuleEntry<JsdocCheckTypes>
|
|
@@ -1868,12 +1868,17 @@ interface RuleOptions {
|
|
|
1868
1868
|
*/
|
|
1869
1869
|
'jsdoc/convert-to-jsdoc-comments'?: Linter.RuleEntry<JsdocConvertToJsdocComments>
|
|
1870
1870
|
/**
|
|
1871
|
-
*
|
|
1871
|
+
* Checks tags that are expected to be empty (e.g., `@abstract` or `@async`), reporting if they have content
|
|
1872
1872
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/empty-tags.md#repos-sticky-header
|
|
1873
1873
|
*/
|
|
1874
1874
|
'jsdoc/empty-tags'?: Linter.RuleEntry<JsdocEmptyTags>
|
|
1875
1875
|
/**
|
|
1876
|
-
* Reports
|
|
1876
|
+
* Reports use of JSDoc tags in non-tag positions (in the default "typescript" mode).
|
|
1877
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/escape-inline-tags.md#repos-sticky-header
|
|
1878
|
+
*/
|
|
1879
|
+
'jsdoc/escape-inline-tags'?: Linter.RuleEntry<JsdocEscapeInlineTags>
|
|
1880
|
+
/**
|
|
1881
|
+
* Prohibits use of `@implements` on non-constructor functions (to enforce the tag only being used on classes/constructors).
|
|
1877
1882
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/implements-on-classes.md#repos-sticky-header
|
|
1878
1883
|
*/
|
|
1879
1884
|
'jsdoc/implements-on-classes'?: Linter.RuleEntry<JsdocImplementsOnClasses>
|
|
@@ -1903,17 +1908,17 @@ interface RuleOptions {
|
|
|
1903
1908
|
*/
|
|
1904
1909
|
'jsdoc/match-name'?: Linter.RuleEntry<JsdocMatchName>
|
|
1905
1910
|
/**
|
|
1906
|
-
* Controls how and whether
|
|
1911
|
+
* Controls how and whether JSDoc blocks can be expressed as single or multiple line blocks.
|
|
1907
1912
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/multiline-blocks.md#repos-sticky-header
|
|
1908
1913
|
*/
|
|
1909
1914
|
'jsdoc/multiline-blocks'?: Linter.RuleEntry<JsdocMultilineBlocks>
|
|
1910
1915
|
/**
|
|
1911
|
-
* This rule checks for multi-line-style comments which fail to meet the criteria of a
|
|
1916
|
+
* This rule checks for multi-line-style comments which fail to meet the criteria of a JSDoc block.
|
|
1912
1917
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-bad-blocks.md#repos-sticky-header
|
|
1913
1918
|
*/
|
|
1914
1919
|
'jsdoc/no-bad-blocks'?: Linter.RuleEntry<JsdocNoBadBlocks>
|
|
1915
1920
|
/**
|
|
1916
|
-
*
|
|
1921
|
+
* 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.
|
|
1917
1922
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-blank-block-descriptions.md#repos-sticky-header
|
|
1918
1923
|
*/
|
|
1919
1924
|
'jsdoc/no-blank-block-descriptions'?: Linter.RuleEntry<[]>
|
|
@@ -1943,22 +1948,37 @@ interface RuleOptions {
|
|
|
1943
1948
|
*/
|
|
1944
1949
|
'jsdoc/no-restricted-syntax'?: Linter.RuleEntry<JsdocNoRestrictedSyntax>
|
|
1945
1950
|
/**
|
|
1946
|
-
* This rule reports types being used on `@param` or `@returns
|
|
1951
|
+
* This rule reports types being used on `@param` or `@returns` (redundant with TypeScript).
|
|
1947
1952
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-types.md#repos-sticky-header
|
|
1948
1953
|
*/
|
|
1949
1954
|
'jsdoc/no-types'?: Linter.RuleEntry<JsdocNoTypes>
|
|
1950
1955
|
/**
|
|
1951
|
-
*
|
|
1956
|
+
* Besides some expected built-in types, prohibits any types not specified as globals or within `@typedef`.
|
|
1952
1957
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-undefined-types.md#repos-sticky-header
|
|
1953
1958
|
*/
|
|
1954
1959
|
'jsdoc/no-undefined-types'?: Linter.RuleEntry<JsdocNoUndefinedTypes>
|
|
1960
|
+
/**
|
|
1961
|
+
* Prefer `@import` tags to inline `import()` statements.
|
|
1962
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/prefer-import-tag.md#repos-sticky-header
|
|
1963
|
+
*/
|
|
1964
|
+
'jsdoc/prefer-import-tag'?: Linter.RuleEntry<JsdocPreferImportTag>
|
|
1965
|
+
/**
|
|
1966
|
+
* Reports use of `any` or `*` type
|
|
1967
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-any-type.md#repos-sticky-header
|
|
1968
|
+
*/
|
|
1969
|
+
'jsdoc/reject-any-type'?: Linter.RuleEntry<[]>
|
|
1970
|
+
/**
|
|
1971
|
+
* Reports use of `Function` type
|
|
1972
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-function-type.md#repos-sticky-header
|
|
1973
|
+
*/
|
|
1974
|
+
'jsdoc/reject-function-type'?: Linter.RuleEntry<[]>
|
|
1955
1975
|
/**
|
|
1956
1976
|
* Requires that each JSDoc line starts with an `*`.
|
|
1957
1977
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-asterisk-prefix.md#repos-sticky-header
|
|
1958
1978
|
*/
|
|
1959
1979
|
'jsdoc/require-asterisk-prefix'?: Linter.RuleEntry<JsdocRequireAsteriskPrefix>
|
|
1960
1980
|
/**
|
|
1961
|
-
* Requires that all functions have a description.
|
|
1981
|
+
* Requires that all functions (and potentially other contexts) have a description.
|
|
1962
1982
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-description.md#repos-sticky-header
|
|
1963
1983
|
*/
|
|
1964
1984
|
'jsdoc/require-description'?: Linter.RuleEntry<JsdocRequireDescription>
|
|
@@ -1968,7 +1988,7 @@ interface RuleOptions {
|
|
|
1968
1988
|
*/
|
|
1969
1989
|
'jsdoc/require-description-complete-sentence'?: Linter.RuleEntry<JsdocRequireDescriptionCompleteSentence>
|
|
1970
1990
|
/**
|
|
1971
|
-
* Requires that all functions have examples.
|
|
1991
|
+
* Requires that all functions (and potentially other contexts) have examples.
|
|
1972
1992
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-example.md#repos-sticky-header
|
|
1973
1993
|
*/
|
|
1974
1994
|
'jsdoc/require-example'?: Linter.RuleEntry<JsdocRequireExample>
|
|
@@ -1978,17 +1998,27 @@ interface RuleOptions {
|
|
|
1978
1998
|
*/
|
|
1979
1999
|
'jsdoc/require-file-overview'?: Linter.RuleEntry<JsdocRequireFileOverview>
|
|
1980
2000
|
/**
|
|
1981
|
-
* Requires a hyphen before the `@param` description.
|
|
2001
|
+
* Requires a hyphen before the `@param` description (and optionally before `@property` descriptions).
|
|
1982
2002
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-hyphen-before-param-description.md#repos-sticky-header
|
|
1983
2003
|
*/
|
|
1984
2004
|
'jsdoc/require-hyphen-before-param-description'?: Linter.RuleEntry<JsdocRequireHyphenBeforeParamDescription>
|
|
1985
2005
|
/**
|
|
1986
|
-
*
|
|
2006
|
+
* Checks for presence of JSDoc comments, on functions and potentially other contexts (optionally limited to exports).
|
|
1987
2007
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-jsdoc.md#repos-sticky-header
|
|
1988
2008
|
*/
|
|
1989
2009
|
'jsdoc/require-jsdoc'?: Linter.RuleEntry<JsdocRequireJsdoc>
|
|
1990
2010
|
/**
|
|
1991
|
-
* Requires
|
|
2011
|
+
* Requires a description for `@next` tags
|
|
2012
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-description.md#repos-sticky-header
|
|
2013
|
+
*/
|
|
2014
|
+
'jsdoc/require-next-description'?: Linter.RuleEntry<[]>
|
|
2015
|
+
/**
|
|
2016
|
+
* Requires a type for `@next` tags
|
|
2017
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-type.md#repos-sticky-header
|
|
2018
|
+
*/
|
|
2019
|
+
'jsdoc/require-next-type'?: Linter.RuleEntry<[]>
|
|
2020
|
+
/**
|
|
2021
|
+
* Requires that all function parameters are documented with a `@param` tag.
|
|
1992
2022
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param.md#repos-sticky-header
|
|
1993
2023
|
*/
|
|
1994
2024
|
'jsdoc/require-param'?: Linter.RuleEntry<JsdocRequireParam>
|
|
@@ -1998,12 +2028,12 @@ interface RuleOptions {
|
|
|
1998
2028
|
*/
|
|
1999
2029
|
'jsdoc/require-param-description'?: Linter.RuleEntry<JsdocRequireParamDescription>
|
|
2000
2030
|
/**
|
|
2001
|
-
* Requires that all
|
|
2031
|
+
* Requires that all `@param` tags have names.
|
|
2002
2032
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-name.md#repos-sticky-header
|
|
2003
2033
|
*/
|
|
2004
2034
|
'jsdoc/require-param-name'?: Linter.RuleEntry<JsdocRequireParamName>
|
|
2005
2035
|
/**
|
|
2006
|
-
* Requires that each `@param` tag has a
|
|
2036
|
+
* Requires that each `@param` tag has a type value (in curly brackets).
|
|
2007
2037
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-type.md#repos-sticky-header
|
|
2008
2038
|
*/
|
|
2009
2039
|
'jsdoc/require-param-type'?: Linter.RuleEntry<JsdocRequireParamType>
|
|
@@ -2018,62 +2048,92 @@ interface RuleOptions {
|
|
|
2018
2048
|
*/
|
|
2019
2049
|
'jsdoc/require-property-description'?: Linter.RuleEntry<[]>
|
|
2020
2050
|
/**
|
|
2021
|
-
* Requires that all
|
|
2051
|
+
* Requires that all `@property` tags have names.
|
|
2022
2052
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-name.md#repos-sticky-header
|
|
2023
2053
|
*/
|
|
2024
2054
|
'jsdoc/require-property-name'?: Linter.RuleEntry<[]>
|
|
2025
2055
|
/**
|
|
2026
|
-
* Requires that each `@property` tag has a
|
|
2056
|
+
* Requires that each `@property` tag has a type value (in curly brackets).
|
|
2027
2057
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-type.md#repos-sticky-header
|
|
2028
2058
|
*/
|
|
2029
2059
|
'jsdoc/require-property-type'?: Linter.RuleEntry<[]>
|
|
2030
2060
|
/**
|
|
2031
|
-
* Requires that returns are documented
|
|
2061
|
+
* Requires that returns are documented with `@returns`.
|
|
2032
2062
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns.md#repos-sticky-header
|
|
2033
2063
|
*/
|
|
2034
2064
|
'jsdoc/require-returns'?: Linter.RuleEntry<JsdocRequireReturns>
|
|
2035
2065
|
/**
|
|
2036
|
-
* Requires a return statement in function body if a `@returns` tag is specified in
|
|
2066
|
+
* Requires a return statement in function body if a `@returns` tag is specified in JSDoc comment(and reports if multiple `@returns` tags are present).
|
|
2037
2067
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-check.md#repos-sticky-header
|
|
2038
2068
|
*/
|
|
2039
2069
|
'jsdoc/require-returns-check'?: Linter.RuleEntry<JsdocRequireReturnsCheck>
|
|
2040
2070
|
/**
|
|
2041
|
-
* Requires that the `@returns` tag has a `description` value.
|
|
2071
|
+
* Requires that the `@returns` tag has a `description` value (not including `void`/`undefined` type returns).
|
|
2042
2072
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-description.md#repos-sticky-header
|
|
2043
2073
|
*/
|
|
2044
2074
|
'jsdoc/require-returns-description'?: Linter.RuleEntry<JsdocRequireReturnsDescription>
|
|
2045
2075
|
/**
|
|
2046
|
-
* Requires that `@returns` tag has
|
|
2076
|
+
* Requires that `@returns` tag has type value (in curly brackets).
|
|
2047
2077
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-type.md#repos-sticky-header
|
|
2048
2078
|
*/
|
|
2049
2079
|
'jsdoc/require-returns-type'?: Linter.RuleEntry<JsdocRequireReturnsType>
|
|
2050
2080
|
/**
|
|
2051
|
-
* Requires
|
|
2081
|
+
* Requires tags be present, optionally for specific contexts
|
|
2082
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-tags.md#repos-sticky-header
|
|
2083
|
+
*/
|
|
2084
|
+
'jsdoc/require-tags'?: Linter.RuleEntry<JsdocRequireTags>
|
|
2085
|
+
/**
|
|
2086
|
+
* Requires `@template` tags be present when type parameters are used.
|
|
2052
2087
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template.md#repos-sticky-header
|
|
2053
2088
|
*/
|
|
2054
2089
|
'jsdoc/require-template'?: Linter.RuleEntry<JsdocRequireTemplate>
|
|
2055
2090
|
/**
|
|
2056
|
-
* Requires
|
|
2091
|
+
* Requires a description for `@template` tags
|
|
2092
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template-description.md#repos-sticky-header
|
|
2093
|
+
*/
|
|
2094
|
+
'jsdoc/require-template-description'?: Linter.RuleEntry<[]>
|
|
2095
|
+
/**
|
|
2096
|
+
* Requires that throw statements are documented with `@throws` tags.
|
|
2057
2097
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws.md#repos-sticky-header
|
|
2058
2098
|
*/
|
|
2059
2099
|
'jsdoc/require-throws'?: Linter.RuleEntry<JsdocRequireThrows>
|
|
2060
2100
|
/**
|
|
2061
|
-
* Requires
|
|
2101
|
+
* Requires a description for `@throws` tags
|
|
2102
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-description.md#repos-sticky-header
|
|
2103
|
+
*/
|
|
2104
|
+
'jsdoc/require-throws-description'?: Linter.RuleEntry<[]>
|
|
2105
|
+
/**
|
|
2106
|
+
* Requires a type for `@throws` tags
|
|
2107
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-type.md#repos-sticky-header
|
|
2108
|
+
*/
|
|
2109
|
+
'jsdoc/require-throws-type'?: Linter.RuleEntry<[]>
|
|
2110
|
+
/**
|
|
2111
|
+
* Requires yields are documented with `@yields` tags.
|
|
2062
2112
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields.md#repos-sticky-header
|
|
2063
2113
|
*/
|
|
2064
2114
|
'jsdoc/require-yields'?: Linter.RuleEntry<JsdocRequireYields>
|
|
2065
2115
|
/**
|
|
2066
|
-
*
|
|
2116
|
+
* 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).
|
|
2067
2117
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-check.md#repos-sticky-header
|
|
2068
2118
|
*/
|
|
2069
2119
|
'jsdoc/require-yields-check'?: Linter.RuleEntry<JsdocRequireYieldsCheck>
|
|
2070
2120
|
/**
|
|
2071
|
-
*
|
|
2121
|
+
* Requires a description for `@yields` tags
|
|
2122
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-description.md#repos-sticky-header
|
|
2123
|
+
*/
|
|
2124
|
+
'jsdoc/require-yields-description'?: Linter.RuleEntry<[]>
|
|
2125
|
+
/**
|
|
2126
|
+
* Requires a type for `@yields` tags
|
|
2127
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-type.md#repos-sticky-header
|
|
2128
|
+
*/
|
|
2129
|
+
'jsdoc/require-yields-type'?: Linter.RuleEntry<[]>
|
|
2130
|
+
/**
|
|
2131
|
+
* Sorts tags by a specified sequence according to tag name, optionally adding line breaks between tag groups.
|
|
2072
2132
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/sort-tags.md#repos-sticky-header
|
|
2073
2133
|
*/
|
|
2074
2134
|
'jsdoc/sort-tags'?: Linter.RuleEntry<JsdocSortTags>
|
|
2075
2135
|
/**
|
|
2076
|
-
* Enforces lines (or no lines) between tags.
|
|
2136
|
+
* Enforces lines (or no lines) before, after, or between tags.
|
|
2077
2137
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/tag-lines.md#repos-sticky-header
|
|
2078
2138
|
*/
|
|
2079
2139
|
'jsdoc/tag-lines'?: Linter.RuleEntry<JsdocTagLines>
|
|
@@ -2088,7 +2148,7 @@ interface RuleOptions {
|
|
|
2088
2148
|
*/
|
|
2089
2149
|
'jsdoc/type-formatting'?: Linter.RuleEntry<JsdocTypeFormatting>
|
|
2090
2150
|
/**
|
|
2091
|
-
* Requires all types to be valid JSDoc
|
|
2151
|
+
* Requires all types/namepaths to be valid JSDoc, Closure compiler, or TypeScript types (configurable in settings).
|
|
2092
2152
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/valid-types.md#repos-sticky-header
|
|
2093
2153
|
*/
|
|
2094
2154
|
'jsdoc/valid-types'?: Linter.RuleEntry<JsdocValidTypes>
|
|
@@ -2569,7 +2629,7 @@ interface RuleOptions {
|
|
|
2569
2629
|
* Disallow missing label references
|
|
2570
2630
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
|
|
2571
2631
|
*/
|
|
2572
|
-
'markdown/no-missing-label-refs'?: Linter.RuleEntry<
|
|
2632
|
+
'markdown/no-missing-label-refs'?: Linter.RuleEntry<MarkdownNoMissingLabelRefs>
|
|
2573
2633
|
/**
|
|
2574
2634
|
* Disallow link fragments that do not reference valid headings
|
|
2575
2635
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-link-fragments.md
|
|
@@ -2580,6 +2640,11 @@ interface RuleOptions {
|
|
|
2580
2640
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-multiple-h1.md
|
|
2581
2641
|
*/
|
|
2582
2642
|
'markdown/no-multiple-h1'?: Linter.RuleEntry<MarkdownNoMultipleH1>
|
|
2643
|
+
/**
|
|
2644
|
+
* Disallow URLs that match defined reference identifiers
|
|
2645
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reference-like-urls.md
|
|
2646
|
+
*/
|
|
2647
|
+
'markdown/no-reference-like-urls'?: Linter.RuleEntry<[]>
|
|
2583
2648
|
/**
|
|
2584
2649
|
* Disallow reversed link and image syntax
|
|
2585
2650
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reversed-media-syntax.md
|
|
@@ -2667,12 +2732,12 @@ interface RuleOptions {
|
|
|
2667
2732
|
*/
|
|
2668
2733
|
'n/no-hide-core-modules'?: Linter.RuleEntry<NNoHideCoreModules>
|
|
2669
2734
|
/**
|
|
2670
|
-
* disallow `import` declarations which import
|
|
2735
|
+
* disallow `import` declarations which import missing modules
|
|
2671
2736
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-import.md
|
|
2672
2737
|
*/
|
|
2673
2738
|
'n/no-missing-import'?: Linter.RuleEntry<NNoMissingImport>
|
|
2674
2739
|
/**
|
|
2675
|
-
* disallow `require()` expressions which import
|
|
2740
|
+
* disallow `require()` expressions which import missing modules
|
|
2676
2741
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-require.md
|
|
2677
2742
|
*/
|
|
2678
2743
|
'n/no-missing-require'?: Linter.RuleEntry<NNoMissingRequire>
|
|
@@ -3274,11 +3339,6 @@ interface RuleOptions {
|
|
|
3274
3339
|
* @see https://github.com/eslint-community/eslint-plugin-promise/blob/main/docs/rules/valid-params.md
|
|
3275
3340
|
*/
|
|
3276
3341
|
'promise/valid-params'?: Linter.RuleEntry<PromiseValidParams>
|
|
3277
|
-
/**
|
|
3278
|
-
* Disallow `children` in void DOM elements.
|
|
3279
|
-
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
3280
|
-
*/
|
|
3281
|
-
'react-dom/no-children-in-void-dom-elements'?: Linter.RuleEntry<[]>
|
|
3282
3342
|
/**
|
|
3283
3343
|
* Disallow `dangerouslySetInnerHTML`.
|
|
3284
3344
|
* @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml
|
|
@@ -3310,7 +3370,7 @@ interface RuleOptions {
|
|
|
3310
3370
|
*/
|
|
3311
3371
|
'react-dom/no-missing-button-type'?: Linter.RuleEntry<[]>
|
|
3312
3372
|
/**
|
|
3313
|
-
* Enforces explicit `sandbox`
|
|
3373
|
+
* Enforces explicit `sandbox` prop for `iframe` elements.
|
|
3314
3374
|
* @see https://eslint-react.xyz/docs/rules/dom-no-missing-iframe-sandbox
|
|
3315
3375
|
*/
|
|
3316
3376
|
'react-dom/no-missing-iframe-sandbox'?: Linter.RuleEntry<[]>
|
|
@@ -3334,6 +3394,11 @@ interface RuleOptions {
|
|
|
3334
3394
|
* @see https://eslint-react.xyz/docs/rules/dom-no-script-url
|
|
3335
3395
|
*/
|
|
3336
3396
|
'react-dom/no-script-url'?: Linter.RuleEntry<[]>
|
|
3397
|
+
/**
|
|
3398
|
+
* Disallows the use of string style prop.
|
|
3399
|
+
* @see https://eslint-react.xyz/docs/rules/dom-no-string-style-prop
|
|
3400
|
+
*/
|
|
3401
|
+
'react-dom/no-string-style-prop'?: Linter.RuleEntry<[]>
|
|
3337
3402
|
/**
|
|
3338
3403
|
* Disallow unknown `DOM` property.
|
|
3339
3404
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unknown-property
|
|
@@ -3360,70 +3425,130 @@ interface RuleOptions {
|
|
|
3360
3425
|
*/
|
|
3361
3426
|
'react-dom/no-void-elements-with-children'?: Linter.RuleEntry<[]>
|
|
3362
3427
|
/**
|
|
3363
|
-
* Enforces
|
|
3364
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3428
|
+
* Enforces React Dom is imported via a namespace import.
|
|
3429
|
+
* @see https://eslint-react.xyz/docs/rules/dom-prefer-namespace-import
|
|
3365
3430
|
*/
|
|
3366
|
-
'react-
|
|
3431
|
+
'react-dom/prefer-namespace-import'?: Linter.RuleEntry<[]>
|
|
3367
3432
|
/**
|
|
3368
|
-
* Disallow
|
|
3369
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-
|
|
3433
|
+
* Disallow direct calls to the `set` function of `useState` in `useEffect`.
|
|
3434
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
|
|
3370
3435
|
*/
|
|
3371
|
-
'react-hooks-extra/
|
|
3436
|
+
'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>
|
|
3372
3437
|
/**
|
|
3373
|
-
*
|
|
3374
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
3438
|
+
* Verifies that automatic effect dependencies are compiled if opted-in
|
|
3375
3439
|
*/
|
|
3376
|
-
'react-hooks
|
|
3440
|
+
'react-hooks/automatic-effect-dependencies'?: Linter.RuleEntry<ReactHooksAutomaticEffectDependencies>
|
|
3377
3441
|
/**
|
|
3378
|
-
*
|
|
3379
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
|
|
3442
|
+
* Validates against calling capitalized functions/methods instead of using JSX
|
|
3380
3443
|
*/
|
|
3381
|
-
'react-hooks
|
|
3444
|
+
'react-hooks/capitalized-calls'?: Linter.RuleEntry<ReactHooksCapitalizedCalls>
|
|
3382
3445
|
/**
|
|
3383
|
-
*
|
|
3384
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-layout-effect
|
|
3446
|
+
* Validates against higher order functions defining nested components or hooks. Components and hooks should be defined at the module level
|
|
3385
3447
|
*/
|
|
3386
|
-
'react-hooks
|
|
3448
|
+
'react-hooks/component-hook-factories'?: Linter.RuleEntry<ReactHooksComponentHookFactories>
|
|
3387
3449
|
/**
|
|
3388
|
-
*
|
|
3389
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
|
|
3450
|
+
* Validates the compiler configuration options
|
|
3390
3451
|
*/
|
|
3391
|
-
'react-hooks
|
|
3452
|
+
'react-hooks/config'?: Linter.RuleEntry<ReactHooksConfig>
|
|
3392
3453
|
/**
|
|
3393
|
-
*
|
|
3394
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
|
|
3454
|
+
* Validates usage of error boundaries instead of try/catch for errors in child components
|
|
3395
3455
|
*/
|
|
3396
|
-
'react-hooks
|
|
3456
|
+
'react-hooks/error-boundaries'?: Linter.RuleEntry<ReactHooksErrorBoundaries>
|
|
3397
3457
|
/**
|
|
3398
|
-
*
|
|
3399
|
-
* @see https://
|
|
3458
|
+
* verifies the list of dependencies for Hooks like useEffect and similar
|
|
3459
|
+
* @see https://github.com/facebook/react/issues/14920
|
|
3400
3460
|
*/
|
|
3401
|
-
'react-hooks
|
|
3461
|
+
'react-hooks/exhaustive-deps'?: Linter.RuleEntry<ReactHooksExhaustiveDeps>
|
|
3402
3462
|
/**
|
|
3403
|
-
*
|
|
3404
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
|
|
3463
|
+
* Validates usage of fbt
|
|
3405
3464
|
*/
|
|
3406
|
-
'react-hooks
|
|
3465
|
+
'react-hooks/fbt'?: Linter.RuleEntry<ReactHooksFbt>
|
|
3407
3466
|
/**
|
|
3408
|
-
*
|
|
3409
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
|
|
3467
|
+
* Validates usage of `fire`
|
|
3410
3468
|
*/
|
|
3411
|
-
'react-hooks
|
|
3469
|
+
'react-hooks/fire'?: Linter.RuleEntry<ReactHooksFire>
|
|
3412
3470
|
/**
|
|
3413
|
-
*
|
|
3414
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-prefer-use-state-lazy-initialization
|
|
3471
|
+
* Validates configuration of [gating mode](https://react.dev/reference/react-compiler/gating)
|
|
3415
3472
|
*/
|
|
3416
|
-
'react-hooks
|
|
3473
|
+
'react-hooks/gating'?: Linter.RuleEntry<ReactHooksGating>
|
|
3417
3474
|
/**
|
|
3418
|
-
*
|
|
3419
|
-
* @see https://github.com/facebook/react/issues/14920
|
|
3475
|
+
* Validates against assignment/mutation of globals during render, part of ensuring that [side effects must render outside of render](https://react.dev/reference/rules/components-and-hooks-must-be-pure#side-effects-must-run-outside-of-render)
|
|
3420
3476
|
*/
|
|
3421
|
-
'react-hooks/
|
|
3477
|
+
'react-hooks/globals'?: Linter.RuleEntry<ReactHooksGlobals>
|
|
3478
|
+
/**
|
|
3479
|
+
* Validates the rules of hooks
|
|
3480
|
+
*/
|
|
3481
|
+
'react-hooks/hooks'?: Linter.RuleEntry<ReactHooksHooks>
|
|
3482
|
+
/**
|
|
3483
|
+
* Validates against mutating props, state, and other values that [are immutable](https://react.dev/reference/rules/components-and-hooks-must-be-pure#props-and-state-are-immutable)
|
|
3484
|
+
*/
|
|
3485
|
+
'react-hooks/immutability'?: Linter.RuleEntry<ReactHooksImmutability>
|
|
3486
|
+
/**
|
|
3487
|
+
* Validates against usage of libraries which are incompatible with memoization (manual or automatic)
|
|
3488
|
+
*/
|
|
3489
|
+
'react-hooks/incompatible-library'?: Linter.RuleEntry<ReactHooksIncompatibleLibrary>
|
|
3490
|
+
/**
|
|
3491
|
+
* Internal invariants
|
|
3492
|
+
*/
|
|
3493
|
+
'react-hooks/invariant'?: Linter.RuleEntry<ReactHooksInvariant>
|
|
3494
|
+
/**
|
|
3495
|
+
* Validates that effect dependencies are memoized
|
|
3496
|
+
*/
|
|
3497
|
+
'react-hooks/memoized-effect-dependencies'?: Linter.RuleEntry<ReactHooksMemoizedEffectDependencies>
|
|
3498
|
+
/**
|
|
3499
|
+
* Validates against deriving values from state in an effect
|
|
3500
|
+
*/
|
|
3501
|
+
'react-hooks/no-deriving-state-in-effects'?: Linter.RuleEntry<ReactHooksNoDerivingStateInEffects>
|
|
3502
|
+
'react-hooks/no-unused-directives'?: Linter.RuleEntry<ReactHooksNoUnusedDirectives>
|
|
3503
|
+
/**
|
|
3504
|
+
* Validates that existing manual memoized is preserved by the compiler. React Compiler will only compile components and hooks if its inference [matches or exceeds the existing manual memoization](https://react.dev/learn/react-compiler/introduction#what-should-i-do-about-usememo-usecallback-and-reactmemo)
|
|
3505
|
+
*/
|
|
3506
|
+
'react-hooks/preserve-manual-memoization'?: Linter.RuleEntry<ReactHooksPreserveManualMemoization>
|
|
3507
|
+
/**
|
|
3508
|
+
* Validates that [components/hooks are pure](https://react.dev/reference/rules/components-and-hooks-must-be-pure) by checking that they do not call known-impure functions
|
|
3509
|
+
*/
|
|
3510
|
+
'react-hooks/purity'?: Linter.RuleEntry<ReactHooksPurity>
|
|
3511
|
+
/**
|
|
3512
|
+
* Validates correct usage of refs, not reading/writing during render. See the "pitfalls" section in [`useRef()` usage](https://react.dev/reference/react/useRef#usage)
|
|
3513
|
+
*/
|
|
3514
|
+
'react-hooks/refs'?: Linter.RuleEntry<ReactHooksRefs>
|
|
3515
|
+
/**
|
|
3516
|
+
* Validates against suppression of other rules
|
|
3517
|
+
*/
|
|
3518
|
+
'react-hooks/rule-suppression'?: Linter.RuleEntry<ReactHooksRuleSuppression>
|
|
3422
3519
|
/**
|
|
3423
3520
|
* enforces the Rules of Hooks
|
|
3424
|
-
* @see https://
|
|
3521
|
+
* @see https://react.dev/reference/rules/rules-of-hooks
|
|
3522
|
+
*/
|
|
3523
|
+
'react-hooks/rules-of-hooks'?: Linter.RuleEntry<ReactHooksRulesOfHooks>
|
|
3524
|
+
/**
|
|
3525
|
+
* Validates against calling setState synchronously in an effect, which can lead to re-renders that degrade performance
|
|
3526
|
+
*/
|
|
3527
|
+
'react-hooks/set-state-in-effect'?: Linter.RuleEntry<ReactHooksSetStateInEffect>
|
|
3528
|
+
/**
|
|
3529
|
+
* Validates against setting state during render, which can trigger additional renders and potential infinite render loops
|
|
3530
|
+
*/
|
|
3531
|
+
'react-hooks/set-state-in-render'?: Linter.RuleEntry<ReactHooksSetStateInRender>
|
|
3532
|
+
/**
|
|
3533
|
+
* Validates that components are static, not recreated every render. Components that are recreated dynamically can reset state and trigger excessive re-rendering
|
|
3534
|
+
*/
|
|
3535
|
+
'react-hooks/static-components'?: Linter.RuleEntry<ReactHooksStaticComponents>
|
|
3536
|
+
/**
|
|
3537
|
+
* Validates against invalid syntax
|
|
3538
|
+
*/
|
|
3539
|
+
'react-hooks/syntax'?: Linter.RuleEntry<ReactHooksSyntax>
|
|
3540
|
+
/**
|
|
3541
|
+
* Unimplemented features
|
|
3542
|
+
*/
|
|
3543
|
+
'react-hooks/todo'?: Linter.RuleEntry<ReactHooksTodo>
|
|
3544
|
+
/**
|
|
3545
|
+
* Validates against syntax that we do not plan to support in React Compiler
|
|
3546
|
+
*/
|
|
3547
|
+
'react-hooks/unsupported-syntax'?: Linter.RuleEntry<ReactHooksUnsupportedSyntax>
|
|
3548
|
+
/**
|
|
3549
|
+
* Validates usage of the useMemo() hook against common mistakes. See [`useMemo()` docs](https://react.dev/reference/react/useMemo) for more information.
|
|
3425
3550
|
*/
|
|
3426
|
-
'react-hooks/
|
|
3551
|
+
'react-hooks/use-memo'?: Linter.RuleEntry<ReactHooksUseMemo>
|
|
3427
3552
|
/**
|
|
3428
3553
|
* Enforces naming conventions for components.
|
|
3429
3554
|
* @see https://eslint-react.xyz/docs/rules/naming-convention-component-name
|
|
@@ -3487,25 +3612,15 @@ interface RuleOptions {
|
|
|
3487
3612
|
*/
|
|
3488
3613
|
'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>
|
|
3489
3614
|
/**
|
|
3490
|
-
* Enforces
|
|
3491
|
-
* @see https://eslint-react.xyz/docs/rules/avoid-shorthand-boolean
|
|
3492
|
-
*/
|
|
3493
|
-
'react-x/avoid-shorthand-boolean'?: Linter.RuleEntry<[]>
|
|
3494
|
-
/**
|
|
3495
|
-
* Enforces explicit `<Fragment>` components instead of the shorthand `<>` or `</>` syntax.
|
|
3496
|
-
* @see https://eslint-react.xyz/docs/rules/avoid-shorthand-fragment
|
|
3497
|
-
*/
|
|
3498
|
-
'react-x/avoid-shorthand-fragment'?: Linter.RuleEntry<[]>
|
|
3499
|
-
/**
|
|
3500
|
-
* Disallow useless `forwardRef` calls on components that don't use `ref`s.
|
|
3501
|
-
* @see https://eslint-react.xyz/docs/rules/no-useless-forward-ref
|
|
3502
|
-
*/
|
|
3503
|
-
'react-x/ensure-forward-ref-using-ref'?: Linter.RuleEntry<[]>
|
|
3504
|
-
/**
|
|
3505
|
-
* Enforces that the 'key' attribute is placed before the spread attribute in JSX elements.
|
|
3615
|
+
* Enforces that the 'key' prop is placed before the spread prop in JSX elements.
|
|
3506
3616
|
* @see https://eslint-react.xyz/docs/rules/jsx-key-before-spread
|
|
3507
3617
|
*/
|
|
3508
3618
|
'react-x/jsx-key-before-spread'?: Linter.RuleEntry<[]>
|
|
3619
|
+
/**
|
|
3620
|
+
* Prevents comments from being inserted as text nodes.
|
|
3621
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-no-comment-textnodes
|
|
3622
|
+
*/
|
|
3623
|
+
'react-x/jsx-no-comment-textnodes'?: Linter.RuleEntry<[]>
|
|
3509
3624
|
/**
|
|
3510
3625
|
* Disallow duplicate props in JSX elements.
|
|
3511
3626
|
* @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
|
|
@@ -3521,6 +3636,16 @@ interface RuleOptions {
|
|
|
3521
3636
|
* @see https://eslint-react.xyz/docs/rules/jsx-no-undef
|
|
3522
3637
|
*/
|
|
3523
3638
|
'react-x/jsx-no-undef'?: Linter.RuleEntry<[]>
|
|
3639
|
+
/**
|
|
3640
|
+
* Enforces shorthand syntax for boolean attributes.
|
|
3641
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-shorthand-boolean
|
|
3642
|
+
*/
|
|
3643
|
+
'react-x/jsx-shorthand-boolean'?: Linter.RuleEntry<ReactXJsxShorthandBoolean>
|
|
3644
|
+
/**
|
|
3645
|
+
* Enforces shorthand syntax for fragments.
|
|
3646
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-shorthand-fragment
|
|
3647
|
+
*/
|
|
3648
|
+
'react-x/jsx-shorthand-fragment'?: Linter.RuleEntry<ReactXJsxShorthandFragment>
|
|
3524
3649
|
/**
|
|
3525
3650
|
* Marks React variables as used when JSX is used.
|
|
3526
3651
|
* @see https://eslint-react.xyz/docs/rules/jsx-uses-react
|
|
@@ -3581,21 +3706,6 @@ interface RuleOptions {
|
|
|
3581
3706
|
* @see https://eslint-react.xyz/docs/rules/no-clone-element
|
|
3582
3707
|
*/
|
|
3583
3708
|
'react-x/no-clone-element'?: Linter.RuleEntry<[]>
|
|
3584
|
-
/**
|
|
3585
|
-
* Prevents comments from being inserted as text nodes.
|
|
3586
|
-
* @see https://eslint-react.xyz/docs/rules/no-comment-textnodes
|
|
3587
|
-
*/
|
|
3588
|
-
'react-x/no-comment-textnodes'?: Linter.RuleEntry<[]>
|
|
3589
|
-
/**
|
|
3590
|
-
* Disallow complex conditional rendering in JSX expressions.
|
|
3591
|
-
* @see https://eslint-react.xyz/docs/rules/no-complex-conditional-rendering
|
|
3592
|
-
*/
|
|
3593
|
-
'react-x/no-complex-conditional-rendering'?: Linter.RuleEntry<[]>
|
|
3594
|
-
/**
|
|
3595
|
-
* Disallow complex conditional rendering in JSX expressions.
|
|
3596
|
-
* @see https://eslint-react.xyz/docs/rules/no-complex-conditional-rendering
|
|
3597
|
-
*/
|
|
3598
|
-
'react-x/no-complicated-conditional-rendering'?: Linter.RuleEntry<[]>
|
|
3599
3709
|
/**
|
|
3600
3710
|
* Replace usages of `componentWillMount` with `UNSAFE_componentWillMount`.
|
|
3601
3711
|
* @see https://eslint-react.xyz/docs/rules/no-component-will-mount
|
|
@@ -3631,16 +3741,16 @@ interface RuleOptions {
|
|
|
3631
3741
|
* @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
|
|
3632
3742
|
*/
|
|
3633
3743
|
'react-x/no-direct-mutation-state'?: Linter.RuleEntry<[]>
|
|
3634
|
-
/**
|
|
3635
|
-
* Disallow duplicate props in JSX elements.
|
|
3636
|
-
* @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
|
|
3637
|
-
*/
|
|
3638
|
-
'react-x/no-duplicate-jsx-props'?: Linter.RuleEntry<[]>
|
|
3639
3744
|
/**
|
|
3640
3745
|
* Disallow duplicate `key` on elements in the same array or a list of `children`.
|
|
3641
3746
|
* @see https://eslint-react.xyz/docs/rules/no-duplicate-key
|
|
3642
3747
|
*/
|
|
3643
3748
|
'react-x/no-duplicate-key'?: Linter.RuleEntry<[]>
|
|
3749
|
+
/**
|
|
3750
|
+
* Disallow certain props on components.
|
|
3751
|
+
* @see https://eslint-react.xyz/docs/rules/no-forbidden-props
|
|
3752
|
+
*/
|
|
3753
|
+
'react-x/no-forbidden-props'?: Linter.RuleEntry<ReactXNoForbiddenProps>
|
|
3644
3754
|
/**
|
|
3645
3755
|
* Replaces usages of `forwardRef` with passing `ref` as a prop.
|
|
3646
3756
|
* @see https://eslint-react.xyz/docs/rules/no-forward-ref
|
|
@@ -3681,11 +3791,6 @@ interface RuleOptions {
|
|
|
3681
3791
|
* @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
|
|
3682
3792
|
*/
|
|
3683
3793
|
'react-x/no-nested-component-definitions'?: Linter.RuleEntry<[]>
|
|
3684
|
-
/**
|
|
3685
|
-
* Disallow nesting component definitions inside other components.
|
|
3686
|
-
* @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
|
|
3687
|
-
*/
|
|
3688
|
-
'react-x/no-nested-components'?: Linter.RuleEntry<[]>
|
|
3689
3794
|
/**
|
|
3690
3795
|
* Disallow nesting lazy component declarations inside other components.
|
|
3691
3796
|
* @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
|
|
@@ -3712,7 +3817,7 @@ interface RuleOptions {
|
|
|
3712
3817
|
*/
|
|
3713
3818
|
'react-x/no-set-state-in-component-did-update'?: Linter.RuleEntry<[]>
|
|
3714
3819
|
/**
|
|
3715
|
-
*
|
|
3820
|
+
* Disallow calling `this.setState` in `componentWillUpdate` outside of functions, such as callbacks.
|
|
3716
3821
|
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
|
|
3717
3822
|
*/
|
|
3718
3823
|
'react-x/no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>
|
|
@@ -3721,6 +3826,26 @@ interface RuleOptions {
|
|
|
3721
3826
|
* @see https://eslint-react.xyz/docs/rules/no-string-refs
|
|
3722
3827
|
*/
|
|
3723
3828
|
'react-x/no-string-refs'?: Linter.RuleEntry<[]>
|
|
3829
|
+
/**
|
|
3830
|
+
* Prevents the use of unnecessary `key` props on JSX elements when rendering lists.
|
|
3831
|
+
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-key
|
|
3832
|
+
*/
|
|
3833
|
+
'react-x/no-unnecessary-key'?: Linter.RuleEntry<[]>
|
|
3834
|
+
/**
|
|
3835
|
+
* Disallow unnecessary usage of `useCallback`.
|
|
3836
|
+
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-callback
|
|
3837
|
+
*/
|
|
3838
|
+
'react-x/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>
|
|
3839
|
+
/**
|
|
3840
|
+
* Disallow unnecessary usage of `useMemo`.
|
|
3841
|
+
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-memo
|
|
3842
|
+
*/
|
|
3843
|
+
'react-x/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>
|
|
3844
|
+
/**
|
|
3845
|
+
* Enforces that a function with the `use` prefix should use at least one Hook inside of it.
|
|
3846
|
+
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
|
|
3847
|
+
*/
|
|
3848
|
+
'react-x/no-unnecessary-use-prefix'?: Linter.RuleEntry<[]>
|
|
3724
3849
|
/**
|
|
3725
3850
|
* Warns the usage of `UNSAFE_componentWillMount` in class components.
|
|
3726
3851
|
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-mount
|
|
@@ -3751,6 +3876,11 @@ interface RuleOptions {
|
|
|
3751
3876
|
* @see https://eslint-react.xyz/docs/rules/no-unused-class-component-members
|
|
3752
3877
|
*/
|
|
3753
3878
|
'react-x/no-unused-class-component-members'?: Linter.RuleEntry<[]>
|
|
3879
|
+
/**
|
|
3880
|
+
* Warns component props that are defined but never used.
|
|
3881
|
+
* @see https://eslint-react.xyz/docs/rules/no-unused-props
|
|
3882
|
+
*/
|
|
3883
|
+
'react-x/no-unused-props'?: Linter.RuleEntry<[]>
|
|
3754
3884
|
/**
|
|
3755
3885
|
* Warns unused class component state.
|
|
3756
3886
|
* @see https://eslint-react.xyz/docs/rules/no-unused-state
|
|
@@ -3778,29 +3908,19 @@ interface RuleOptions {
|
|
|
3778
3908
|
'react-x/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>
|
|
3779
3909
|
/**
|
|
3780
3910
|
* Enforces React is imported via a namespace import.
|
|
3781
|
-
* @see https://eslint-react.xyz/docs/rules/prefer-
|
|
3911
|
+
* @see https://eslint-react.xyz/docs/rules/prefer-namespace-import
|
|
3782
3912
|
*/
|
|
3783
|
-
'react-x/prefer-
|
|
3913
|
+
'react-x/prefer-namespace-import'?: Linter.RuleEntry<[]>
|
|
3784
3914
|
/**
|
|
3785
3915
|
* Enforces read-only props in components.
|
|
3786
3916
|
* @see https://eslint-react.xyz/docs/rules/prefer-read-only-props
|
|
3787
3917
|
*/
|
|
3788
3918
|
'react-x/prefer-read-only-props'?: Linter.RuleEntry<[]>
|
|
3789
3919
|
/**
|
|
3790
|
-
* Enforces
|
|
3791
|
-
* @see https://eslint-react.xyz/docs/rules/prefer-
|
|
3792
|
-
*/
|
|
3793
|
-
'react-x/prefer-shorthand-boolean'?: Linter.RuleEntry<[]>
|
|
3794
|
-
/**
|
|
3795
|
-
* Enforces shorthand syntax for fragments.
|
|
3796
|
-
* @see https://eslint-react.xyz/docs/rules/prefer-shorthand-fragment
|
|
3797
|
-
*/
|
|
3798
|
-
'react-x/prefer-shorthand-fragment'?: Linter.RuleEntry<[]>
|
|
3799
|
-
/**
|
|
3800
|
-
* Marks variables used in JSX elements as used.
|
|
3801
|
-
* @see https://eslint-react.xyz/docs/rules/jsx-uses-vars
|
|
3920
|
+
* Enforces function calls made inside `useState` to be wrapped in an `initializer function`.
|
|
3921
|
+
* @see https://eslint-react.xyz/docs/rules/prefer-use-state-lazy-initialization
|
|
3802
3922
|
*/
|
|
3803
|
-
'react-x/use-
|
|
3923
|
+
'react-x/prefer-use-state-lazy-initialization'?: Linter.RuleEntry<[]>
|
|
3804
3924
|
/**
|
|
3805
3925
|
* Disallow adjusting state in an effect when a prop changes.
|
|
3806
3926
|
* @see https://react.dev/learn/you-might-not-need-an-effect#adjusting-some-state-when-a-prop-changes
|
|
@@ -8046,6 +8166,10 @@ type StylisticGeneratorStarSpacing = []|[(("before" | "after" | "both" | "neithe
|
|
|
8046
8166
|
before?: boolean
|
|
8047
8167
|
after?: boolean
|
|
8048
8168
|
})
|
|
8169
|
+
shorthand?: (("before" | "after" | "both" | "neither") | {
|
|
8170
|
+
before?: boolean
|
|
8171
|
+
after?: boolean
|
|
8172
|
+
})
|
|
8049
8173
|
})]
|
|
8050
8174
|
// ----- @stylistic/implicit-arrow-linebreak -----
|
|
8051
8175
|
type StylisticImplicitArrowLinebreak = []|[("beside" | "below")]
|
|
@@ -8291,22 +8415,6 @@ type StylisticKeywordSpacing = []|[{
|
|
|
8291
8415
|
before?: boolean
|
|
8292
8416
|
after?: boolean
|
|
8293
8417
|
}
|
|
8294
|
-
arguments?: {
|
|
8295
|
-
before?: boolean
|
|
8296
|
-
after?: boolean
|
|
8297
|
-
}
|
|
8298
|
-
as?: {
|
|
8299
|
-
before?: boolean
|
|
8300
|
-
after?: boolean
|
|
8301
|
-
}
|
|
8302
|
-
async?: {
|
|
8303
|
-
before?: boolean
|
|
8304
|
-
after?: boolean
|
|
8305
|
-
}
|
|
8306
|
-
await?: {
|
|
8307
|
-
before?: boolean
|
|
8308
|
-
after?: boolean
|
|
8309
|
-
}
|
|
8310
8418
|
boolean?: {
|
|
8311
8419
|
before?: boolean
|
|
8312
8420
|
after?: boolean
|
|
@@ -8371,10 +8479,6 @@ type StylisticKeywordSpacing = []|[{
|
|
|
8371
8479
|
before?: boolean
|
|
8372
8480
|
after?: boolean
|
|
8373
8481
|
}
|
|
8374
|
-
eval?: {
|
|
8375
|
-
before?: boolean
|
|
8376
|
-
after?: boolean
|
|
8377
|
-
}
|
|
8378
8482
|
export?: {
|
|
8379
8483
|
before?: boolean
|
|
8380
8484
|
after?: boolean
|
|
@@ -8403,18 +8507,10 @@ type StylisticKeywordSpacing = []|[{
|
|
|
8403
8507
|
before?: boolean
|
|
8404
8508
|
after?: boolean
|
|
8405
8509
|
}
|
|
8406
|
-
from?: {
|
|
8407
|
-
before?: boolean
|
|
8408
|
-
after?: boolean
|
|
8409
|
-
}
|
|
8410
8510
|
function?: {
|
|
8411
8511
|
before?: boolean
|
|
8412
8512
|
after?: boolean
|
|
8413
8513
|
}
|
|
8414
|
-
get?: {
|
|
8415
|
-
before?: boolean
|
|
8416
|
-
after?: boolean
|
|
8417
|
-
}
|
|
8418
8514
|
goto?: {
|
|
8419
8515
|
before?: boolean
|
|
8420
8516
|
after?: boolean
|
|
@@ -8447,10 +8543,6 @@ type StylisticKeywordSpacing = []|[{
|
|
|
8447
8543
|
before?: boolean
|
|
8448
8544
|
after?: boolean
|
|
8449
8545
|
}
|
|
8450
|
-
let?: {
|
|
8451
|
-
before?: boolean
|
|
8452
|
-
after?: boolean
|
|
8453
|
-
}
|
|
8454
8546
|
long?: {
|
|
8455
8547
|
before?: boolean
|
|
8456
8548
|
after?: boolean
|
|
@@ -8467,10 +8559,6 @@ type StylisticKeywordSpacing = []|[{
|
|
|
8467
8559
|
before?: boolean
|
|
8468
8560
|
after?: boolean
|
|
8469
8561
|
}
|
|
8470
|
-
of?: {
|
|
8471
|
-
before?: boolean
|
|
8472
|
-
after?: boolean
|
|
8473
|
-
}
|
|
8474
8562
|
package?: {
|
|
8475
8563
|
before?: boolean
|
|
8476
8564
|
after?: boolean
|
|
@@ -8491,10 +8579,6 @@ type StylisticKeywordSpacing = []|[{
|
|
|
8491
8579
|
before?: boolean
|
|
8492
8580
|
after?: boolean
|
|
8493
8581
|
}
|
|
8494
|
-
set?: {
|
|
8495
|
-
before?: boolean
|
|
8496
|
-
after?: boolean
|
|
8497
|
-
}
|
|
8498
8582
|
short?: {
|
|
8499
8583
|
before?: boolean
|
|
8500
8584
|
after?: boolean
|
|
@@ -8539,18 +8623,10 @@ type StylisticKeywordSpacing = []|[{
|
|
|
8539
8623
|
before?: boolean
|
|
8540
8624
|
after?: boolean
|
|
8541
8625
|
}
|
|
8542
|
-
type?: {
|
|
8543
|
-
before?: boolean
|
|
8544
|
-
after?: boolean
|
|
8545
|
-
}
|
|
8546
8626
|
typeof?: {
|
|
8547
8627
|
before?: boolean
|
|
8548
8628
|
after?: boolean
|
|
8549
8629
|
}
|
|
8550
|
-
using?: {
|
|
8551
|
-
before?: boolean
|
|
8552
|
-
after?: boolean
|
|
8553
|
-
}
|
|
8554
8630
|
var?: {
|
|
8555
8631
|
before?: boolean
|
|
8556
8632
|
after?: boolean
|
|
@@ -8571,6 +8647,54 @@ type StylisticKeywordSpacing = []|[{
|
|
|
8571
8647
|
before?: boolean
|
|
8572
8648
|
after?: boolean
|
|
8573
8649
|
}
|
|
8650
|
+
arguments?: {
|
|
8651
|
+
before?: boolean
|
|
8652
|
+
after?: boolean
|
|
8653
|
+
}
|
|
8654
|
+
as?: {
|
|
8655
|
+
before?: boolean
|
|
8656
|
+
after?: boolean
|
|
8657
|
+
}
|
|
8658
|
+
async?: {
|
|
8659
|
+
before?: boolean
|
|
8660
|
+
after?: boolean
|
|
8661
|
+
}
|
|
8662
|
+
await?: {
|
|
8663
|
+
before?: boolean
|
|
8664
|
+
after?: boolean
|
|
8665
|
+
}
|
|
8666
|
+
eval?: {
|
|
8667
|
+
before?: boolean
|
|
8668
|
+
after?: boolean
|
|
8669
|
+
}
|
|
8670
|
+
from?: {
|
|
8671
|
+
before?: boolean
|
|
8672
|
+
after?: boolean
|
|
8673
|
+
}
|
|
8674
|
+
get?: {
|
|
8675
|
+
before?: boolean
|
|
8676
|
+
after?: boolean
|
|
8677
|
+
}
|
|
8678
|
+
let?: {
|
|
8679
|
+
before?: boolean
|
|
8680
|
+
after?: boolean
|
|
8681
|
+
}
|
|
8682
|
+
of?: {
|
|
8683
|
+
before?: boolean
|
|
8684
|
+
after?: boolean
|
|
8685
|
+
}
|
|
8686
|
+
set?: {
|
|
8687
|
+
before?: boolean
|
|
8688
|
+
after?: boolean
|
|
8689
|
+
}
|
|
8690
|
+
type?: {
|
|
8691
|
+
before?: boolean
|
|
8692
|
+
after?: boolean
|
|
8693
|
+
}
|
|
8694
|
+
using?: {
|
|
8695
|
+
before?: boolean
|
|
8696
|
+
after?: boolean
|
|
8697
|
+
}
|
|
8574
8698
|
yield?: {
|
|
8575
8699
|
before?: boolean
|
|
8576
8700
|
after?: boolean
|
|
@@ -8872,6 +8996,18 @@ type StylisticObjectCurlyNewline = []|[((("always" | "never") | {
|
|
|
8872
8996
|
type StylisticObjectCurlySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
8873
8997
|
arraysInObjects?: boolean
|
|
8874
8998
|
objectsInObjects?: boolean
|
|
8999
|
+
overrides?: {
|
|
9000
|
+
ObjectPattern?: ("always" | "never")
|
|
9001
|
+
ObjectExpression?: ("always" | "never")
|
|
9002
|
+
ImportDeclaration?: ("always" | "never")
|
|
9003
|
+
ImportAttributes?: ("always" | "never")
|
|
9004
|
+
ExportNamedDeclaration?: ("always" | "never")
|
|
9005
|
+
ExportAllDeclaration?: ("always" | "never")
|
|
9006
|
+
TSMappedType?: ("always" | "never")
|
|
9007
|
+
TSTypeLiteral?: ("always" | "never")
|
|
9008
|
+
TSInterfaceBody?: ("always" | "never")
|
|
9009
|
+
TSEnumBody?: ("always" | "never")
|
|
9010
|
+
}
|
|
8875
9011
|
}]
|
|
8876
9012
|
// ----- @stylistic/object-property-newline -----
|
|
8877
9013
|
type StylisticObjectPropertyNewline = []|[{
|
|
@@ -10724,6 +10860,7 @@ type ImportPreferNamespaceImport = []|[{
|
|
|
10724
10860
|
}]
|
|
10725
10861
|
// ----- jsdoc/check-alignment -----
|
|
10726
10862
|
type JsdocCheckAlignment = []|[{
|
|
10863
|
+
|
|
10727
10864
|
innerIndent?: number
|
|
10728
10865
|
}]
|
|
10729
10866
|
// ----- jsdoc/check-examples -----
|
|
@@ -10750,85 +10887,138 @@ type JsdocCheckExamples = []|[{
|
|
|
10750
10887
|
}]
|
|
10751
10888
|
// ----- jsdoc/check-indentation -----
|
|
10752
10889
|
type JsdocCheckIndentation = []|[{
|
|
10890
|
+
|
|
10753
10891
|
excludeTags?: string[]
|
|
10754
10892
|
}]
|
|
10755
10893
|
// ----- jsdoc/check-line-alignment -----
|
|
10756
10894
|
type JsdocCheckLineAlignment = []|[("always" | "never" | "any")]|[("always" | "never" | "any"), {
|
|
10895
|
+
|
|
10757
10896
|
customSpacings?: {
|
|
10897
|
+
|
|
10758
10898
|
postDelimiter?: number
|
|
10899
|
+
|
|
10759
10900
|
postHyphen?: number
|
|
10901
|
+
|
|
10760
10902
|
postName?: number
|
|
10903
|
+
|
|
10761
10904
|
postTag?: number
|
|
10905
|
+
|
|
10762
10906
|
postType?: number
|
|
10763
10907
|
}
|
|
10908
|
+
|
|
10764
10909
|
disableWrapIndent?: boolean
|
|
10910
|
+
|
|
10765
10911
|
preserveMainDescriptionPostDelimiter?: boolean
|
|
10912
|
+
|
|
10766
10913
|
tags?: string[]
|
|
10914
|
+
|
|
10767
10915
|
wrapIndent?: string
|
|
10768
10916
|
}]
|
|
10769
10917
|
// ----- jsdoc/check-param-names -----
|
|
10770
10918
|
type JsdocCheckParamNames = []|[{
|
|
10919
|
+
|
|
10771
10920
|
allowExtraTrailingParamDocs?: boolean
|
|
10921
|
+
|
|
10772
10922
|
checkDestructured?: boolean
|
|
10923
|
+
|
|
10773
10924
|
checkRestProperty?: boolean
|
|
10925
|
+
|
|
10774
10926
|
checkTypesPattern?: string
|
|
10927
|
+
|
|
10775
10928
|
disableExtraPropertyReporting?: boolean
|
|
10929
|
+
|
|
10776
10930
|
disableMissingParamChecks?: boolean
|
|
10931
|
+
|
|
10777
10932
|
enableFixer?: boolean
|
|
10933
|
+
|
|
10778
10934
|
useDefaultObjectProperties?: boolean
|
|
10779
10935
|
}]
|
|
10780
10936
|
// ----- jsdoc/check-property-names -----
|
|
10781
10937
|
type JsdocCheckPropertyNames = []|[{
|
|
10938
|
+
|
|
10782
10939
|
enableFixer?: boolean
|
|
10783
10940
|
}]
|
|
10784
10941
|
// ----- jsdoc/check-tag-names -----
|
|
10785
10942
|
type JsdocCheckTagNames = []|[{
|
|
10943
|
+
|
|
10786
10944
|
definedTags?: string[]
|
|
10945
|
+
|
|
10787
10946
|
enableFixer?: boolean
|
|
10947
|
+
|
|
10948
|
+
inlineTags?: string[]
|
|
10949
|
+
|
|
10788
10950
|
jsxTags?: boolean
|
|
10951
|
+
|
|
10789
10952
|
typed?: boolean
|
|
10790
10953
|
}]
|
|
10791
10954
|
// ----- jsdoc/check-types -----
|
|
10792
10955
|
type JsdocCheckTypes = []|[{
|
|
10956
|
+
|
|
10793
10957
|
exemptTagContexts?: {
|
|
10958
|
+
|
|
10794
10959
|
tag?: string
|
|
10960
|
+
|
|
10795
10961
|
types?: (boolean | string[])
|
|
10796
10962
|
}[]
|
|
10963
|
+
|
|
10797
10964
|
noDefaults?: boolean
|
|
10965
|
+
|
|
10798
10966
|
unifyParentAndChildTypeChecks?: boolean
|
|
10799
10967
|
}]
|
|
10800
10968
|
// ----- jsdoc/check-values -----
|
|
10801
10969
|
type JsdocCheckValues = []|[{
|
|
10970
|
+
|
|
10802
10971
|
allowedAuthors?: string[]
|
|
10972
|
+
|
|
10803
10973
|
allowedLicenses?: (string[] | boolean)
|
|
10974
|
+
|
|
10804
10975
|
licensePattern?: string
|
|
10976
|
+
|
|
10805
10977
|
numericOnlyVariation?: boolean
|
|
10806
10978
|
}]
|
|
10807
10979
|
// ----- jsdoc/convert-to-jsdoc-comments -----
|
|
10808
10980
|
type JsdocConvertToJsdocComments = []|[{
|
|
10981
|
+
|
|
10809
10982
|
allowedPrefixes?: string[]
|
|
10983
|
+
|
|
10810
10984
|
contexts?: (string | {
|
|
10811
10985
|
context?: string
|
|
10812
10986
|
inlineCommentBlock?: boolean
|
|
10813
10987
|
})[]
|
|
10988
|
+
|
|
10814
10989
|
contextsAfter?: (string | {
|
|
10815
10990
|
context?: string
|
|
10816
10991
|
inlineCommentBlock?: boolean
|
|
10817
10992
|
})[]
|
|
10993
|
+
|
|
10818
10994
|
contextsBeforeAndAfter?: (string | {
|
|
10819
10995
|
context?: string
|
|
10820
10996
|
inlineCommentBlock?: boolean
|
|
10821
10997
|
})[]
|
|
10998
|
+
|
|
10822
10999
|
enableFixer?: boolean
|
|
11000
|
+
|
|
10823
11001
|
enforceJsdocLineStyle?: ("multi" | "single")
|
|
11002
|
+
|
|
10824
11003
|
lineOrBlockStyle?: ("block" | "line" | "both")
|
|
10825
11004
|
}]
|
|
10826
11005
|
// ----- jsdoc/empty-tags -----
|
|
10827
11006
|
type JsdocEmptyTags = []|[{
|
|
11007
|
+
|
|
10828
11008
|
tags?: string[]
|
|
10829
11009
|
}]
|
|
11010
|
+
// ----- jsdoc/escape-inline-tags -----
|
|
11011
|
+
type JsdocEscapeInlineTags = []|[{
|
|
11012
|
+
|
|
11013
|
+
allowedInlineTags?: string[]
|
|
11014
|
+
|
|
11015
|
+
enableFixer?: boolean
|
|
11016
|
+
|
|
11017
|
+
fixType?: ("backticks" | "backslash")
|
|
11018
|
+
}]
|
|
10830
11019
|
// ----- jsdoc/implements-on-classes -----
|
|
10831
11020
|
type JsdocImplementsOnClasses = []|[{
|
|
11021
|
+
|
|
10832
11022
|
contexts?: (string | {
|
|
10833
11023
|
comment?: string
|
|
10834
11024
|
context?: string
|
|
@@ -10836,33 +11026,47 @@ type JsdocImplementsOnClasses = []|[{
|
|
|
10836
11026
|
}]
|
|
10837
11027
|
// ----- jsdoc/informative-docs -----
|
|
10838
11028
|
type JsdocInformativeDocs = []|[{
|
|
11029
|
+
|
|
10839
11030
|
aliases?: {
|
|
10840
11031
|
[k: string]: string[]
|
|
10841
11032
|
}
|
|
11033
|
+
|
|
10842
11034
|
excludedTags?: string[]
|
|
11035
|
+
|
|
10843
11036
|
uselessWords?: string[]
|
|
10844
11037
|
}]
|
|
10845
11038
|
// ----- jsdoc/lines-before-block -----
|
|
10846
11039
|
type JsdocLinesBeforeBlock = []|[{
|
|
11040
|
+
|
|
10847
11041
|
checkBlockStarts?: boolean
|
|
11042
|
+
|
|
10848
11043
|
excludedTags?: string[]
|
|
11044
|
+
|
|
10849
11045
|
ignoreSameLine?: boolean
|
|
11046
|
+
|
|
10850
11047
|
ignoreSingleLines?: boolean
|
|
11048
|
+
|
|
10851
11049
|
lines?: number
|
|
10852
11050
|
}]
|
|
10853
11051
|
// ----- jsdoc/match-description -----
|
|
10854
11052
|
type JsdocMatchDescription = []|[{
|
|
11053
|
+
|
|
10855
11054
|
contexts?: (string | {
|
|
10856
11055
|
comment?: string
|
|
10857
11056
|
context?: string
|
|
10858
11057
|
})[]
|
|
11058
|
+
|
|
10859
11059
|
mainDescription?: (string | boolean | {
|
|
10860
11060
|
match?: (string | boolean)
|
|
10861
11061
|
message?: string
|
|
10862
11062
|
})
|
|
11063
|
+
|
|
10863
11064
|
matchDescription?: string
|
|
11065
|
+
|
|
10864
11066
|
message?: string
|
|
11067
|
+
|
|
10865
11068
|
nonemptyTags?: boolean
|
|
11069
|
+
|
|
10866
11070
|
tags?: {
|
|
10867
11071
|
[k: string]: (string | true | {
|
|
10868
11072
|
match?: (string | true)
|
|
@@ -10872,47 +11076,70 @@ type JsdocMatchDescription = []|[{
|
|
|
10872
11076
|
}]
|
|
10873
11077
|
// ----- jsdoc/match-name -----
|
|
10874
11078
|
type JsdocMatchName = []|[{
|
|
11079
|
+
|
|
10875
11080
|
match: {
|
|
11081
|
+
|
|
10876
11082
|
allowName?: string
|
|
11083
|
+
|
|
10877
11084
|
comment?: string
|
|
11085
|
+
|
|
10878
11086
|
context?: string
|
|
11087
|
+
|
|
10879
11088
|
disallowName?: string
|
|
11089
|
+
|
|
10880
11090
|
message?: string
|
|
11091
|
+
|
|
10881
11092
|
replacement?: string
|
|
11093
|
+
|
|
10882
11094
|
tags?: string[]
|
|
10883
11095
|
}[]
|
|
10884
11096
|
}]
|
|
10885
11097
|
// ----- jsdoc/multiline-blocks -----
|
|
10886
11098
|
type JsdocMultilineBlocks = []|[{
|
|
11099
|
+
|
|
10887
11100
|
allowMultipleTags?: boolean
|
|
11101
|
+
|
|
10888
11102
|
minimumLengthForMultiline?: number
|
|
11103
|
+
|
|
10889
11104
|
multilineTags?: ("*" | string[])
|
|
11105
|
+
|
|
10890
11106
|
noFinalLineText?: boolean
|
|
11107
|
+
|
|
10891
11108
|
noMultilineBlocks?: boolean
|
|
11109
|
+
|
|
10892
11110
|
noSingleLineBlocks?: boolean
|
|
11111
|
+
|
|
10893
11112
|
noZeroLineText?: boolean
|
|
11113
|
+
|
|
10894
11114
|
requireSingleLineUnderCount?: number
|
|
11115
|
+
|
|
10895
11116
|
singleLineTags?: string[]
|
|
10896
11117
|
}]
|
|
10897
11118
|
// ----- jsdoc/no-bad-blocks -----
|
|
10898
11119
|
type JsdocNoBadBlocks = []|[{
|
|
11120
|
+
|
|
10899
11121
|
ignore?: string[]
|
|
11122
|
+
|
|
10900
11123
|
preventAllMultiAsteriskBlocks?: boolean
|
|
10901
11124
|
}]
|
|
10902
11125
|
// ----- jsdoc/no-blank-blocks -----
|
|
10903
11126
|
type JsdocNoBlankBlocks = []|[{
|
|
11127
|
+
|
|
10904
11128
|
enableFixer?: boolean
|
|
10905
11129
|
}]
|
|
10906
11130
|
// ----- jsdoc/no-defaults -----
|
|
10907
11131
|
type JsdocNoDefaults = []|[{
|
|
11132
|
+
|
|
10908
11133
|
contexts?: (string | {
|
|
10909
11134
|
comment?: string
|
|
10910
11135
|
context?: string
|
|
10911
11136
|
})[]
|
|
11137
|
+
|
|
10912
11138
|
noOptionalParamNames?: boolean
|
|
10913
11139
|
}]
|
|
10914
11140
|
// ----- jsdoc/no-missing-syntax -----
|
|
10915
11141
|
type JsdocNoMissingSyntax = []|[{
|
|
11142
|
+
|
|
10916
11143
|
contexts?: (string | {
|
|
10917
11144
|
comment?: string
|
|
10918
11145
|
context?: string
|
|
@@ -10922,12 +11149,16 @@ type JsdocNoMissingSyntax = []|[{
|
|
|
10922
11149
|
}]
|
|
10923
11150
|
// ----- jsdoc/no-multi-asterisks -----
|
|
10924
11151
|
type JsdocNoMultiAsterisks = []|[{
|
|
11152
|
+
|
|
10925
11153
|
allowWhitespace?: boolean
|
|
11154
|
+
|
|
10926
11155
|
preventAtEnd?: boolean
|
|
11156
|
+
|
|
10927
11157
|
preventAtMiddleLines?: boolean
|
|
10928
11158
|
}]
|
|
10929
11159
|
// ----- jsdoc/no-restricted-syntax -----
|
|
10930
11160
|
type JsdocNoRestrictedSyntax = []|[{
|
|
11161
|
+
|
|
10931
11162
|
contexts: (string | {
|
|
10932
11163
|
comment?: string
|
|
10933
11164
|
context?: string
|
|
@@ -10936,6 +11167,7 @@ type JsdocNoRestrictedSyntax = []|[{
|
|
|
10936
11167
|
}]
|
|
10937
11168
|
// ----- jsdoc/no-types -----
|
|
10938
11169
|
type JsdocNoTypes = []|[{
|
|
11170
|
+
|
|
10939
11171
|
contexts?: (string | {
|
|
10940
11172
|
comment?: string
|
|
10941
11173
|
context?: string
|
|
@@ -10943,51 +11175,86 @@ type JsdocNoTypes = []|[{
|
|
|
10943
11175
|
}]
|
|
10944
11176
|
// ----- jsdoc/no-undefined-types -----
|
|
10945
11177
|
type JsdocNoUndefinedTypes = []|[{
|
|
11178
|
+
|
|
11179
|
+
checkUsedTypedefs?: boolean
|
|
11180
|
+
|
|
10946
11181
|
definedTypes?: string[]
|
|
11182
|
+
|
|
10947
11183
|
disableReporting?: boolean
|
|
11184
|
+
|
|
10948
11185
|
markVariablesAsUsed?: boolean
|
|
10949
11186
|
}]
|
|
11187
|
+
// ----- jsdoc/prefer-import-tag -----
|
|
11188
|
+
type JsdocPreferImportTag = []|[{
|
|
11189
|
+
|
|
11190
|
+
enableFixer?: boolean
|
|
11191
|
+
|
|
11192
|
+
exemptTypedefs?: boolean
|
|
11193
|
+
|
|
11194
|
+
outputType?: ("named-import" | "namespaced-import")
|
|
11195
|
+
}]
|
|
10950
11196
|
// ----- jsdoc/require-asterisk-prefix -----
|
|
10951
11197
|
type JsdocRequireAsteriskPrefix = []|[("always" | "never" | "any")]|[("always" | "never" | "any"), {
|
|
11198
|
+
|
|
10952
11199
|
tags?: {
|
|
11200
|
+
|
|
10953
11201
|
always?: string[]
|
|
11202
|
+
|
|
10954
11203
|
any?: string[]
|
|
11204
|
+
|
|
10955
11205
|
never?: string[]
|
|
10956
11206
|
}
|
|
10957
11207
|
}]
|
|
10958
11208
|
// ----- jsdoc/require-description -----
|
|
10959
11209
|
type JsdocRequireDescription = []|[{
|
|
11210
|
+
|
|
10960
11211
|
checkConstructors?: boolean
|
|
11212
|
+
|
|
10961
11213
|
checkGetters?: boolean
|
|
11214
|
+
|
|
10962
11215
|
checkSetters?: boolean
|
|
11216
|
+
|
|
10963
11217
|
contexts?: (string | {
|
|
10964
11218
|
comment?: string
|
|
10965
11219
|
context?: string
|
|
10966
11220
|
})[]
|
|
11221
|
+
|
|
10967
11222
|
descriptionStyle?: ("body" | "tag" | "any")
|
|
11223
|
+
|
|
10968
11224
|
exemptedBy?: string[]
|
|
10969
11225
|
}]
|
|
10970
11226
|
// ----- jsdoc/require-description-complete-sentence -----
|
|
10971
11227
|
type JsdocRequireDescriptionCompleteSentence = []|[{
|
|
11228
|
+
|
|
10972
11229
|
abbreviations?: string[]
|
|
11230
|
+
|
|
10973
11231
|
newlineBeforeCapsAssumesBadSentenceEnd?: boolean
|
|
11232
|
+
|
|
10974
11233
|
tags?: string[]
|
|
10975
11234
|
}]
|
|
10976
11235
|
// ----- jsdoc/require-example -----
|
|
10977
11236
|
type JsdocRequireExample = []|[{
|
|
11237
|
+
|
|
10978
11238
|
checkConstructors?: boolean
|
|
11239
|
+
|
|
10979
11240
|
checkGetters?: boolean
|
|
11241
|
+
|
|
10980
11242
|
checkSetters?: boolean
|
|
11243
|
+
|
|
10981
11244
|
contexts?: (string | {
|
|
10982
11245
|
comment?: string
|
|
10983
11246
|
context?: string
|
|
10984
11247
|
})[]
|
|
11248
|
+
|
|
10985
11249
|
enableFixer?: boolean
|
|
11250
|
+
|
|
10986
11251
|
exemptedBy?: string[]
|
|
11252
|
+
|
|
10987
11253
|
exemptNoArguments?: boolean
|
|
10988
11254
|
}]
|
|
10989
11255
|
// ----- jsdoc/require-file-overview -----
|
|
10990
11256
|
type JsdocRequireFileOverview = []|[{
|
|
11257
|
+
|
|
10991
11258
|
tags?: {
|
|
10992
11259
|
[k: string]: {
|
|
10993
11260
|
initialCommentsOnly?: boolean
|
|
@@ -10998,75 +11265,117 @@ type JsdocRequireFileOverview = []|[{
|
|
|
10998
11265
|
}]
|
|
10999
11266
|
// ----- jsdoc/require-hyphen-before-param-description -----
|
|
11000
11267
|
type JsdocRequireHyphenBeforeParamDescription = []|[("always" | "never")]|[("always" | "never"), {
|
|
11268
|
+
|
|
11001
11269
|
tags?: ({
|
|
11002
11270
|
[k: string]: ("always" | "never")
|
|
11003
11271
|
} | "any")
|
|
11004
11272
|
}]
|
|
11005
11273
|
// ----- jsdoc/require-jsdoc -----
|
|
11006
11274
|
type JsdocRequireJsdoc = []|[{
|
|
11275
|
+
|
|
11007
11276
|
checkConstructors?: boolean
|
|
11277
|
+
|
|
11008
11278
|
checkGetters?: (boolean | "no-setter")
|
|
11279
|
+
|
|
11009
11280
|
checkSetters?: (boolean | "no-getter")
|
|
11281
|
+
|
|
11010
11282
|
contexts?: (string | {
|
|
11011
11283
|
context?: string
|
|
11012
11284
|
inlineCommentBlock?: boolean
|
|
11013
11285
|
minLineCount?: number
|
|
11014
11286
|
})[]
|
|
11287
|
+
|
|
11015
11288
|
enableFixer?: boolean
|
|
11289
|
+
|
|
11016
11290
|
exemptEmptyConstructors?: boolean
|
|
11291
|
+
|
|
11017
11292
|
exemptEmptyFunctions?: boolean
|
|
11293
|
+
|
|
11018
11294
|
exemptOverloadedImplementations?: boolean
|
|
11295
|
+
|
|
11019
11296
|
fixerMessage?: string
|
|
11297
|
+
|
|
11020
11298
|
minLineCount?: number
|
|
11299
|
+
|
|
11021
11300
|
publicOnly?: (boolean | {
|
|
11022
11301
|
ancestorsOnly?: boolean
|
|
11023
11302
|
cjs?: boolean
|
|
11024
11303
|
esm?: boolean
|
|
11025
11304
|
window?: boolean
|
|
11026
11305
|
})
|
|
11306
|
+
|
|
11027
11307
|
require?: {
|
|
11308
|
+
|
|
11028
11309
|
ArrowFunctionExpression?: boolean
|
|
11310
|
+
|
|
11029
11311
|
ClassDeclaration?: boolean
|
|
11312
|
+
|
|
11030
11313
|
ClassExpression?: boolean
|
|
11314
|
+
|
|
11031
11315
|
FunctionDeclaration?: boolean
|
|
11316
|
+
|
|
11032
11317
|
FunctionExpression?: boolean
|
|
11318
|
+
|
|
11033
11319
|
MethodDefinition?: boolean
|
|
11034
11320
|
}
|
|
11321
|
+
|
|
11035
11322
|
skipInterveningOverloadedDeclarations?: boolean
|
|
11036
11323
|
}]
|
|
11037
11324
|
// ----- jsdoc/require-param -----
|
|
11038
11325
|
type JsdocRequireParam = []|[{
|
|
11326
|
+
|
|
11039
11327
|
autoIncrementBase?: number
|
|
11328
|
+
|
|
11040
11329
|
checkConstructors?: boolean
|
|
11330
|
+
|
|
11041
11331
|
checkDestructured?: boolean
|
|
11332
|
+
|
|
11042
11333
|
checkDestructuredRoots?: boolean
|
|
11334
|
+
|
|
11043
11335
|
checkGetters?: boolean
|
|
11336
|
+
|
|
11044
11337
|
checkRestProperty?: boolean
|
|
11338
|
+
|
|
11045
11339
|
checkSetters?: boolean
|
|
11340
|
+
|
|
11046
11341
|
checkTypesPattern?: string
|
|
11342
|
+
|
|
11047
11343
|
contexts?: (string | {
|
|
11048
11344
|
comment?: string
|
|
11049
11345
|
context?: string
|
|
11050
11346
|
})[]
|
|
11347
|
+
|
|
11051
11348
|
enableFixer?: boolean
|
|
11349
|
+
|
|
11052
11350
|
enableRestElementFixer?: boolean
|
|
11351
|
+
|
|
11053
11352
|
enableRootFixer?: boolean
|
|
11353
|
+
|
|
11054
11354
|
exemptedBy?: string[]
|
|
11355
|
+
|
|
11055
11356
|
ignoreWhenAllParamsMissing?: boolean
|
|
11357
|
+
|
|
11358
|
+
interfaceExemptsParamsCheck?: boolean
|
|
11359
|
+
|
|
11056
11360
|
unnamedRootBase?: string[]
|
|
11361
|
+
|
|
11057
11362
|
useDefaultObjectProperties?: boolean
|
|
11058
11363
|
}]
|
|
11059
11364
|
// ----- jsdoc/require-param-description -----
|
|
11060
11365
|
type JsdocRequireParamDescription = []|[{
|
|
11366
|
+
|
|
11061
11367
|
contexts?: (string | {
|
|
11062
11368
|
comment?: string
|
|
11063
11369
|
context?: string
|
|
11064
11370
|
})[]
|
|
11371
|
+
|
|
11065
11372
|
defaultDestructuredRootDescription?: string
|
|
11373
|
+
|
|
11066
11374
|
setDefaultDestructuredRootDescription?: boolean
|
|
11067
11375
|
}]
|
|
11068
11376
|
// ----- jsdoc/require-param-name -----
|
|
11069
11377
|
type JsdocRequireParamName = []|[{
|
|
11378
|
+
|
|
11070
11379
|
contexts?: (string | {
|
|
11071
11380
|
comment?: string
|
|
11072
11381
|
context?: string
|
|
@@ -11074,26 +11383,37 @@ type JsdocRequireParamName = []|[{
|
|
|
11074
11383
|
}]
|
|
11075
11384
|
// ----- jsdoc/require-param-type -----
|
|
11076
11385
|
type JsdocRequireParamType = []|[{
|
|
11386
|
+
|
|
11077
11387
|
contexts?: (string | {
|
|
11078
11388
|
comment?: string
|
|
11079
11389
|
context?: string
|
|
11080
11390
|
})[]
|
|
11391
|
+
|
|
11081
11392
|
defaultDestructuredRootType?: string
|
|
11393
|
+
|
|
11082
11394
|
setDefaultDestructuredRootType?: boolean
|
|
11083
11395
|
}]
|
|
11084
11396
|
// ----- jsdoc/require-returns -----
|
|
11085
11397
|
type JsdocRequireReturns = []|[{
|
|
11398
|
+
|
|
11086
11399
|
checkConstructors?: boolean
|
|
11400
|
+
|
|
11087
11401
|
checkGetters?: boolean
|
|
11402
|
+
|
|
11088
11403
|
contexts?: (string | {
|
|
11089
11404
|
comment?: string
|
|
11090
11405
|
context?: string
|
|
11091
11406
|
forceRequireReturn?: boolean
|
|
11092
11407
|
})[]
|
|
11408
|
+
|
|
11093
11409
|
enableFixer?: boolean
|
|
11410
|
+
|
|
11094
11411
|
exemptedBy?: string[]
|
|
11412
|
+
|
|
11095
11413
|
forceRequireReturn?: boolean
|
|
11414
|
+
|
|
11096
11415
|
forceReturnsWithAsync?: boolean
|
|
11416
|
+
|
|
11097
11417
|
publicOnly?: (boolean | {
|
|
11098
11418
|
ancestorsOnly?: boolean
|
|
11099
11419
|
cjs?: boolean
|
|
@@ -11103,12 +11423,18 @@ type JsdocRequireReturns = []|[{
|
|
|
11103
11423
|
}]
|
|
11104
11424
|
// ----- jsdoc/require-returns-check -----
|
|
11105
11425
|
type JsdocRequireReturnsCheck = []|[{
|
|
11426
|
+
|
|
11106
11427
|
exemptAsync?: boolean
|
|
11428
|
+
|
|
11107
11429
|
exemptGenerators?: boolean
|
|
11430
|
+
|
|
11431
|
+
noNativeTypes?: boolean
|
|
11432
|
+
|
|
11108
11433
|
reportMissingReturnForUndefinedTypes?: boolean
|
|
11109
11434
|
}]
|
|
11110
11435
|
// ----- jsdoc/require-returns-description -----
|
|
11111
11436
|
type JsdocRequireReturnsDescription = []|[{
|
|
11437
|
+
|
|
11112
11438
|
contexts?: (string | {
|
|
11113
11439
|
comment?: string
|
|
11114
11440
|
context?: string
|
|
@@ -11116,63 +11442,99 @@ type JsdocRequireReturnsDescription = []|[{
|
|
|
11116
11442
|
}]
|
|
11117
11443
|
// ----- jsdoc/require-returns-type -----
|
|
11118
11444
|
type JsdocRequireReturnsType = []|[{
|
|
11445
|
+
|
|
11119
11446
|
contexts?: (string | {
|
|
11120
11447
|
comment?: string
|
|
11121
11448
|
context?: string
|
|
11122
11449
|
})[]
|
|
11123
11450
|
}]
|
|
11451
|
+
// ----- jsdoc/require-tags -----
|
|
11452
|
+
type JsdocRequireTags = []|[{
|
|
11453
|
+
|
|
11454
|
+
tags?: (string | {
|
|
11455
|
+
context?: string
|
|
11456
|
+
tag?: string
|
|
11457
|
+
[k: string]: unknown | undefined
|
|
11458
|
+
})[]
|
|
11459
|
+
}]
|
|
11124
11460
|
// ----- jsdoc/require-template -----
|
|
11125
11461
|
type JsdocRequireTemplate = []|[{
|
|
11462
|
+
|
|
11126
11463
|
exemptedBy?: string[]
|
|
11464
|
+
|
|
11127
11465
|
requireSeparateTemplates?: boolean
|
|
11128
11466
|
}]
|
|
11129
11467
|
// ----- jsdoc/require-throws -----
|
|
11130
11468
|
type JsdocRequireThrows = []|[{
|
|
11469
|
+
|
|
11131
11470
|
contexts?: (string | {
|
|
11132
11471
|
comment?: string
|
|
11133
11472
|
context?: string
|
|
11134
11473
|
})[]
|
|
11474
|
+
|
|
11135
11475
|
exemptedBy?: string[]
|
|
11136
11476
|
}]
|
|
11137
11477
|
// ----- jsdoc/require-yields -----
|
|
11138
11478
|
type JsdocRequireYields = []|[{
|
|
11479
|
+
|
|
11139
11480
|
contexts?: (string | {
|
|
11140
11481
|
comment?: string
|
|
11141
11482
|
context?: string
|
|
11142
11483
|
})[]
|
|
11484
|
+
|
|
11143
11485
|
exemptedBy?: string[]
|
|
11486
|
+
|
|
11144
11487
|
forceRequireNext?: boolean
|
|
11488
|
+
|
|
11145
11489
|
forceRequireYields?: boolean
|
|
11490
|
+
|
|
11146
11491
|
next?: boolean
|
|
11492
|
+
|
|
11147
11493
|
nextWithGeneratorTag?: boolean
|
|
11494
|
+
|
|
11148
11495
|
withGeneratorTag?: boolean
|
|
11149
11496
|
}]
|
|
11150
11497
|
// ----- jsdoc/require-yields-check -----
|
|
11151
11498
|
type JsdocRequireYieldsCheck = []|[{
|
|
11499
|
+
|
|
11152
11500
|
checkGeneratorsOnly?: boolean
|
|
11501
|
+
|
|
11153
11502
|
contexts?: (string | {
|
|
11154
11503
|
comment?: string
|
|
11155
11504
|
context?: string
|
|
11156
11505
|
})[]
|
|
11157
|
-
|
|
11506
|
+
|
|
11158
11507
|
next?: boolean
|
|
11159
11508
|
}]
|
|
11160
11509
|
// ----- jsdoc/sort-tags -----
|
|
11161
11510
|
type JsdocSortTags = []|[{
|
|
11511
|
+
|
|
11162
11512
|
alphabetizeExtras?: boolean
|
|
11513
|
+
|
|
11163
11514
|
linesBetween?: number
|
|
11515
|
+
|
|
11164
11516
|
reportIntraTagGroupSpacing?: boolean
|
|
11517
|
+
|
|
11165
11518
|
reportTagGroupSpacing?: boolean
|
|
11519
|
+
|
|
11166
11520
|
tagSequence?: {
|
|
11521
|
+
|
|
11167
11522
|
tags?: string[]
|
|
11168
11523
|
}[]
|
|
11169
11524
|
}]
|
|
11170
11525
|
// ----- jsdoc/tag-lines -----
|
|
11171
11526
|
type JsdocTagLines = []|[("always" | "any" | "never")]|[("always" | "any" | "never"), {
|
|
11527
|
+
|
|
11172
11528
|
applyToEndTag?: boolean
|
|
11529
|
+
|
|
11173
11530
|
count?: number
|
|
11531
|
+
|
|
11174
11532
|
endLines?: (number | null)
|
|
11533
|
+
|
|
11534
|
+
maxBlockLines?: (number | null)
|
|
11535
|
+
|
|
11175
11536
|
startLines?: (number | null)
|
|
11537
|
+
|
|
11176
11538
|
tags?: {
|
|
11177
11539
|
[k: string]: {
|
|
11178
11540
|
count?: number
|
|
@@ -11182,26 +11544,41 @@ type JsdocTagLines = []|[("always" | "any" | "never")]|[("always" | "any" | "nev
|
|
|
11182
11544
|
}]
|
|
11183
11545
|
// ----- jsdoc/text-escaping -----
|
|
11184
11546
|
type JsdocTextEscaping = []|[{
|
|
11547
|
+
|
|
11185
11548
|
escapeHTML?: boolean
|
|
11549
|
+
|
|
11186
11550
|
escapeMarkdown?: boolean
|
|
11187
11551
|
}]
|
|
11188
11552
|
// ----- jsdoc/type-formatting -----
|
|
11189
11553
|
type JsdocTypeFormatting = []|[{
|
|
11554
|
+
|
|
11190
11555
|
arrayBrackets?: ("angle" | "square")
|
|
11556
|
+
|
|
11191
11557
|
enableFixer?: boolean
|
|
11558
|
+
|
|
11192
11559
|
genericDot?: boolean
|
|
11560
|
+
|
|
11193
11561
|
objectFieldIndent?: string
|
|
11562
|
+
|
|
11194
11563
|
objectFieldQuote?: ("double" | "single" | null)
|
|
11564
|
+
|
|
11195
11565
|
objectFieldSeparator?: ("comma" | "comma-and-linebreak" | "linebreak" | "semicolon" | "semicolon-and-linebreak")
|
|
11566
|
+
|
|
11567
|
+
objectFieldSeparatorOptionalLinebreak?: boolean
|
|
11568
|
+
|
|
11196
11569
|
objectFieldSeparatorTrailingPunctuation?: boolean
|
|
11197
|
-
|
|
11570
|
+
|
|
11198
11571
|
separatorForSingleObjectField?: boolean
|
|
11572
|
+
|
|
11199
11573
|
stringQuotes?: ("double" | "single")
|
|
11574
|
+
|
|
11200
11575
|
typeBracketSpacing?: string
|
|
11576
|
+
|
|
11201
11577
|
unionSpacing?: string
|
|
11202
11578
|
}]
|
|
11203
11579
|
// ----- jsdoc/valid-types -----
|
|
11204
11580
|
type JsdocValidTypes = []|[{
|
|
11581
|
+
|
|
11205
11582
|
allowEmptyNamepaths?: boolean
|
|
11206
11583
|
}]
|
|
11207
11584
|
// ----- jsonc/array-bracket-newline -----
|
|
@@ -11716,6 +12093,10 @@ type MarkdownNoHtml = []|[{
|
|
|
11716
12093
|
type MarkdownNoMissingAtxHeadingSpace = []|[{
|
|
11717
12094
|
checkClosedHeadings?: boolean
|
|
11718
12095
|
}]
|
|
12096
|
+
// ----- markdown/no-missing-label-refs -----
|
|
12097
|
+
type MarkdownNoMissingLabelRefs = []|[{
|
|
12098
|
+
allowLabels?: string[]
|
|
12099
|
+
}]
|
|
11719
12100
|
// ----- markdown/no-missing-link-fragments -----
|
|
11720
12101
|
type MarkdownNoMissingLinkFragments = []|[{
|
|
11721
12102
|
ignoreCase?: boolean
|
|
@@ -11777,7 +12158,7 @@ type NHashbang = []|[{
|
|
|
11777
12158
|
// ----- n/no-deprecated-api -----
|
|
11778
12159
|
type NNoDeprecatedApi = []|[{
|
|
11779
12160
|
version?: string
|
|
11780
|
-
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()")[]
|
|
12161
|
+
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()")[]
|
|
11781
12162
|
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")[]
|
|
11782
12163
|
ignoreIndirectDependencies?: boolean
|
|
11783
12164
|
}]
|
|
@@ -12001,7 +12382,7 @@ type NNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
12001
12382
|
type NNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
12002
12383
|
version?: string
|
|
12003
12384
|
allowExperimental?: boolean
|
|
12004
|
-
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")[]
|
|
12385
|
+
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")[]
|
|
12005
12386
|
}]
|
|
12006
12387
|
// ----- n/prefer-global/buffer -----
|
|
12007
12388
|
type NPreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -15061,10 +15442,124 @@ type ReactDomNoUnknownProperty = []|[{
|
|
|
15061
15442
|
ignore?: string[]
|
|
15062
15443
|
requireDataLowercase?: boolean
|
|
15063
15444
|
}]
|
|
15445
|
+
// ----- react-hooks/automatic-effect-dependencies -----
|
|
15446
|
+
type ReactHooksAutomaticEffectDependencies = []|[{
|
|
15447
|
+
[k: string]: unknown | undefined
|
|
15448
|
+
}]
|
|
15449
|
+
// ----- react-hooks/capitalized-calls -----
|
|
15450
|
+
type ReactHooksCapitalizedCalls = []|[{
|
|
15451
|
+
[k: string]: unknown | undefined
|
|
15452
|
+
}]
|
|
15453
|
+
// ----- react-hooks/component-hook-factories -----
|
|
15454
|
+
type ReactHooksComponentHookFactories = []|[{
|
|
15455
|
+
[k: string]: unknown | undefined
|
|
15456
|
+
}]
|
|
15457
|
+
// ----- react-hooks/config -----
|
|
15458
|
+
type ReactHooksConfig = []|[{
|
|
15459
|
+
[k: string]: unknown | undefined
|
|
15460
|
+
}]
|
|
15461
|
+
// ----- react-hooks/error-boundaries -----
|
|
15462
|
+
type ReactHooksErrorBoundaries = []|[{
|
|
15463
|
+
[k: string]: unknown | undefined
|
|
15464
|
+
}]
|
|
15064
15465
|
// ----- react-hooks/exhaustive-deps -----
|
|
15065
15466
|
type ReactHooksExhaustiveDeps = []|[{
|
|
15066
15467
|
additionalHooks?: string
|
|
15067
15468
|
enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean
|
|
15469
|
+
experimental_autoDependenciesHooks?: string[]
|
|
15470
|
+
requireExplicitEffectDeps?: boolean
|
|
15471
|
+
}]
|
|
15472
|
+
// ----- react-hooks/fbt -----
|
|
15473
|
+
type ReactHooksFbt = []|[{
|
|
15474
|
+
[k: string]: unknown | undefined
|
|
15475
|
+
}]
|
|
15476
|
+
// ----- react-hooks/fire -----
|
|
15477
|
+
type ReactHooksFire = []|[{
|
|
15478
|
+
[k: string]: unknown | undefined
|
|
15479
|
+
}]
|
|
15480
|
+
// ----- react-hooks/gating -----
|
|
15481
|
+
type ReactHooksGating = []|[{
|
|
15482
|
+
[k: string]: unknown | undefined
|
|
15483
|
+
}]
|
|
15484
|
+
// ----- react-hooks/globals -----
|
|
15485
|
+
type ReactHooksGlobals = []|[{
|
|
15486
|
+
[k: string]: unknown | undefined
|
|
15487
|
+
}]
|
|
15488
|
+
// ----- react-hooks/hooks -----
|
|
15489
|
+
type ReactHooksHooks = []|[{
|
|
15490
|
+
[k: string]: unknown | undefined
|
|
15491
|
+
}]
|
|
15492
|
+
// ----- react-hooks/immutability -----
|
|
15493
|
+
type ReactHooksImmutability = []|[{
|
|
15494
|
+
[k: string]: unknown | undefined
|
|
15495
|
+
}]
|
|
15496
|
+
// ----- react-hooks/incompatible-library -----
|
|
15497
|
+
type ReactHooksIncompatibleLibrary = []|[{
|
|
15498
|
+
[k: string]: unknown | undefined
|
|
15499
|
+
}]
|
|
15500
|
+
// ----- react-hooks/invariant -----
|
|
15501
|
+
type ReactHooksInvariant = []|[{
|
|
15502
|
+
[k: string]: unknown | undefined
|
|
15503
|
+
}]
|
|
15504
|
+
// ----- react-hooks/memoized-effect-dependencies -----
|
|
15505
|
+
type ReactHooksMemoizedEffectDependencies = []|[{
|
|
15506
|
+
[k: string]: unknown | undefined
|
|
15507
|
+
}]
|
|
15508
|
+
// ----- react-hooks/no-deriving-state-in-effects -----
|
|
15509
|
+
type ReactHooksNoDerivingStateInEffects = []|[{
|
|
15510
|
+
[k: string]: unknown | undefined
|
|
15511
|
+
}]
|
|
15512
|
+
// ----- react-hooks/no-unused-directives -----
|
|
15513
|
+
type ReactHooksNoUnusedDirectives = []|[{
|
|
15514
|
+
[k: string]: unknown | undefined
|
|
15515
|
+
}]
|
|
15516
|
+
// ----- react-hooks/preserve-manual-memoization -----
|
|
15517
|
+
type ReactHooksPreserveManualMemoization = []|[{
|
|
15518
|
+
[k: string]: unknown | undefined
|
|
15519
|
+
}]
|
|
15520
|
+
// ----- react-hooks/purity -----
|
|
15521
|
+
type ReactHooksPurity = []|[{
|
|
15522
|
+
[k: string]: unknown | undefined
|
|
15523
|
+
}]
|
|
15524
|
+
// ----- react-hooks/refs -----
|
|
15525
|
+
type ReactHooksRefs = []|[{
|
|
15526
|
+
[k: string]: unknown | undefined
|
|
15527
|
+
}]
|
|
15528
|
+
// ----- react-hooks/rule-suppression -----
|
|
15529
|
+
type ReactHooksRuleSuppression = []|[{
|
|
15530
|
+
[k: string]: unknown | undefined
|
|
15531
|
+
}]
|
|
15532
|
+
// ----- react-hooks/rules-of-hooks -----
|
|
15533
|
+
type ReactHooksRulesOfHooks = []|[{
|
|
15534
|
+
additionalHooks?: string
|
|
15535
|
+
}]
|
|
15536
|
+
// ----- react-hooks/set-state-in-effect -----
|
|
15537
|
+
type ReactHooksSetStateInEffect = []|[{
|
|
15538
|
+
[k: string]: unknown | undefined
|
|
15539
|
+
}]
|
|
15540
|
+
// ----- react-hooks/set-state-in-render -----
|
|
15541
|
+
type ReactHooksSetStateInRender = []|[{
|
|
15542
|
+
[k: string]: unknown | undefined
|
|
15543
|
+
}]
|
|
15544
|
+
// ----- react-hooks/static-components -----
|
|
15545
|
+
type ReactHooksStaticComponents = []|[{
|
|
15546
|
+
[k: string]: unknown | undefined
|
|
15547
|
+
}]
|
|
15548
|
+
// ----- react-hooks/syntax -----
|
|
15549
|
+
type ReactHooksSyntax = []|[{
|
|
15550
|
+
[k: string]: unknown | undefined
|
|
15551
|
+
}]
|
|
15552
|
+
// ----- react-hooks/todo -----
|
|
15553
|
+
type ReactHooksTodo = []|[{
|
|
15554
|
+
[k: string]: unknown | undefined
|
|
15555
|
+
}]
|
|
15556
|
+
// ----- react-hooks/unsupported-syntax -----
|
|
15557
|
+
type ReactHooksUnsupportedSyntax = []|[{
|
|
15558
|
+
[k: string]: unknown | undefined
|
|
15559
|
+
}]
|
|
15560
|
+
// ----- react-hooks/use-memo -----
|
|
15561
|
+
type ReactHooksUseMemo = []|[{
|
|
15562
|
+
[k: string]: unknown | undefined
|
|
15068
15563
|
}]
|
|
15069
15564
|
// ----- react-naming-convention/component-name -----
|
|
15070
15565
|
type ReactNamingConventionComponentName = []|[(("PascalCase" | "CONSTANT_CASE") | {
|
|
@@ -15107,6 +15602,21 @@ type ReactRefreshOnlyExportComponents = []|[{
|
|
|
15107
15602
|
customHOCs?: string[]
|
|
15108
15603
|
checkJS?: boolean
|
|
15109
15604
|
}]
|
|
15605
|
+
// ----- react-x/jsx-shorthand-boolean -----
|
|
15606
|
+
type ReactXJsxShorthandBoolean = []|[(-1 | 1)]
|
|
15607
|
+
// ----- react-x/jsx-shorthand-fragment -----
|
|
15608
|
+
type ReactXJsxShorthandFragment = []|[(-1 | 1)]
|
|
15609
|
+
// ----- react-x/no-forbidden-props -----
|
|
15610
|
+
type ReactXNoForbiddenProps = []|[{
|
|
15611
|
+
forbid?: (string | {
|
|
15612
|
+
excludedNodes?: string[]
|
|
15613
|
+
prop: string
|
|
15614
|
+
} | {
|
|
15615
|
+
includedNodes?: string[]
|
|
15616
|
+
prop: string
|
|
15617
|
+
})[]
|
|
15618
|
+
[k: string]: unknown | undefined
|
|
15619
|
+
}]
|
|
15110
15620
|
// ----- react-x/no-useless-fragment -----
|
|
15111
15621
|
type ReactXNoUselessFragment = []|[{
|
|
15112
15622
|
|