@ntnyq/eslint-config 4.2.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +64 -51
- package/dist/index.mjs +138 -53
- package/package.json +28 -31
package/dist/index.d.mts
CHANGED
|
@@ -90,7 +90,12 @@ declare const configVue: (options?: ConfigVueOptions) => TypedConfigItem[];
|
|
|
90
90
|
/**
|
|
91
91
|
* Options type of {@link configYml}
|
|
92
92
|
*/
|
|
93
|
-
type ConfigYmlOptions = OptionsOverrides & OptionsFiles
|
|
93
|
+
type ConfigYmlOptions = OptionsOverrides & OptionsFiles & {
|
|
94
|
+
/**
|
|
95
|
+
* Whether disable prettier related rules
|
|
96
|
+
*/
|
|
97
|
+
prettier?: boolean;
|
|
98
|
+
};
|
|
94
99
|
/**
|
|
95
100
|
* Config for yml, yaml files
|
|
96
101
|
*
|
|
@@ -259,7 +264,12 @@ declare const configJsdoc: (options?: ConfigJsdocOptions) => TypedConfigItem[];
|
|
|
259
264
|
/**
|
|
260
265
|
* Options type of {@link configJsonc}
|
|
261
266
|
*/
|
|
262
|
-
type ConfigJsoncOptions = OptionsOverrides & OptionsFiles
|
|
267
|
+
type ConfigJsoncOptions = OptionsOverrides & OptionsFiles & {
|
|
268
|
+
/**
|
|
269
|
+
* Whether disable prettier related rules
|
|
270
|
+
*/
|
|
271
|
+
prettier?: boolean;
|
|
272
|
+
};
|
|
263
273
|
/**
|
|
264
274
|
* Config for json, jsonc and json5 files
|
|
265
275
|
*
|
|
@@ -2072,233 +2082,233 @@ interface RuleOptions {
|
|
|
2072
2082
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
2073
2083
|
/**
|
|
2074
2084
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
2075
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2085
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/consistent-type-specifier-style.md
|
|
2076
2086
|
*/
|
|
2077
2087
|
'import-x/consistent-type-specifier-style'?: Linter.RuleEntry<ImportXConsistentTypeSpecifierStyle>
|
|
2078
2088
|
/**
|
|
2079
2089
|
* Ensure a default export is present, given a default import.
|
|
2080
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2090
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/default.md
|
|
2081
2091
|
*/
|
|
2082
2092
|
'import-x/default'?: Linter.RuleEntry<[]>
|
|
2083
2093
|
/**
|
|
2084
2094
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
2085
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2095
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/dynamic-import-chunkname.md
|
|
2086
2096
|
*/
|
|
2087
2097
|
'import-x/dynamic-import-chunkname'?: Linter.RuleEntry<ImportXDynamicImportChunkname>
|
|
2088
2098
|
/**
|
|
2089
2099
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
2090
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2100
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/export.md
|
|
2091
2101
|
*/
|
|
2092
2102
|
'import-x/export'?: Linter.RuleEntry<[]>
|
|
2093
2103
|
/**
|
|
2094
2104
|
* Ensure all exports appear after other statements.
|
|
2095
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2105
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/exports-last.md
|
|
2096
2106
|
*/
|
|
2097
2107
|
'import-x/exports-last'?: Linter.RuleEntry<[]>
|
|
2098
2108
|
/**
|
|
2099
2109
|
* Ensure consistent use of file extension within the import path.
|
|
2100
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2110
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/extensions.md
|
|
2101
2111
|
*/
|
|
2102
2112
|
'import-x/extensions'?: Linter.RuleEntry<ImportXExtensions>
|
|
2103
2113
|
/**
|
|
2104
2114
|
* Ensure all imports appear before other statements.
|
|
2105
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2115
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/first.md
|
|
2106
2116
|
*/
|
|
2107
2117
|
'import-x/first'?: Linter.RuleEntry<ImportXFirst>
|
|
2108
2118
|
/**
|
|
2109
2119
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
2110
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2120
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/group-exports.md
|
|
2111
2121
|
*/
|
|
2112
2122
|
'import-x/group-exports'?: Linter.RuleEntry<[]>
|
|
2113
2123
|
/**
|
|
2114
2124
|
* Replaced by `import-x/first`.
|
|
2115
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2125
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/imports-first.md
|
|
2116
2126
|
* @deprecated
|
|
2117
2127
|
*/
|
|
2118
2128
|
'import-x/imports-first'?: Linter.RuleEntry<ImportXImportsFirst>
|
|
2119
2129
|
/**
|
|
2120
2130
|
* Enforce the maximum number of dependencies a module can have.
|
|
2121
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2131
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/max-dependencies.md
|
|
2122
2132
|
*/
|
|
2123
2133
|
'import-x/max-dependencies'?: Linter.RuleEntry<ImportXMaxDependencies>
|
|
2124
2134
|
/**
|
|
2125
2135
|
* Ensure named imports correspond to a named export in the remote file.
|
|
2126
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2136
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/named.md
|
|
2127
2137
|
*/
|
|
2128
2138
|
'import-x/named'?: Linter.RuleEntry<ImportXNamed>
|
|
2129
2139
|
/**
|
|
2130
2140
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
2131
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2141
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/namespace.md
|
|
2132
2142
|
*/
|
|
2133
2143
|
'import-x/namespace'?: Linter.RuleEntry<ImportXNamespace>
|
|
2134
2144
|
/**
|
|
2135
2145
|
* Enforce a newline after import statements.
|
|
2136
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2146
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/newline-after-import.md
|
|
2137
2147
|
*/
|
|
2138
2148
|
'import-x/newline-after-import'?: Linter.RuleEntry<ImportXNewlineAfterImport>
|
|
2139
2149
|
/**
|
|
2140
2150
|
* Forbid import of modules using absolute paths.
|
|
2141
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2151
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-absolute-path.md
|
|
2142
2152
|
*/
|
|
2143
2153
|
'import-x/no-absolute-path'?: Linter.RuleEntry<ImportXNoAbsolutePath>
|
|
2144
2154
|
/**
|
|
2145
2155
|
* Forbid AMD `require` and `define` calls.
|
|
2146
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2156
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-amd.md
|
|
2147
2157
|
*/
|
|
2148
2158
|
'import-x/no-amd'?: Linter.RuleEntry<[]>
|
|
2149
2159
|
/**
|
|
2150
2160
|
* Forbid anonymous values as default exports.
|
|
2151
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2161
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-anonymous-default-export.md
|
|
2152
2162
|
*/
|
|
2153
2163
|
'import-x/no-anonymous-default-export'?: Linter.RuleEntry<ImportXNoAnonymousDefaultExport>
|
|
2154
2164
|
/**
|
|
2155
2165
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
2156
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2166
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-commonjs.md
|
|
2157
2167
|
*/
|
|
2158
2168
|
'import-x/no-commonjs'?: Linter.RuleEntry<ImportXNoCommonjs>
|
|
2159
2169
|
/**
|
|
2160
2170
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
2161
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2171
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-cycle.md
|
|
2162
2172
|
*/
|
|
2163
2173
|
'import-x/no-cycle'?: Linter.RuleEntry<ImportXNoCycle>
|
|
2164
2174
|
/**
|
|
2165
2175
|
* Forbid default exports.
|
|
2166
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2176
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-default-export.md
|
|
2167
2177
|
*/
|
|
2168
2178
|
'import-x/no-default-export'?: Linter.RuleEntry<[]>
|
|
2169
2179
|
/**
|
|
2170
2180
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
2171
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2181
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-deprecated.md
|
|
2172
2182
|
*/
|
|
2173
2183
|
'import-x/no-deprecated'?: Linter.RuleEntry<[]>
|
|
2174
2184
|
/**
|
|
2175
2185
|
* Forbid repeated import of the same module in multiple places.
|
|
2176
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2186
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-duplicates.md
|
|
2177
2187
|
*/
|
|
2178
2188
|
'import-x/no-duplicates'?: Linter.RuleEntry<ImportXNoDuplicates>
|
|
2179
2189
|
/**
|
|
2180
2190
|
* Forbid `require()` calls with expressions.
|
|
2181
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2191
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-dynamic-require.md
|
|
2182
2192
|
*/
|
|
2183
2193
|
'import-x/no-dynamic-require'?: Linter.RuleEntry<ImportXNoDynamicRequire>
|
|
2184
2194
|
/**
|
|
2185
2195
|
* Forbid empty named import blocks.
|
|
2186
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2196
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-empty-named-blocks.md
|
|
2187
2197
|
*/
|
|
2188
2198
|
'import-x/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
2189
2199
|
/**
|
|
2190
2200
|
* Forbid the use of extraneous packages.
|
|
2191
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2201
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-extraneous-dependencies.md
|
|
2192
2202
|
*/
|
|
2193
2203
|
'import-x/no-extraneous-dependencies'?: Linter.RuleEntry<ImportXNoExtraneousDependencies>
|
|
2194
2204
|
/**
|
|
2195
2205
|
* Forbid import statements with CommonJS module.exports.
|
|
2196
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2206
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-import-module-exports.md
|
|
2197
2207
|
*/
|
|
2198
2208
|
'import-x/no-import-module-exports'?: Linter.RuleEntry<ImportXNoImportModuleExports>
|
|
2199
2209
|
/**
|
|
2200
2210
|
* Forbid importing the submodules of other modules.
|
|
2201
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2211
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-internal-modules.md
|
|
2202
2212
|
*/
|
|
2203
2213
|
'import-x/no-internal-modules'?: Linter.RuleEntry<ImportXNoInternalModules>
|
|
2204
2214
|
/**
|
|
2205
2215
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
2206
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2216
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-mutable-exports.md
|
|
2207
2217
|
*/
|
|
2208
2218
|
'import-x/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
2209
2219
|
/**
|
|
2210
2220
|
* Forbid use of exported name as identifier of default export.
|
|
2211
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2221
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-as-default.md
|
|
2212
2222
|
*/
|
|
2213
2223
|
'import-x/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
2214
2224
|
/**
|
|
2215
2225
|
* Forbid use of exported name as property of default export.
|
|
2216
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2226
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-as-default-member.md
|
|
2217
2227
|
*/
|
|
2218
2228
|
'import-x/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
2219
2229
|
/**
|
|
2220
2230
|
* Forbid named default exports.
|
|
2221
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2231
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-default.md
|
|
2222
2232
|
*/
|
|
2223
2233
|
'import-x/no-named-default'?: Linter.RuleEntry<[]>
|
|
2224
2234
|
/**
|
|
2225
2235
|
* Forbid named exports.
|
|
2226
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2236
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-export.md
|
|
2227
2237
|
*/
|
|
2228
2238
|
'import-x/no-named-export'?: Linter.RuleEntry<[]>
|
|
2229
2239
|
/**
|
|
2230
2240
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
2231
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2241
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-namespace.md
|
|
2232
2242
|
*/
|
|
2233
2243
|
'import-x/no-namespace'?: Linter.RuleEntry<ImportXNoNamespace>
|
|
2234
2244
|
/**
|
|
2235
2245
|
* Forbid Node.js builtin modules.
|
|
2236
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2246
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-nodejs-modules.md
|
|
2237
2247
|
*/
|
|
2238
2248
|
'import-x/no-nodejs-modules'?: Linter.RuleEntry<ImportXNoNodejsModules>
|
|
2239
2249
|
/**
|
|
2240
2250
|
* Forbid importing packages through relative paths.
|
|
2241
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2251
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-relative-packages.md
|
|
2242
2252
|
*/
|
|
2243
2253
|
'import-x/no-relative-packages'?: Linter.RuleEntry<ImportXNoRelativePackages>
|
|
2244
2254
|
/**
|
|
2245
2255
|
* Forbid importing modules from parent directories.
|
|
2246
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2256
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-relative-parent-imports.md
|
|
2247
2257
|
*/
|
|
2248
2258
|
'import-x/no-relative-parent-imports'?: Linter.RuleEntry<ImportXNoRelativeParentImports>
|
|
2249
2259
|
/**
|
|
2250
2260
|
* Forbid importing a default export by a different name.
|
|
2251
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2261
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-rename-default.md
|
|
2252
2262
|
*/
|
|
2253
2263
|
'import-x/no-rename-default'?: Linter.RuleEntry<ImportXNoRenameDefault>
|
|
2254
2264
|
/**
|
|
2255
2265
|
* Enforce which files can be imported in a given folder.
|
|
2256
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2266
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-restricted-paths.md
|
|
2257
2267
|
*/
|
|
2258
2268
|
'import-x/no-restricted-paths'?: Linter.RuleEntry<ImportXNoRestrictedPaths>
|
|
2259
2269
|
/**
|
|
2260
2270
|
* Forbid a module from importing itself.
|
|
2261
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2271
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-self-import.md
|
|
2262
2272
|
*/
|
|
2263
2273
|
'import-x/no-self-import'?: Linter.RuleEntry<[]>
|
|
2264
2274
|
/**
|
|
2265
2275
|
* Forbid unassigned imports.
|
|
2266
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2276
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unassigned-import.md
|
|
2267
2277
|
*/
|
|
2268
2278
|
'import-x/no-unassigned-import'?: Linter.RuleEntry<ImportXNoUnassignedImport>
|
|
2269
2279
|
/**
|
|
2270
2280
|
* Ensure imports point to a file/module that can be resolved.
|
|
2271
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2281
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unresolved.md
|
|
2272
2282
|
*/
|
|
2273
2283
|
'import-x/no-unresolved'?: Linter.RuleEntry<ImportXNoUnresolved>
|
|
2274
2284
|
/**
|
|
2275
2285
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
2276
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2286
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unused-modules.md
|
|
2277
2287
|
*/
|
|
2278
2288
|
'import-x/no-unused-modules'?: Linter.RuleEntry<ImportXNoUnusedModules>
|
|
2279
2289
|
/**
|
|
2280
2290
|
* Forbid unnecessary path segments in import and require statements.
|
|
2281
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2291
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-useless-path-segments.md
|
|
2282
2292
|
*/
|
|
2283
2293
|
'import-x/no-useless-path-segments'?: Linter.RuleEntry<ImportXNoUselessPathSegments>
|
|
2284
2294
|
/**
|
|
2285
2295
|
* Forbid webpack loader syntax in imports.
|
|
2286
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2296
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-webpack-loader-syntax.md
|
|
2287
2297
|
*/
|
|
2288
2298
|
'import-x/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
2289
2299
|
/**
|
|
2290
2300
|
* Enforce a convention in module import order.
|
|
2291
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2301
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/order.md
|
|
2292
2302
|
*/
|
|
2293
2303
|
'import-x/order'?: Linter.RuleEntry<ImportXOrder>
|
|
2294
2304
|
/**
|
|
2295
2305
|
* Prefer a default export if module exports a single name or multiple names.
|
|
2296
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2306
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/prefer-default-export.md
|
|
2297
2307
|
*/
|
|
2298
2308
|
'import-x/prefer-default-export'?: Linter.RuleEntry<ImportXPreferDefaultExport>
|
|
2299
2309
|
/**
|
|
2300
2310
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
2301
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
2311
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/unambiguous.md
|
|
2302
2312
|
*/
|
|
2303
2313
|
'import-x/unambiguous'?: Linter.RuleEntry<[]>
|
|
2304
2314
|
/**
|
|
@@ -11103,6 +11113,7 @@ type NodeNoUnpublishedImport = []|[{
|
|
|
11103
11113
|
resolverConfig?: {
|
|
11104
11114
|
[k: string]: unknown | undefined
|
|
11105
11115
|
}
|
|
11116
|
+
tryExtensions?: string[]
|
|
11106
11117
|
ignoreTypeImport?: boolean
|
|
11107
11118
|
ignorePrivate?: boolean
|
|
11108
11119
|
}]
|
|
@@ -11146,7 +11157,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
11146
11157
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
11147
11158
|
version?: string
|
|
11148
11159
|
allowExperimental?: boolean
|
|
11149
|
-
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.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.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" | "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")[]
|
|
11160
|
+
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")[]
|
|
11150
11161
|
}]
|
|
11151
11162
|
// ----- node/prefer-global/buffer -----
|
|
11152
11163
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -16373,13 +16384,15 @@ declare const PRETTIER_DEFAULT_OPTIONS: PrettierOptions;
|
|
|
16373
16384
|
/**
|
|
16374
16385
|
* Shared perfectionist rule options for all rules
|
|
16375
16386
|
*/
|
|
16376
|
-
declare const
|
|
16387
|
+
declare const PERFECTIONIST_PLUGIN_SETTINGS: {
|
|
16377
16388
|
readonly fallbackSort: {
|
|
16378
16389
|
readonly order: "asc";
|
|
16379
16390
|
readonly type: "alphabetical";
|
|
16380
16391
|
};
|
|
16381
16392
|
readonly ignoreCase: true;
|
|
16382
16393
|
readonly order: "asc";
|
|
16394
|
+
readonly partitionByNewLine: false;
|
|
16395
|
+
readonly specialCharacters: "keep";
|
|
16383
16396
|
readonly type: "alphabetical";
|
|
16384
16397
|
};
|
|
16385
16398
|
/**
|
|
@@ -16448,5 +16461,5 @@ declare const PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS: string[];
|
|
|
16448
16461
|
*/
|
|
16449
16462
|
declare const PERFECTIONIST_SORT_CLASSES_GROUPS: string[];
|
|
16450
16463
|
|
|
16451
|
-
export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSON_SCHEMA, GLOB_JSX, GLOB_JSX_ONLY, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_PACKAGE_JSON, GLOB_PINIA_STORE, GLOB_PNPM_WORKSPACE_YAML, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG_JSON, GLOB_TSX, GLOB_TSX_ONLY, GLOB_TYPES, GLOB_TYPE_TEST, GLOB_VUE, GLOB_YAML,
|
|
16464
|
+
export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSON_SCHEMA, GLOB_JSX, GLOB_JSX_ONLY, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_PACKAGE_JSON, GLOB_PINIA_STORE, GLOB_PNPM_WORKSPACE_YAML, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG_JSON, GLOB_TSX, GLOB_TSX_ONLY, GLOB_TYPES, GLOB_TYPE_TEST, GLOB_VUE, GLOB_YAML, PERFECTIONIST_EXTRA_RULE_OPTIONS, PERFECTIONIST_PLUGIN_SETTINGS, PERFECTIONIST_SORT_CLASSES_GROUPS, PERFECTIONIST_SORT_EXPORTS_GROUPS, PERFECTIONIST_SORT_IMPORTS_GROUPS, PERFECTIONIST_SORT_INTERFACES_OR_OBJECT_TYPES_GROUPS, PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS, PERFECTIONIST_SORT_NAMED_EXPORTS_GROUPS, PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS, PERFECTIONIST_SORT_OBJECTS_GROUPS, PRETTIER_DEFAULT_OPTIONS, combineConfigs, configAntfu, configCommand, configDeMorgan, configDepend, configESLintComments, configESLintPlugin, configFormat, configGitHubAction, configGitIgnore, configIgnores, configImportX, configJSX, configJavaScript, configJsdoc, configJsonc, configMarkdown, configNode, configNtnyq, configPerfectionist, configPinia, configPnpm, configPrettier, configRegexp, configSVGO, configSort, configSpecials, configTest, configToml, configTypeScript, configUnicorn, configUnoCSS, configUnusedImports, configVue, configYml, defineESLintConfig, ensurePackages, getOverrides, hasPinia, hasShadcnVue, hasTypeScript, hasUnoCSS, hasVitest, hasVue, interopDefault, isInGitHooksOrRunBySpecifyPackages, mergePrettierOptions, index_d as parserPlain, resolveSubOptions };
|
|
16452
16465
|
export type { AccessorPairs, AntfuConsistentChaining, AntfuConsistentListNewline, AntfuIndentUnindent, ArrayBracketNewline, ArrayBracketSpacing, ArrayCallbackReturn, ArrayElementNewline, Arrayable, ArrowBodyStyle, ArrowParens, ArrowSpacing, Awaitable, BlockSpacing, BraceStyle, CallbackReturn, Camelcase, CapitalizedComments, ClassMethodsUseThis, CommaDangle, CommaSpacing, CommaStyle, Complexity, ComputedPropertySpacing, ConfigAntfuOptions, ConfigCommandOptions, ConfigDeMorganOptions, ConfigDependOptions, ConfigESLintCommentsOptions, ConfigESLintPluginOptions, ConfigFormatOptions, ConfigGitHubActionOptions, ConfigGitIgnoreOptions, ConfigIgnoresOptions, ConfigImportXOptions, ConfigJavaScriptOptions, ConfigJsdocOptions, ConfigJsoncOptions, ConfigMarkdownOptions, ConfigNames, ConfigNodeOptions, ConfigNtnyqOptions, ConfigOptions, ConfigOptionsInternal, ConfigPerfectionistOptions, ConfigPiniaOptions, ConfigPnpmOptions, ConfigPrettierOptions, ConfigRegexpOptions, ConfigSVGOOptions, ConfigSortOptions, ConfigSpecialsOptions, ConfigTestOptions, ConfigTomlOptions, ConfigTypeScriptOptions, ConfigUnicornOptions, ConfigUnoCSSOptions, ConfigUnusedImportsOptions, ConfigVueOptions, ConfigYmlOptions, ConsistentReturn, ConsistentThis, Curly, DefaultCase, DependBanDependencies, DotLocation, DotNotation, ESLintConfig, ESLintParser, ESLintParserOptions, ESLintProcessor, ESLintRuleSeverity, ESLintRulesRecord, EolLast, Eqeqeq, EslintCommunityEslintCommentsDisableEnablePair, EslintCommunityEslintCommentsNoRestrictedDisable, EslintCommunityEslintCommentsNoUse, EslintCommunityEslintCommentsRequireDescription, EslintPluginConsistentOutput, EslintPluginMetaPropertyOrdering, EslintPluginNoPropertyInNode, EslintPluginReportMessageFormat, EslintPluginRequireMetaDocsDescription, EslintPluginRequireMetaDocsRecommended, EslintPluginRequireMetaDocsUrl, EslintPluginRequireMetaFixable, EslintPluginRequireMetaSchema, EslintPluginTestCasePropertyOrdering, EslintPluginTestCaseShorthandStrings, FormatDprint, FormatPrettier, FuncCallSpacing, FuncNameMatching, FuncNames, FuncStyle, FunctionCallArgumentNewline, FunctionParenNewline, GeneratorStarSpacing, GetterReturn, GithubActionActionNameCasing, GithubActionJobIdCasing, GithubActionMaxJobsPerAction, GithubActionPreferFileExtension, GithubActionPreferStepUsesStyle, GithubActionValidTimeoutMinutes, GroupedAccessorPairs, HandleCallbackErr, IdBlacklist, IdDenylist, IdLength, IdMatch, ImplicitArrowLinebreak, ImportXConsistentTypeSpecifierStyle, ImportXDynamicImportChunkname, ImportXExtensions, ImportXFirst, ImportXImportsFirst, ImportXMaxDependencies, ImportXNamed, ImportXNamespace, ImportXNewlineAfterImport, ImportXNoAbsolutePath, ImportXNoAnonymousDefaultExport, ImportXNoCommonjs, ImportXNoCycle, ImportXNoDuplicates, ImportXNoDynamicRequire, ImportXNoExtraneousDependencies, ImportXNoImportModuleExports, ImportXNoInternalModules, ImportXNoNamespace, ImportXNoNodejsModules, ImportXNoRelativePackages, ImportXNoRelativeParentImports, ImportXNoRenameDefault, ImportXNoRestrictedPaths, ImportXNoUnassignedImport, ImportXNoUnresolved, ImportXNoUnusedModules, ImportXNoUselessPathSegments, ImportXOrder, ImportXPreferDefaultExport, Indent, IndentLegacy, InitDeclarations, InteropModuleDefault, JsdocCheckExamples, JsdocCheckIndentation, JsdocCheckLineAlignment, JsdocCheckParamNames, JsdocCheckPropertyNames, JsdocCheckTagNames, JsdocCheckTypes, JsdocCheckValues, JsdocConvertToJsdocComments, JsdocEmptyTags, JsdocImplementsOnClasses, JsdocInformativeDocs, JsdocLinesBeforeBlock, JsdocMatchDescription, JsdocMatchName, JsdocMultilineBlocks, JsdocNoBadBlocks, JsdocNoBlankBlocks, JsdocNoDefaults, JsdocNoMissingSyntax, JsdocNoMultiAsterisks, JsdocNoRestrictedSyntax, JsdocNoTypes, JsdocNoUndefinedTypes, JsdocRequireAsteriskPrefix, JsdocRequireDescription, JsdocRequireDescriptionCompleteSentence, JsdocRequireExample, JsdocRequireFileOverview, JsdocRequireHyphenBeforeParamDescription, JsdocRequireJsdoc, JsdocRequireParam, JsdocRequireParamDescription, JsdocRequireParamName, JsdocRequireParamType, JsdocRequireReturns, JsdocRequireReturnsCheck, JsdocRequireReturnsDescription, JsdocRequireReturnsType, JsdocRequireTemplate, JsdocRequireThrows, JsdocRequireYields, JsdocRequireYieldsCheck, JsdocSortTags, JsdocTagLines, JsdocTextEscaping, JsdocValidTypes, JsoncArrayBracketNewline, JsoncArrayBracketSpacing, JsoncArrayElementNewline, JsoncCommaDangle, JsoncCommaStyle, JsoncIndent, JsoncKeyNameCasing, JsoncKeySpacing, JsoncNoIrregularWhitespace, JsoncObjectCurlyNewline, JsoncObjectCurlySpacing, JsoncObjectPropertyNewline, JsoncQuoteProps, JsoncQuotes, JsoncSortArrayValues, JsoncSortKeys, JsoncSpaceUnaryOps, JsxQuotes, KeySpacing, KeywordSpacing, LineCommentPosition, LinebreakStyle, LinesAroundComment, LinesAroundDirective, LinesBetweenClassMembers, LogicalAssignmentOperators, MarkdownFencedCodeLanguage, MarkdownNoHtml, MaxClassesPerFile, MaxDepth, MaxLen, MaxLines, MaxLinesPerFunction, MaxNestedCallbacks, MaxParams, MaxStatements, MaxStatementsPerLine, MultilineCommentStyle, MultilineTernary, NewCap, NewParens, NewlineAfterVar, NewlinePerChainedCall, NoBitwise, NoCondAssign, NoConfusingArrow, NoConsole, NoConstantCondition, NoDuplicateImports, NoElseReturn, NoEmpty, NoEmptyFunction, NoEmptyPattern, NoEval, NoExtendNative, NoExtraBooleanCast, NoExtraParens, NoFallthrough, NoGlobalAssign, NoImplicitCoercion, NoImplicitGlobals, NoInlineComments, NoInnerDeclarations, NoInvalidRegexp, NoInvalidThis, NoIrregularWhitespace, NoLabels, NoMagicNumbers, NoMisleadingCharacterClass, NoMixedOperators, NoMixedRequires, NoMixedSpacesAndTabs, NoMultiAssign, NoMultiSpaces, NoMultipleEmptyLines, NoNativeReassign, NoOnlyTestsNoOnlyTests, NoParamReassign, NoPlusplus, NoPromiseExecutorReturn, NoRedeclare, NoRestrictedExports, NoRestrictedGlobals, NoRestrictedImports, NoRestrictedModules, NoRestrictedProperties, NoRestrictedSyntax, NoReturnAssign, NoSelfAssign, NoSequences, NoShadow, NoShadowRestrictedNames, NoSync, NoTabs, NoTrailingSpaces, NoUndef, NoUnderscoreDangle, NoUnneededTernary, NoUnreachableLoop, NoUnsafeNegation, NoUnsafeOptionalChaining, NoUnusedExpressions, NoUnusedVars, NoUseBeforeDefine, NoUselessComputedKey, NoUselessRename, NoVoid, NoWarningComments, NodeCallbackReturn, NodeExportsStyle, NodeFileExtensionInImport, NodeHandleCallbackErr, NodeHashbang, NodeNoDeprecatedApi, NodeNoExtraneousImport, NodeNoExtraneousRequire, NodeNoHideCoreModules, NodeNoMissingImport, NodeNoMissingRequire, NodeNoMixedRequires, NodeNoProcessEnv, NodeNoRestrictedImport, NodeNoRestrictedRequire, NodeNoSync, NodeNoUnpublishedBin, NodeNoUnpublishedImport, NodeNoUnpublishedRequire, NodeNoUnsupportedFeaturesEsBuiltins, NodeNoUnsupportedFeaturesEsSyntax, NodeNoUnsupportedFeaturesNodeBuiltins, NodePreferGlobalBuffer, NodePreferGlobalConsole, NodePreferGlobalProcess, NodePreferGlobalTextDecoder, NodePreferGlobalTextEncoder, NodePreferGlobalUrl, NodePreferGlobalUrlSearchParams, NodePreferNodeProtocol, NodeShebang, NonblockStatementBodyPosition, NtnyqNoDuplicateExports, NtnyqPreferNewlineAfterFileHeader, ObjectCurlyNewline, ObjectCurlySpacing, ObjectPropertyNewline, ObjectShorthand, OneVar, OneVarDeclarationPerLine, OperatorAssignment, OperatorLinebreak, OptionsFiles, OptionsIgnores, OptionsOverrides, OptionsShareable, PaddedBlocks, PaddingLineBetweenStatements, PerfectionistPartitionByComment, PerfectionistSortArrayIncludes, PerfectionistSortClasses, PerfectionistSortDecorators, PerfectionistSortEnums, PerfectionistSortExports, PerfectionistSortHeritageClauses, PerfectionistSortInterfaces, PerfectionistSortIntersectionTypes, PerfectionistSortJsxProps, PerfectionistSortMaps, PerfectionistSortModules, PerfectionistSortNamedExports, PerfectionistSortNamedImports, PerfectionistSortObjectTypes, PerfectionistSortObjects, PerfectionistSortSets, PerfectionistSortSwitchCase, PerfectionistSortUnionTypes, PerfectionistSortVariableDeclarations, PiniaPreferUseStoreNamingConvention, PnpmJsonEnforceCatalog, PnpmJsonPreferWorkspaceSettings, PnpmJsonValidCatalog, PnpmYamlNoDuplicateCatalogItem, PreferArrowCallback, PreferConst, PreferDestructuring, PreferPromiseRejectErrors, PreferReflect, PreferRegexLiterals, PrettierOptions, PrettierPrettier, Pretty, QuoteProps, Quotes, Radix, RegexpHexadecimalEscape, RegexpLetterCase, RegexpMatchAny, RegexpNoDupeDisjunctions, RegexpNoLazyEnds, RegexpNoLegacyFeatures, RegexpNoMisleadingCapturingGroup, RegexpNoMisleadingUnicodeCharacter, RegexpNoMissingGFlag, RegexpNoObscureRange, RegexpNoSuperLinearBacktracking, RegexpNoSuperLinearMove, RegexpNoUnusedCapturingGroup, RegexpNoUselessCharacterClass, RegexpNoUselessFlag, RegexpNoUselessNonCapturingGroup, RegexpOptimalQuantifierConcatenation, RegexpPreferCharacterClass, RegexpPreferD, RegexpPreferLookaround, RegexpPreferNamedReplacement, RegexpPreferRange, RegexpPreferResultArrayGroups, RegexpSortCharacterClassElements, RegexpUnicodeEscape, RegexpUnicodeProperty, RequireAtomicUpdates, RequireUnicodeRegexp, ResolvedOptions, RestSpreadSpacing, RuleOptions, Semi, SemiSpacing, SemiStyle, SortImports, SortKeys, SortVars, SpaceBeforeBlocks, SpaceBeforeFunctionParen, SpaceInParens, SpaceInfixOps, SpaceUnaryOps, SpacedComment, Strict, SvgoSvgo, SwitchColonSpacing, TSESLintParserOptions, TemplateCurlySpacing, TemplateTagSpacing, TomlArrayBracketNewline, TomlArrayBracketSpacing, TomlArrayElementNewline, TomlCommaStyle, TomlIndent, TomlInlineTableCurlySpacing, TomlKeySpacing, TomlNoMixedTypeInArray, TomlNoNonDecimalInteger, TomlPrecisionOfFractionalSeconds, TomlPrecisionOfInteger, TomlQuotedKeys, TomlSpacedComment, TomlTableBracketSpacing, TypedConfigItem, TypescriptEslintArrayType, TypescriptEslintBanTsComment, TypescriptEslintClassLiteralPropertyStyle, TypescriptEslintClassMethodsUseThis, TypescriptEslintConsistentGenericConstructors, TypescriptEslintConsistentIndexedObjectStyle, TypescriptEslintConsistentReturn, TypescriptEslintConsistentTypeAssertions, TypescriptEslintConsistentTypeDefinitions, TypescriptEslintConsistentTypeExports, TypescriptEslintConsistentTypeImports, TypescriptEslintDotNotation, TypescriptEslintExplicitFunctionReturnType, TypescriptEslintExplicitMemberAccessibility, TypescriptEslintExplicitModuleBoundaryTypes, TypescriptEslintInitDeclarations, TypescriptEslintMaxParams, TypescriptEslintMemberOrdering, TypescriptEslintMethodSignatureStyle, TypescriptEslintNamingConvention, TypescriptEslintNoBaseToString, TypescriptEslintNoConfusingVoidExpression, TypescriptEslintNoDeprecated, TypescriptEslintNoDuplicateTypeConstituents, TypescriptEslintNoEmptyFunction, TypescriptEslintNoEmptyInterface, TypescriptEslintNoEmptyObjectType, TypescriptEslintNoExplicitAny, TypescriptEslintNoExtraneousClass, TypescriptEslintNoFloatingPromises, TypescriptEslintNoInferrableTypes, TypescriptEslintNoInvalidThis, TypescriptEslintNoInvalidVoidType, TypescriptEslintNoMagicNumbers, TypescriptEslintNoMeaninglessVoidOperator, TypescriptEslintNoMisusedPromises, TypescriptEslintNoMisusedSpread, TypescriptEslintNoNamespace, TypescriptEslintNoRedeclare, TypescriptEslintNoRequireImports, TypescriptEslintNoRestrictedImports, TypescriptEslintNoRestrictedTypes, TypescriptEslintNoShadow, TypescriptEslintNoThisAlias, TypescriptEslintNoTypeAlias, TypescriptEslintNoUnnecessaryBooleanLiteralCompare, TypescriptEslintNoUnnecessaryCondition, TypescriptEslintNoUnnecessaryTypeAssertion, TypescriptEslintNoUnusedExpressions, TypescriptEslintNoUnusedVars, TypescriptEslintNoUseBeforeDefine, TypescriptEslintNoVarRequires, TypescriptEslintOnlyThrowError, TypescriptEslintParameterProperties, TypescriptEslintPreferDestructuring, TypescriptEslintPreferLiteralEnumMember, TypescriptEslintPreferNullishCoalescing, TypescriptEslintPreferOptionalChain, TypescriptEslintPreferPromiseRejectErrors, TypescriptEslintPreferReadonly, TypescriptEslintPreferReadonlyParameterTypes, TypescriptEslintPreferStringStartsEndsWith, TypescriptEslintPromiseFunctionAsync, TypescriptEslintRequireArraySortCompare, TypescriptEslintRestrictPlusOperands, TypescriptEslintRestrictTemplateExpressions, TypescriptEslintReturnAwait, TypescriptEslintSortTypeConstituents, TypescriptEslintStrictBooleanExpressions, TypescriptEslintSwitchExhaustivenessCheck, TypescriptEslintTripleSlashReference, TypescriptEslintTypedef, TypescriptEslintUnboundMethod, TypescriptEslintUnifiedSignatures, UnicodeBom, UnicornBetterRegex, UnicornCatchErrorName, UnicornConsistentFunctionScoping, UnicornEscapeCase, UnicornExpiringTodoComments, UnicornExplicitLengthCheck, UnicornFilenameCase, UnicornImportStyle, UnicornNoArrayReduce, UnicornNoInstanceofBuiltins, UnicornNoKeywordPrefix, UnicornNoNull, UnicornNoTypeofUndefined, UnicornNoUnnecessaryPolyfills, UnicornNoUselessUndefined, UnicornNumberLiteralCase, UnicornNumericSeparatorsStyle, UnicornPreferAddEventListener, UnicornPreferArrayFind, UnicornPreferArrayFlat, UnicornPreferAt, UnicornPreferExportFrom, UnicornPreferNumberProperties, UnicornPreferObjectFromEntries, UnicornPreferSingleCall, UnicornPreferStructuredClone, UnicornPreferSwitch, UnicornPreferTernary, UnicornPreventAbbreviations, UnicornRelativeUrlStyle, UnicornStringContent, UnicornSwitchCaseBraces, UnicornTemplateIndent, UnocssEnforceClassCompile, UnusedImportsNoUnusedImports, UnusedImportsNoUnusedVars, UseIsnan, ValidTypeof, VitestConsistentTestFilename, VitestConsistentTestIt, VitestExpectExpect, VitestMaxExpects, VitestMaxNestedDescribe, VitestNoFocusedTests, VitestNoHooks, VitestNoLargeSnapshots, VitestNoRestrictedMatchers, VitestNoRestrictedViMethods, VitestNoStandaloneExpect, VitestPreferExpectAssertions, VitestPreferLowercaseTitle, VitestPreferSnapshotHint, VitestRequireHook, VitestRequireMockTypeParameters, VitestRequireTopLevelDescribe, VitestValidExpect, VitestValidTitle, VueArrayBracketNewline, VueArrayBracketSpacing, VueArrayElementNewline, VueArrowSpacing, VueAttributeHyphenation, VueAttributesOrder, VueBlockLang, VueBlockOrder, VueBlockSpacing, VueBlockTagNewline, VueBraceStyle, VueCamelcase, VueCommaDangle, VueCommaSpacing, VueCommaStyle, VueCommentDirective, VueComponentApiStyle, VueComponentDefinitionNameCasing, VueComponentNameInTemplateCasing, VueComponentOptionsNameCasing, VueCustomEventNameCasing, VueDefineEmitsDeclaration, VueDefineMacrosOrder, VueDefinePropsDeclaration, VueDefinePropsDestructuring, VueDotLocation, VueDotNotation, VueEnforceStyleAttribute, VueEqeqeq, VueFirstAttributeLinebreak, VueFuncCallSpacing, VueHtmlButtonHasType, VueHtmlClosingBracketNewline, VueHtmlClosingBracketSpacing, VueHtmlCommentContentNewline, VueHtmlCommentContentSpacing, VueHtmlCommentIndent, VueHtmlIndent, VueHtmlQuotes, VueHtmlSelfClosing, VueKeySpacing, VueKeywordSpacing, VueMatchComponentFileName, VueMaxAttributesPerLine, VueMaxLen, VueMaxLinesPerBlock, VueMaxProps, VueMaxTemplateDepth, VueMultiWordComponentNames, VueMultilineHtmlElementContentNewline, VueMultilineTernary, VueMustacheInterpolationSpacing, VueNewLineBetweenMultiLineProperty, VueNextTickStyle, VueNoBareStringsInTemplate, VueNoBooleanDefault, VueNoChildContent, VueNoConsole, VueNoConstantCondition, VueNoDeprecatedModelDefinition, VueNoDeprecatedRouterLinkTagProp, VueNoDeprecatedSlotAttribute, VueNoDupeKeys, VueNoDuplicateAttrInheritance, VueNoDuplicateAttributes, VueNoEmptyPattern, VueNoExtraParens, VueNoImplicitCoercion, VueNoIrregularWhitespace, VueNoLoneTemplate, VueNoMultiSpaces, VueNoMultipleTemplateRoot, VueNoMutatingProps, VueNoParsingError, VueNoPotentialComponentOptionTypo, VueNoRequiredPropWithDefault, VueNoReservedComponentNames, VueNoReservedKeys, VueNoReservedProps, VueNoRestrictedBlock, VueNoRestrictedCallAfterAwait, VueNoRestrictedClass, VueNoRestrictedComponentNames, VueNoRestrictedComponentOptions, VueNoRestrictedCustomEvent, VueNoRestrictedHtmlElements, VueNoRestrictedProps, VueNoRestrictedStaticAttribute, VueNoRestrictedSyntax, VueNoRestrictedVBind, VueNoRestrictedVOn, VueNoStaticInlineStyles, VueNoTemplateShadow, VueNoTemplateTargetBlank, VueNoUndefComponents, VueNoUndefProperties, VueNoUnsupportedFeatures, VueNoUnusedComponents, VueNoUnusedProperties, VueNoUnusedVars, VueNoUseVIfWithVFor, VueNoUselessMustaches, VueNoUselessVBind, VueNoVTextVHtmlOnComponent, VueObjectCurlyNewline, VueObjectCurlySpacing, VueObjectPropertyNewline, VueObjectShorthand, VueOperatorLinebreak, VueOrderInComponents, VuePaddingLineBetweenBlocks, VuePaddingLineBetweenTags, VuePaddingLinesInComponentDefinition, VuePreferTrueAttributeShorthand, VuePropNameCasing, VueQuoteProps, VueRequireDirectExport, VueRequireExplicitEmits, VueRequireMacroVariableName, VueRequirePropComment, VueRequireToggleInsideTransition, VueRestrictedComponentNames, VueReturnInComputedProperty, VueScriptIndent, VueSinglelineHtmlElementContentNewline, VueSlotNameCasing, VueSortKeys, VueSpaceInParens, VueSpaceInfixOps, VueSpaceUnaryOps, VueTemplateCurlySpacing, VueThisInTemplate, VueVBindStyle, VueVForDelimiterStyle, VueVOnEventHyphenation, VueVOnHandlerStyle, VueVOnStyle, VueVSlotStyle, VueValidVOn, VueValidVSlot, WrapIife, YieldStarSpacing, YmlBlockMapping, YmlBlockMappingColonIndicatorNewline, YmlBlockMappingQuestionIndicatorNewline, YmlBlockSequence, YmlBlockSequenceHyphenIndicatorNewline, YmlFileExtension, YmlFlowMappingCurlyNewline, YmlFlowMappingCurlySpacing, YmlFlowSequenceBracketNewline, YmlFlowSequenceBracketSpacing, YmlIndent, YmlKeyNameCasing, YmlKeySpacing, YmlNoIrregularWhitespace, YmlNoMultipleEmptyLines, YmlPlainScalar, YmlQuotes, YmlSortKeys, YmlSortSequenceValues, YmlSpacedComment, Yoda, _ArrayElementNewlineBasicConfig, _CommaDangleValue, _CommaDangleValueWithIgnore, _FuncNamesValue, _JsoncArrayElementNewlineBasicConfig, _JsoncCommaDangleValue, _JsoncCommaDangleValueWithIgnore, _PaddingLineBetweenStatementsPaddingType, _PaddingLineBetweenStatementsStatementType, _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType, _PerfectionistSortImportsSortImports, _PerfectionistSortImports_IsLineLength, _TomlArrayElementNewlineBasicConfig, _TypescriptEslintNamingConventionFormatOptionsConfig, _TypescriptEslintNamingConventionPredefinedFormats, _TypescriptEslintNamingConventionTypeModifiers, _TypescriptEslintNamingConventionUnderscoreOptions, _TypescriptEslintNamingConvention_MatchRegexConfig, _TypescriptEslintNamingConvention_PrefixSuffixConfig, _UnicornImportStyleStyles, _UnicornImportStyle_BooleanObject, _UnicornImportStyle_ModuleStyles, _UnicornPreventAbbreviationsReplacements, _UnicornPreventAbbreviations_Abbreviations, _UnicornPreventAbbreviations_BooleanObject, _VueArrayElementNewlineBasicConfig, _VueCommaDangleValue, _VueCommaDangleValueWithIgnore, _VueHtmlSelfClosingOptionValue };
|
package/dist/index.mjs
CHANGED
|
@@ -585,6 +585,11 @@ const configVue = (options = {}) => {
|
|
|
585
585
|
];
|
|
586
586
|
};
|
|
587
587
|
|
|
588
|
+
const disabledCoreRules$1 = {
|
|
589
|
+
"no-irregular-whitespace": "off",
|
|
590
|
+
"no-unused-vars": "off",
|
|
591
|
+
"spaced-comment": "off"
|
|
592
|
+
};
|
|
588
593
|
const configYml = (options = {}) => {
|
|
589
594
|
const { files = [GLOB_YAML] } = options;
|
|
590
595
|
return [
|
|
@@ -598,10 +603,47 @@ const configYml = (options = {}) => {
|
|
|
598
603
|
parser: parserYaml
|
|
599
604
|
},
|
|
600
605
|
rules: {
|
|
601
|
-
...pluginYml.configs.standard.rules,
|
|
602
|
-
...pluginYml.configs.prettier.rules,
|
|
603
606
|
"yml/no-empty-mapping-value": "off",
|
|
604
|
-
"yml/
|
|
607
|
+
"yml/block-mapping": "error",
|
|
608
|
+
"yml/block-mapping-question-indicator-newline": "error",
|
|
609
|
+
"yml/block-sequence": "error",
|
|
610
|
+
"yml/block-sequence-hyphen-indicator-newline": "error",
|
|
611
|
+
"yml/flow-mapping-curly-newline": "error",
|
|
612
|
+
"yml/flow-mapping-curly-spacing": "error",
|
|
613
|
+
"yml/flow-sequence-bracket-newline": "error",
|
|
614
|
+
"yml/flow-sequence-bracket-spacing": "error",
|
|
615
|
+
"yml/indent": "error",
|
|
616
|
+
"yml/key-spacing": "error",
|
|
617
|
+
"yml/no-empty-document": "error",
|
|
618
|
+
"yml/no-empty-key": "error",
|
|
619
|
+
"yml/no-empty-sequence-entry": "error",
|
|
620
|
+
"yml/no-irregular-whitespace": "error",
|
|
621
|
+
"yml/no-tab-indent": "error",
|
|
622
|
+
"yml/plain-scalar": "error",
|
|
623
|
+
"yml/quotes": [
|
|
624
|
+
"error",
|
|
625
|
+
{
|
|
626
|
+
avoidEscape: false,
|
|
627
|
+
prefer: "single"
|
|
628
|
+
}
|
|
629
|
+
],
|
|
630
|
+
"yml/spaced-comment": "error",
|
|
631
|
+
"yml/vue-custom-block/no-parsing-error": "error",
|
|
632
|
+
...disabledCoreRules$1,
|
|
633
|
+
...options.prettier ? {
|
|
634
|
+
"yml/block-mapping-colon-indicator-newline": "off",
|
|
635
|
+
"yml/block-mapping-question-indicator-newline": "off",
|
|
636
|
+
"yml/block-sequence-hyphen-indicator-newline": "off",
|
|
637
|
+
"yml/flow-mapping-curly-newline": "off",
|
|
638
|
+
"yml/flow-mapping-curly-spacing": "off",
|
|
639
|
+
"yml/flow-sequence-bracket-newline": "off",
|
|
640
|
+
"yml/flow-sequence-bracket-spacing": "off",
|
|
641
|
+
"yml/indent": "off",
|
|
642
|
+
"yml/key-spacing": "off",
|
|
643
|
+
"yml/no-multiple-empty-lines": "off",
|
|
644
|
+
"yml/no-trailing-zeros": "off",
|
|
645
|
+
"yml/quotes": "off"
|
|
646
|
+
} : {},
|
|
605
647
|
// Overrides rules
|
|
606
648
|
...options.overrides
|
|
607
649
|
}
|
|
@@ -1527,6 +1569,11 @@ const configJsdoc = (options = {}) => [
|
|
|
1527
1569
|
}
|
|
1528
1570
|
];
|
|
1529
1571
|
|
|
1572
|
+
const disabledCoreRules = {
|
|
1573
|
+
"no-unused-expressions": "off",
|
|
1574
|
+
"no-unused-vars": "off",
|
|
1575
|
+
strict: "off"
|
|
1576
|
+
};
|
|
1530
1577
|
const configJsonc = (options = {}) => {
|
|
1531
1578
|
const { files = [GLOB_JSON, GLOB_JSON5, GLOB_JSONC] } = options;
|
|
1532
1579
|
return [
|
|
@@ -1540,7 +1587,6 @@ const configJsonc = (options = {}) => {
|
|
|
1540
1587
|
parser: parserJsonc
|
|
1541
1588
|
},
|
|
1542
1589
|
rules: {
|
|
1543
|
-
...pluginJsonc.configs["recommended-with-jsonc"].rules,
|
|
1544
1590
|
"jsonc/array-bracket-spacing": ["error", "never"],
|
|
1545
1591
|
"jsonc/comma-dangle": ["error", "never"],
|
|
1546
1592
|
"jsonc/comma-style": ["error", "last"],
|
|
@@ -1552,7 +1598,29 @@ const configJsonc = (options = {}) => {
|
|
|
1552
1598
|
beforeColon: false
|
|
1553
1599
|
}
|
|
1554
1600
|
],
|
|
1601
|
+
"jsonc/no-bigint-literals": "error",
|
|
1602
|
+
"jsonc/no-binary-expression": "error",
|
|
1603
|
+
"jsonc/no-binary-numeric-literals": "error",
|
|
1604
|
+
"jsonc/no-dupe-keys": "error",
|
|
1605
|
+
"jsonc/no-escape-sequence-in-identifier": "error",
|
|
1606
|
+
"jsonc/no-floating-decimal": "error",
|
|
1607
|
+
"jsonc/no-hexadecimal-numeric-literals": "error",
|
|
1608
|
+
"jsonc/no-infinity": "error",
|
|
1609
|
+
"jsonc/no-multi-str": "error",
|
|
1610
|
+
"jsonc/no-nan": "error",
|
|
1611
|
+
"jsonc/no-number-props": "error",
|
|
1612
|
+
"jsonc/no-numeric-separators": "error",
|
|
1613
|
+
"jsonc/no-octal": "error",
|
|
1555
1614
|
"jsonc/no-octal-escape": "error",
|
|
1615
|
+
"jsonc/no-octal-numeric-literals": "error",
|
|
1616
|
+
"jsonc/no-parenthesized": "error",
|
|
1617
|
+
"jsonc/no-plus-sign": "error",
|
|
1618
|
+
"jsonc/no-regexp-literals": "error",
|
|
1619
|
+
"jsonc/no-sparse-arrays": "error",
|
|
1620
|
+
"jsonc/no-template-literals": "error",
|
|
1621
|
+
"jsonc/no-undefined-value": "error",
|
|
1622
|
+
"jsonc/no-unicode-codepoint-escapes": "error",
|
|
1623
|
+
"jsonc/no-useless-escape": "error",
|
|
1556
1624
|
"jsonc/object-curly-newline": [
|
|
1557
1625
|
"error",
|
|
1558
1626
|
{
|
|
@@ -1567,6 +1635,28 @@ const configJsonc = (options = {}) => {
|
|
|
1567
1635
|
allowMultiplePropertiesPerLine: true
|
|
1568
1636
|
}
|
|
1569
1637
|
],
|
|
1638
|
+
"jsonc/quote-props": "error",
|
|
1639
|
+
"jsonc/quotes": "error",
|
|
1640
|
+
"jsonc/space-unary-ops": "error",
|
|
1641
|
+
"jsonc/valid-json-number": "error",
|
|
1642
|
+
"jsonc/vue-custom-block/no-parsing-error": "error",
|
|
1643
|
+
...disabledCoreRules,
|
|
1644
|
+
...options.prettier ? {
|
|
1645
|
+
"jsonc/array-bracket-newline": "off",
|
|
1646
|
+
"jsonc/array-bracket-spacing": "off",
|
|
1647
|
+
"jsonc/array-element-newline": "off",
|
|
1648
|
+
"jsonc/comma-dangle": "off",
|
|
1649
|
+
"jsonc/comma-style": "off",
|
|
1650
|
+
"jsonc/indent": "off",
|
|
1651
|
+
"jsonc/key-spacing": "off",
|
|
1652
|
+
"jsonc/no-floating-decimal": "off",
|
|
1653
|
+
"jsonc/object-curly-newline": "off",
|
|
1654
|
+
"jsonc/object-curly-spacing": "off",
|
|
1655
|
+
"jsonc/object-property-newline": "off",
|
|
1656
|
+
"jsonc/quote-props": "off",
|
|
1657
|
+
"jsonc/quotes": "off",
|
|
1658
|
+
"jsonc/space-unary-ops": "off"
|
|
1659
|
+
} : {},
|
|
1570
1660
|
// Overrides rules
|
|
1571
1661
|
...options.overrides
|
|
1572
1662
|
}
|
|
@@ -1619,7 +1709,6 @@ const configPinia = (options = {}) => {
|
|
|
1619
1709
|
];
|
|
1620
1710
|
};
|
|
1621
1711
|
|
|
1622
|
-
const ALLOWED_DEPENDENCIES = ["eslint-plugin-unicorn"];
|
|
1623
1712
|
const configDepend = (options = {}) => {
|
|
1624
1713
|
const {
|
|
1625
1714
|
files = [GLOB_SRC],
|
|
@@ -1638,7 +1727,7 @@ const configDepend = (options = {}) => {
|
|
|
1638
1727
|
"depend/ban-dependencies": [
|
|
1639
1728
|
"error",
|
|
1640
1729
|
{
|
|
1641
|
-
allowed
|
|
1730
|
+
allowed
|
|
1642
1731
|
}
|
|
1643
1732
|
],
|
|
1644
1733
|
// Overrides rules
|
|
@@ -1660,7 +1749,7 @@ const configDepend = (options = {}) => {
|
|
|
1660
1749
|
"depend/ban-dependencies": [
|
|
1661
1750
|
"error",
|
|
1662
1751
|
{
|
|
1663
|
-
allowed
|
|
1752
|
+
allowed
|
|
1664
1753
|
}
|
|
1665
1754
|
],
|
|
1666
1755
|
// Overrides rules
|
|
@@ -1698,10 +1787,12 @@ const PRETTIER_DEFAULT_OPTIONS = {
|
|
|
1698
1787
|
vueIndentScriptAndStyle: false
|
|
1699
1788
|
};
|
|
1700
1789
|
|
|
1701
|
-
const
|
|
1790
|
+
const PERFECTIONIST_PLUGIN_SETTINGS = {
|
|
1702
1791
|
fallbackSort: { order: "asc", type: "alphabetical" },
|
|
1703
1792
|
ignoreCase: true,
|
|
1704
1793
|
order: "asc",
|
|
1794
|
+
partitionByNewLine: false,
|
|
1795
|
+
specialCharacters: "keep",
|
|
1705
1796
|
type: "alphabetical"
|
|
1706
1797
|
};
|
|
1707
1798
|
const PERFECTIONIST_EXTRA_RULE_OPTIONS = {
|
|
@@ -2439,6 +2530,9 @@ const configSpecials = (options = {}) => {
|
|
|
2439
2530
|
"import-x": pluginImportX,
|
|
2440
2531
|
perfectionist: pluginPerfectionist
|
|
2441
2532
|
},
|
|
2533
|
+
settings: {
|
|
2534
|
+
perfectionist: PERFECTIONIST_PLUGIN_SETTINGS
|
|
2535
|
+
},
|
|
2442
2536
|
rules: {
|
|
2443
2537
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
2444
2538
|
"import-x/no-default-export": "off",
|
|
@@ -2446,7 +2540,6 @@ const configSpecials = (options = {}) => {
|
|
|
2446
2540
|
"perfectionist/sort-objects": [
|
|
2447
2541
|
"error",
|
|
2448
2542
|
{
|
|
2449
|
-
...PERFECTIONIST_COMMON_RULE_OPTIONS,
|
|
2450
2543
|
...PERFECTIONIST_EXTRA_RULE_OPTIONS,
|
|
2451
2544
|
groups: PERFECTIONIST_SORT_OBJECTS_GROUPS
|
|
2452
2545
|
}
|
|
@@ -3003,26 +3096,15 @@ const configPerfectionist = (options = {}) => {
|
|
|
3003
3096
|
sortEnums: enableSortEnums = true,
|
|
3004
3097
|
sortTypes: enableSortTypes = true
|
|
3005
3098
|
} = options;
|
|
3006
|
-
const
|
|
3007
|
-
|
|
3008
|
-
};
|
|
3009
|
-
const commonRuleOptionsWithNewlinesBetween = {
|
|
3010
|
-
...commonRuleOptions,
|
|
3011
|
-
newlinesBetween: "ignore"
|
|
3012
|
-
};
|
|
3013
|
-
const commonRuleOptionsWithPartitionByComment = {
|
|
3014
|
-
...commonRuleOptions,
|
|
3099
|
+
const sharedOptionsWithNewlinesBetween = {
|
|
3100
|
+
newlinesBetween: "ignore",
|
|
3015
3101
|
partitionByComment
|
|
3016
3102
|
};
|
|
3017
|
-
const commonRuleOptionsWithBoth = {
|
|
3018
|
-
...commonRuleOptionsWithNewlinesBetween,
|
|
3019
|
-
...commonRuleOptionsWithPartitionByComment
|
|
3020
|
-
};
|
|
3021
3103
|
const commonRules = {
|
|
3022
3104
|
"perfectionist/sort-exports": [
|
|
3023
3105
|
"error",
|
|
3024
3106
|
{
|
|
3025
|
-
...
|
|
3107
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3026
3108
|
groups: PERFECTIONIST_SORT_EXPORTS_GROUPS,
|
|
3027
3109
|
type: "line-length"
|
|
3028
3110
|
}
|
|
@@ -3030,7 +3112,7 @@ const configPerfectionist = (options = {}) => {
|
|
|
3030
3112
|
"perfectionist/sort-imports": [
|
|
3031
3113
|
"error",
|
|
3032
3114
|
{
|
|
3033
|
-
...
|
|
3115
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3034
3116
|
groups: PERFECTIONIST_SORT_IMPORTS_GROUPS,
|
|
3035
3117
|
internalPattern: ["^~/.+", "^@/.+", "^#.+"]
|
|
3036
3118
|
}
|
|
@@ -3038,7 +3120,7 @@ const configPerfectionist = (options = {}) => {
|
|
|
3038
3120
|
"perfectionist/sort-named-exports": [
|
|
3039
3121
|
"error",
|
|
3040
3122
|
{
|
|
3041
|
-
...
|
|
3123
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3042
3124
|
groups: PERFECTIONIST_SORT_NAMED_EXPORTS_GROUPS,
|
|
3043
3125
|
ignoreAlias: false
|
|
3044
3126
|
}
|
|
@@ -3046,7 +3128,7 @@ const configPerfectionist = (options = {}) => {
|
|
|
3046
3128
|
"perfectionist/sort-named-imports": [
|
|
3047
3129
|
"error",
|
|
3048
3130
|
{
|
|
3049
|
-
...
|
|
3131
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3050
3132
|
groups: PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS,
|
|
3051
3133
|
ignoreAlias: false
|
|
3052
3134
|
}
|
|
@@ -3056,7 +3138,7 @@ const configPerfectionist = (options = {}) => {
|
|
|
3056
3138
|
"perfectionist/sort-enums": [
|
|
3057
3139
|
"error",
|
|
3058
3140
|
{
|
|
3059
|
-
...
|
|
3141
|
+
...sharedOptionsWithNewlinesBetween
|
|
3060
3142
|
}
|
|
3061
3143
|
]
|
|
3062
3144
|
};
|
|
@@ -3064,42 +3146,37 @@ const configPerfectionist = (options = {}) => {
|
|
|
3064
3146
|
"perfectionist/sort-modules": [
|
|
3065
3147
|
"error",
|
|
3066
3148
|
{
|
|
3067
|
-
...
|
|
3149
|
+
...sharedOptionsWithNewlinesBetween
|
|
3068
3150
|
}
|
|
3069
3151
|
]
|
|
3070
3152
|
};
|
|
3071
3153
|
const sortTypesRules = {
|
|
3072
|
-
"perfectionist/sort-heritage-clauses":
|
|
3073
|
-
"error",
|
|
3074
|
-
{
|
|
3075
|
-
...commonRuleOptions
|
|
3076
|
-
}
|
|
3077
|
-
],
|
|
3154
|
+
"perfectionist/sort-heritage-clauses": "error",
|
|
3078
3155
|
"perfectionist/sort-interfaces": [
|
|
3079
3156
|
"error",
|
|
3080
3157
|
{
|
|
3081
|
-
...
|
|
3158
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3082
3159
|
groups: PERFECTIONIST_SORT_INTERFACES_OR_OBJECT_TYPES_GROUPS
|
|
3083
3160
|
}
|
|
3084
3161
|
],
|
|
3085
3162
|
"perfectionist/sort-intersection-types": [
|
|
3086
3163
|
"error",
|
|
3087
3164
|
{
|
|
3088
|
-
...
|
|
3165
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3089
3166
|
groups: PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS
|
|
3090
3167
|
}
|
|
3091
3168
|
],
|
|
3092
3169
|
"perfectionist/sort-object-types": [
|
|
3093
3170
|
"error",
|
|
3094
3171
|
{
|
|
3095
|
-
...
|
|
3172
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3096
3173
|
groups: PERFECTIONIST_SORT_INTERFACES_OR_OBJECT_TYPES_GROUPS
|
|
3097
3174
|
}
|
|
3098
3175
|
],
|
|
3099
3176
|
"perfectionist/sort-union-types": [
|
|
3100
3177
|
"error",
|
|
3101
3178
|
{
|
|
3102
|
-
...
|
|
3179
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3103
3180
|
groups: PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS
|
|
3104
3181
|
}
|
|
3105
3182
|
]
|
|
@@ -3108,20 +3185,20 @@ const configPerfectionist = (options = {}) => {
|
|
|
3108
3185
|
"perfectionist/sort-maps": [
|
|
3109
3186
|
"error",
|
|
3110
3187
|
{
|
|
3111
|
-
...
|
|
3188
|
+
...sharedOptionsWithNewlinesBetween
|
|
3112
3189
|
}
|
|
3113
3190
|
],
|
|
3114
3191
|
"perfectionist/sort-objects": [
|
|
3115
3192
|
"error",
|
|
3116
3193
|
{
|
|
3117
|
-
...
|
|
3194
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3118
3195
|
groups: PERFECTIONIST_SORT_OBJECTS_GROUPS
|
|
3119
3196
|
}
|
|
3120
3197
|
],
|
|
3121
3198
|
"perfectionist/sort-sets": [
|
|
3122
3199
|
"error",
|
|
3123
3200
|
{
|
|
3124
|
-
...
|
|
3201
|
+
...sharedOptionsWithNewlinesBetween
|
|
3125
3202
|
}
|
|
3126
3203
|
]
|
|
3127
3204
|
};
|
|
@@ -3129,40 +3206,34 @@ const configPerfectionist = (options = {}) => {
|
|
|
3129
3206
|
"perfectionist/sort-array-includes": [
|
|
3130
3207
|
"error",
|
|
3131
3208
|
{
|
|
3132
|
-
...
|
|
3209
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3133
3210
|
groups: ["literal", "spread"]
|
|
3134
3211
|
}
|
|
3135
3212
|
],
|
|
3136
3213
|
"perfectionist/sort-classes": [
|
|
3137
3214
|
"error",
|
|
3138
3215
|
{
|
|
3139
|
-
...
|
|
3216
|
+
...sharedOptionsWithNewlinesBetween,
|
|
3140
3217
|
groups: PERFECTIONIST_SORT_CLASSES_GROUPS
|
|
3141
3218
|
}
|
|
3142
3219
|
],
|
|
3143
3220
|
"perfectionist/sort-decorators": [
|
|
3144
3221
|
"error",
|
|
3145
3222
|
{
|
|
3146
|
-
|
|
3223
|
+
partitionByComment
|
|
3147
3224
|
}
|
|
3148
3225
|
],
|
|
3149
3226
|
"perfectionist/sort-jsx-props": [
|
|
3150
3227
|
"error",
|
|
3151
3228
|
{
|
|
3152
|
-
...commonRuleOptions,
|
|
3153
3229
|
groups: ["shorthand", "multiline", "unknown"]
|
|
3154
3230
|
}
|
|
3155
3231
|
],
|
|
3156
|
-
"perfectionist/sort-switch-case":
|
|
3157
|
-
"error",
|
|
3158
|
-
{
|
|
3159
|
-
...commonRuleOptions
|
|
3160
|
-
}
|
|
3161
|
-
],
|
|
3232
|
+
"perfectionist/sort-switch-case": "error",
|
|
3162
3233
|
"perfectionist/sort-variable-declarations": [
|
|
3163
3234
|
"error",
|
|
3164
3235
|
{
|
|
3165
|
-
|
|
3236
|
+
partitionByComment
|
|
3166
3237
|
}
|
|
3167
3238
|
]
|
|
3168
3239
|
};
|
|
@@ -3172,6 +3243,9 @@ const configPerfectionist = (options = {}) => {
|
|
|
3172
3243
|
plugins: {
|
|
3173
3244
|
perfectionist: pluginPerfectionist
|
|
3174
3245
|
},
|
|
3246
|
+
settings: {
|
|
3247
|
+
perfectionist: PERFECTIONIST_PLUGIN_SETTINGS
|
|
3248
|
+
},
|
|
3175
3249
|
rules: {
|
|
3176
3250
|
...commonRules,
|
|
3177
3251
|
...options.all ? {
|
|
@@ -3196,6 +3270,9 @@ const configPerfectionist = (options = {}) => {
|
|
|
3196
3270
|
plugins: {
|
|
3197
3271
|
perfectionist: pluginPerfectionist
|
|
3198
3272
|
},
|
|
3273
|
+
settings: {
|
|
3274
|
+
perfectionist: PERFECTIONIST_PLUGIN_SETTINGS
|
|
3275
|
+
},
|
|
3199
3276
|
rules: {
|
|
3200
3277
|
...sharedRules,
|
|
3201
3278
|
...sortEnumsRules,
|
|
@@ -3211,6 +3288,9 @@ const configPerfectionist = (options = {}) => {
|
|
|
3211
3288
|
plugins: {
|
|
3212
3289
|
perfectionist: pluginPerfectionist
|
|
3213
3290
|
},
|
|
3291
|
+
settings: {
|
|
3292
|
+
perfectionist: PERFECTIONIST_PLUGIN_SETTINGS
|
|
3293
|
+
},
|
|
3214
3294
|
rules: {
|
|
3215
3295
|
...sharedRules,
|
|
3216
3296
|
...sortTypesRules,
|
|
@@ -3226,6 +3306,9 @@ const configPerfectionist = (options = {}) => {
|
|
|
3226
3306
|
plugins: {
|
|
3227
3307
|
perfectionist: pluginPerfectionist
|
|
3228
3308
|
},
|
|
3309
|
+
settings: {
|
|
3310
|
+
perfectionist: PERFECTIONIST_PLUGIN_SETTINGS
|
|
3311
|
+
},
|
|
3229
3312
|
rules: {
|
|
3230
3313
|
...sharedRules,
|
|
3231
3314
|
...sortConstantsRules,
|
|
@@ -3418,6 +3501,7 @@ function defineESLintConfig(options = {}, ...userConfigs) {
|
|
|
3418
3501
|
if (enableYML) {
|
|
3419
3502
|
configs.push(
|
|
3420
3503
|
configYml({
|
|
3504
|
+
prettier: !!enablePrettier,
|
|
3421
3505
|
...resolveSubOptions(options, "yml"),
|
|
3422
3506
|
overrides: getOverrides(options, "yml")
|
|
3423
3507
|
})
|
|
@@ -3434,6 +3518,7 @@ function defineESLintConfig(options = {}, ...userConfigs) {
|
|
|
3434
3518
|
if (enableJSONC) {
|
|
3435
3519
|
configs.push(
|
|
3436
3520
|
configJsonc({
|
|
3521
|
+
prettier: !!enablePrettier,
|
|
3437
3522
|
...resolveSubOptions(options, "jsonc"),
|
|
3438
3523
|
overrides: getOverrides(options, "jsonc")
|
|
3439
3524
|
})
|
|
@@ -3524,4 +3609,4 @@ function defineESLintConfig(options = {}, ...userConfigs) {
|
|
|
3524
3609
|
return composer;
|
|
3525
3610
|
}
|
|
3526
3611
|
|
|
3527
|
-
export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSON_SCHEMA, GLOB_JSX, GLOB_JSX_ONLY, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_PACKAGE_JSON, GLOB_PINIA_STORE, GLOB_PNPM_WORKSPACE_YAML, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG_JSON, GLOB_TSX, GLOB_TSX_ONLY, GLOB_TYPES, GLOB_TYPE_TEST, GLOB_VUE, GLOB_YAML,
|
|
3612
|
+
export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSON_SCHEMA, GLOB_JSX, GLOB_JSX_ONLY, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_PACKAGE_JSON, GLOB_PINIA_STORE, GLOB_PNPM_WORKSPACE_YAML, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG_JSON, GLOB_TSX, GLOB_TSX_ONLY, GLOB_TYPES, GLOB_TYPE_TEST, GLOB_VUE, GLOB_YAML, PERFECTIONIST_EXTRA_RULE_OPTIONS, PERFECTIONIST_PLUGIN_SETTINGS, PERFECTIONIST_SORT_CLASSES_GROUPS, PERFECTIONIST_SORT_EXPORTS_GROUPS, PERFECTIONIST_SORT_IMPORTS_GROUPS, PERFECTIONIST_SORT_INTERFACES_OR_OBJECT_TYPES_GROUPS, PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS, PERFECTIONIST_SORT_NAMED_EXPORTS_GROUPS, PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS, PERFECTIONIST_SORT_OBJECTS_GROUPS, PRETTIER_DEFAULT_OPTIONS, combineConfigs, configAntfu, configCommand, configDeMorgan, configDepend, configESLintComments, configESLintPlugin, configFormat, configGitHubAction, configGitIgnore, configIgnores, configImportX, configJSX, configJavaScript, configJsdoc, configJsonc, configMarkdown, configNode, configNtnyq, configPerfectionist, configPinia, configPnpm, configPrettier, configRegexp, configSVGO, configSort, configSpecials, configTest, configToml, configTypeScript, configUnicorn, configUnoCSS, configUnusedImports, configVue, configYml, defineESLintConfig, ensurePackages, getOverrides, hasPinia, hasShadcnVue, hasTypeScript, hasUnoCSS, hasVitest, hasVue, interopDefault, isInGitHooksOrRunBySpecifyPackages, mergePrettierOptions, parserPlain, resolveSubOptions };
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ntnyq/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.
|
|
5
|
-
"packageManager": "pnpm@10.10.0",
|
|
4
|
+
"version": "4.3.0",
|
|
6
5
|
"description": "An opinionated ESLint config preset of ntnyq",
|
|
7
6
|
"keywords": [
|
|
8
7
|
"eslint",
|
|
@@ -36,25 +35,6 @@
|
|
|
36
35
|
"publishConfig": {
|
|
37
36
|
"access": "public"
|
|
38
37
|
},
|
|
39
|
-
"scripts": {
|
|
40
|
-
"build": "run-s generate:type build:lib",
|
|
41
|
-
"build:inspector": "pnpm dlx @eslint/config-inspector build --config eslint-inspector.config.ts",
|
|
42
|
-
"build:lib": "unbuild",
|
|
43
|
-
"dev": "unbuild --watch",
|
|
44
|
-
"docs:build": "pnpm -C docs run build",
|
|
45
|
-
"docs:dev": "pnpm -C docs run dev",
|
|
46
|
-
"generate:site": "run-s generate:type build:lib build:inspector",
|
|
47
|
-
"generate:type": "tsx scripts/generateType.ts",
|
|
48
|
-
"lint": "eslint --cache",
|
|
49
|
-
"prepare": "husky",
|
|
50
|
-
"release": "run-s release:check release:version release:publish",
|
|
51
|
-
"release:check": "run-s build lint typecheck",
|
|
52
|
-
"release:publish": "npm publish",
|
|
53
|
-
"release:version": "bumpp",
|
|
54
|
-
"stub": "unbuild --stub",
|
|
55
|
-
"test": "vitest",
|
|
56
|
-
"typecheck": "tsc --noEmit"
|
|
57
|
-
},
|
|
58
38
|
"peerDependencies": {
|
|
59
39
|
"eslint": "^9.20.0",
|
|
60
40
|
"eslint-plugin-eslint-plugin": "^6.4.0",
|
|
@@ -78,7 +58,7 @@
|
|
|
78
58
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
79
59
|
"@eslint/js": "^9.26.0",
|
|
80
60
|
"@eslint/markdown": "^6.4.0",
|
|
81
|
-
"@unocss/eslint-plugin": "^66.1.
|
|
61
|
+
"@unocss/eslint-plugin": "^66.1.1",
|
|
82
62
|
"@vitest/eslint-plugin": "^1.1.44",
|
|
83
63
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
84
64
|
"eslint-flat-config-utils": "^2.0.1",
|
|
@@ -87,12 +67,12 @@
|
|
|
87
67
|
"eslint-plugin-antfu": "^3.1.1",
|
|
88
68
|
"eslint-plugin-command": "^3.2.0",
|
|
89
69
|
"eslint-plugin-de-morgan": "^1.2.1",
|
|
90
|
-
"eslint-plugin-depend": "^1.
|
|
70
|
+
"eslint-plugin-depend": "^1.2.0",
|
|
91
71
|
"eslint-plugin-github-action": "^0.0.16",
|
|
92
|
-
"eslint-plugin-import-x": "^4.11.
|
|
93
|
-
"eslint-plugin-jsdoc": "^50.6.
|
|
72
|
+
"eslint-plugin-import-x": "^4.11.1",
|
|
73
|
+
"eslint-plugin-jsdoc": "^50.6.14",
|
|
94
74
|
"eslint-plugin-jsonc": "^2.20.0",
|
|
95
|
-
"eslint-plugin-n": "^17.
|
|
75
|
+
"eslint-plugin-n": "^17.18.0",
|
|
96
76
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
97
77
|
"eslint-plugin-ntnyq": "^0.11.0",
|
|
98
78
|
"eslint-plugin-perfectionist": "^4.12.3",
|
|
@@ -100,7 +80,7 @@
|
|
|
100
80
|
"eslint-plugin-pnpm": "^0.3.1",
|
|
101
81
|
"eslint-plugin-prettier": "^5.4.0",
|
|
102
82
|
"eslint-plugin-regexp": "^2.7.0",
|
|
103
|
-
"eslint-plugin-svgo": "^0.
|
|
83
|
+
"eslint-plugin-svgo": "^0.8.0",
|
|
104
84
|
"eslint-plugin-toml": "^0.12.0",
|
|
105
85
|
"eslint-plugin-unicorn": "^59.0.1",
|
|
106
86
|
"eslint-plugin-vue": "^10.1.0",
|
|
@@ -111,18 +91,18 @@
|
|
|
111
91
|
"local-pkg": "^1.1.1",
|
|
112
92
|
"prettier": "^3.5.3",
|
|
113
93
|
"toml-eslint-parser": "^0.10.0",
|
|
114
|
-
"typescript-eslint": "^8.32.
|
|
94
|
+
"typescript-eslint": "^8.32.1",
|
|
115
95
|
"vue-eslint-parser": "^10.1.3",
|
|
116
96
|
"yaml-eslint-parser": "^1.3.0"
|
|
117
97
|
},
|
|
118
98
|
"devDependencies": {
|
|
119
99
|
"@ntnyq/prettier-config": "^2.0.0",
|
|
120
|
-
"@types/node": "^22.15.
|
|
100
|
+
"@types/node": "^22.15.17",
|
|
121
101
|
"bumpp": "^10.1.0",
|
|
122
102
|
"eslint": "^9.26.0",
|
|
123
103
|
"eslint-parser-plain": "^0.1.1",
|
|
124
104
|
"eslint-plugin-eslint-plugin": "^6.4.0",
|
|
125
|
-
"eslint-typegen": "^2.
|
|
105
|
+
"eslint-typegen": "^2.2.0",
|
|
126
106
|
"husky": "^9.1.7",
|
|
127
107
|
"jiti": "^2.4.2",
|
|
128
108
|
"nano-staged": "^0.8.0",
|
|
@@ -140,5 +120,22 @@
|
|
|
140
120
|
"nano-staged": {
|
|
141
121
|
"*.{js,ts,mjs,cjs,md,vue,svg,yml,yaml,toml,json}": "eslint --fix",
|
|
142
122
|
"*.{css,scss,html}": "prettier -uw"
|
|
123
|
+
},
|
|
124
|
+
"scripts": {
|
|
125
|
+
"build": "run-s generate:type build:lib",
|
|
126
|
+
"build:inspector": "pnpm dlx @eslint/config-inspector build --config eslint-inspector.config.ts",
|
|
127
|
+
"build:lib": "unbuild",
|
|
128
|
+
"dev": "unbuild --watch",
|
|
129
|
+
"docs:build": "pnpm -C docs run build",
|
|
130
|
+
"docs:dev": "pnpm -C docs run dev",
|
|
131
|
+
"generate:site": "run-s generate:type build:lib build:inspector",
|
|
132
|
+
"generate:type": "tsx scripts/generateType.ts",
|
|
133
|
+
"lint": "eslint --cache",
|
|
134
|
+
"release": "run-s release:check release:version release:publish",
|
|
135
|
+
"release:check": "run-s build lint test typecheck",
|
|
136
|
+
"release:publish": "pnpm publish",
|
|
137
|
+
"release:version": "bumpp",
|
|
138
|
+
"test": "vitest",
|
|
139
|
+
"typecheck": "tsc --noEmit"
|
|
143
140
|
}
|
|
144
|
-
}
|
|
141
|
+
}
|