@sxzz/eslint-config 4.5.0 → 4.6.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.ts +438 -177
- package/dist/index.js +864 -1051
- package/package.json +25 -25
package/dist/index.d.ts
CHANGED
|
@@ -538,7 +538,7 @@ interface Rules {
|
|
|
538
538
|
*/
|
|
539
539
|
'@typescript-eslint/no-wrapper-object-types'?: Linter.RuleEntry<[]>;
|
|
540
540
|
/**
|
|
541
|
-
* Enforce non-null assertions over explicit type
|
|
541
|
+
* Enforce non-null assertions over explicit type assertions
|
|
542
542
|
* @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
|
|
543
543
|
*/
|
|
544
544
|
'@typescript-eslint/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>;
|
|
@@ -623,7 +623,7 @@ interface Rules {
|
|
|
623
623
|
*/
|
|
624
624
|
'@typescript-eslint/prefer-readonly-parameter-types'?: Linter.RuleEntry<TypescriptEslintPreferReadonlyParameterTypes>;
|
|
625
625
|
/**
|
|
626
|
-
* Enforce using type parameter when calling `Array#reduce` instead of
|
|
626
|
+
* Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
|
|
627
627
|
* @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
|
|
628
628
|
*/
|
|
629
629
|
'@typescript-eslint/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>;
|
|
@@ -922,7 +922,7 @@ interface Rules {
|
|
|
922
922
|
*/
|
|
923
923
|
'default-case'?: Linter.RuleEntry<DefaultCase>;
|
|
924
924
|
/**
|
|
925
|
-
* Enforce default clauses in switch statements to be last
|
|
925
|
+
* Enforce `default` clauses in `switch` statements to be last
|
|
926
926
|
* @see https://eslint.org/docs/latest/rules/default-case-last
|
|
927
927
|
*/
|
|
928
928
|
'default-case-last'?: Linter.RuleEntry<[]>;
|
|
@@ -954,7 +954,7 @@ interface Rules {
|
|
|
954
954
|
*/
|
|
955
955
|
'eqeqeq'?: Linter.RuleEntry<Eqeqeq>;
|
|
956
956
|
/**
|
|
957
|
-
* Enforce
|
|
957
|
+
* Enforce `for` loop update clause moving the counter in the right direction
|
|
958
958
|
* @see https://eslint.org/docs/latest/rules/for-direction
|
|
959
959
|
*/
|
|
960
960
|
'for-direction'?: Linter.RuleEntry<[]>;
|
|
@@ -1053,233 +1053,233 @@ interface Rules {
|
|
|
1053
1053
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
1056
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1056
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/consistent-type-specifier-style.md
|
|
1057
1057
|
*/
|
|
1058
1058
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* Ensure a default export is present, given a default import.
|
|
1061
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1061
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/default.md
|
|
1062
1062
|
*/
|
|
1063
1063
|
'import/default'?: Linter.RuleEntry<[]>;
|
|
1064
1064
|
/**
|
|
1065
1065
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
1066
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1066
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/dynamic-import-chunkname.md
|
|
1067
1067
|
*/
|
|
1068
1068
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
1071
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1071
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/export.md
|
|
1072
1072
|
*/
|
|
1073
1073
|
'import/export'?: Linter.RuleEntry<[]>;
|
|
1074
1074
|
/**
|
|
1075
1075
|
* Ensure all exports appear after other statements.
|
|
1076
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1076
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/exports-last.md
|
|
1077
1077
|
*/
|
|
1078
1078
|
'import/exports-last'?: Linter.RuleEntry<[]>;
|
|
1079
1079
|
/**
|
|
1080
1080
|
* Ensure consistent use of file extension within the import path.
|
|
1081
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1081
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/extensions.md
|
|
1082
1082
|
*/
|
|
1083
1083
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>;
|
|
1084
1084
|
/**
|
|
1085
1085
|
* Ensure all imports appear before other statements.
|
|
1086
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1086
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/first.md
|
|
1087
1087
|
*/
|
|
1088
1088
|
'import/first'?: Linter.RuleEntry<ImportFirst>;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
1091
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1091
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/group-exports.md
|
|
1092
1092
|
*/
|
|
1093
1093
|
'import/group-exports'?: Linter.RuleEntry<[]>;
|
|
1094
1094
|
/**
|
|
1095
1095
|
* Replaced by `import-x/first`.
|
|
1096
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1096
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/imports-first.md
|
|
1097
1097
|
* @deprecated
|
|
1098
1098
|
*/
|
|
1099
1099
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>;
|
|
1100
1100
|
/**
|
|
1101
1101
|
* Enforce the maximum number of dependencies a module can have.
|
|
1102
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1102
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/max-dependencies.md
|
|
1103
1103
|
*/
|
|
1104
1104
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>;
|
|
1105
1105
|
/**
|
|
1106
1106
|
* Ensure named imports correspond to a named export in the remote file.
|
|
1107
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1107
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/named.md
|
|
1108
1108
|
*/
|
|
1109
1109
|
'import/named'?: Linter.RuleEntry<ImportNamed>;
|
|
1110
1110
|
/**
|
|
1111
1111
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
1112
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1112
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/namespace.md
|
|
1113
1113
|
*/
|
|
1114
1114
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>;
|
|
1115
1115
|
/**
|
|
1116
1116
|
* Enforce a newline after import statements.
|
|
1117
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1117
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/newline-after-import.md
|
|
1118
1118
|
*/
|
|
1119
1119
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>;
|
|
1120
1120
|
/**
|
|
1121
1121
|
* Forbid import of modules using absolute paths.
|
|
1122
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1122
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-absolute-path.md
|
|
1123
1123
|
*/
|
|
1124
1124
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>;
|
|
1125
1125
|
/**
|
|
1126
1126
|
* Forbid AMD `require` and `define` calls.
|
|
1127
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1127
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-amd.md
|
|
1128
1128
|
*/
|
|
1129
1129
|
'import/no-amd'?: Linter.RuleEntry<[]>;
|
|
1130
1130
|
/**
|
|
1131
1131
|
* Forbid anonymous values as default exports.
|
|
1132
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1132
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-anonymous-default-export.md
|
|
1133
1133
|
*/
|
|
1134
1134
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>;
|
|
1135
1135
|
/**
|
|
1136
1136
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
1137
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1137
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-commonjs.md
|
|
1138
1138
|
*/
|
|
1139
1139
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>;
|
|
1140
1140
|
/**
|
|
1141
1141
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
1142
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1142
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-cycle.md
|
|
1143
1143
|
*/
|
|
1144
1144
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>;
|
|
1145
1145
|
/**
|
|
1146
1146
|
* Forbid default exports.
|
|
1147
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1147
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-default-export.md
|
|
1148
1148
|
*/
|
|
1149
1149
|
'import/no-default-export'?: Linter.RuleEntry<[]>;
|
|
1150
1150
|
/**
|
|
1151
1151
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
1152
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1152
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-deprecated.md
|
|
1153
1153
|
*/
|
|
1154
1154
|
'import/no-deprecated'?: Linter.RuleEntry<[]>;
|
|
1155
1155
|
/**
|
|
1156
1156
|
* Forbid repeated import of the same module in multiple places.
|
|
1157
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1157
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-duplicates.md
|
|
1158
1158
|
*/
|
|
1159
1159
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>;
|
|
1160
1160
|
/**
|
|
1161
1161
|
* Forbid `require()` calls with expressions.
|
|
1162
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1162
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-dynamic-require.md
|
|
1163
1163
|
*/
|
|
1164
1164
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>;
|
|
1165
1165
|
/**
|
|
1166
1166
|
* Forbid empty named import blocks.
|
|
1167
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1167
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-empty-named-blocks.md
|
|
1168
1168
|
*/
|
|
1169
1169
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>;
|
|
1170
1170
|
/**
|
|
1171
1171
|
* Forbid the use of extraneous packages.
|
|
1172
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1172
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-extraneous-dependencies.md
|
|
1173
1173
|
*/
|
|
1174
1174
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>;
|
|
1175
1175
|
/**
|
|
1176
1176
|
* Forbid import statements with CommonJS module.exports.
|
|
1177
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1177
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-import-module-exports.md
|
|
1178
1178
|
*/
|
|
1179
1179
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>;
|
|
1180
1180
|
/**
|
|
1181
1181
|
* Forbid importing the submodules of other modules.
|
|
1182
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1182
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-internal-modules.md
|
|
1183
1183
|
*/
|
|
1184
1184
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>;
|
|
1185
1185
|
/**
|
|
1186
1186
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
1187
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1187
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-mutable-exports.md
|
|
1188
1188
|
*/
|
|
1189
1189
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>;
|
|
1190
1190
|
/**
|
|
1191
1191
|
* Forbid use of exported name as identifier of default export.
|
|
1192
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1192
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default.md
|
|
1193
1193
|
*/
|
|
1194
1194
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* Forbid use of exported name as property of default export.
|
|
1197
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1197
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default-member.md
|
|
1198
1198
|
*/
|
|
1199
1199
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>;
|
|
1200
1200
|
/**
|
|
1201
1201
|
* Forbid named default exports.
|
|
1202
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1202
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-default.md
|
|
1203
1203
|
*/
|
|
1204
1204
|
'import/no-named-default'?: Linter.RuleEntry<[]>;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* Forbid named exports.
|
|
1207
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1207
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-export.md
|
|
1208
1208
|
*/
|
|
1209
1209
|
'import/no-named-export'?: Linter.RuleEntry<[]>;
|
|
1210
1210
|
/**
|
|
1211
1211
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
1212
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1212
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-namespace.md
|
|
1213
1213
|
*/
|
|
1214
1214
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* Forbid Node.js builtin modules.
|
|
1217
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1217
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-nodejs-modules.md
|
|
1218
1218
|
*/
|
|
1219
1219
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>;
|
|
1220
1220
|
/**
|
|
1221
1221
|
* Forbid importing packages through relative paths.
|
|
1222
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1222
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-packages.md
|
|
1223
1223
|
*/
|
|
1224
1224
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>;
|
|
1225
1225
|
/**
|
|
1226
1226
|
* Forbid importing modules from parent directories.
|
|
1227
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1227
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-parent-imports.md
|
|
1228
1228
|
*/
|
|
1229
1229
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>;
|
|
1230
1230
|
/**
|
|
1231
1231
|
* Forbid importing a default export by a different name.
|
|
1232
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1232
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-rename-default.md
|
|
1233
1233
|
*/
|
|
1234
1234
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>;
|
|
1235
1235
|
/**
|
|
1236
1236
|
* Enforce which files can be imported in a given folder.
|
|
1237
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1237
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-restricted-paths.md
|
|
1238
1238
|
*/
|
|
1239
1239
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>;
|
|
1240
1240
|
/**
|
|
1241
1241
|
* Forbid a module from importing itself.
|
|
1242
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1242
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-self-import.md
|
|
1243
1243
|
*/
|
|
1244
1244
|
'import/no-self-import'?: Linter.RuleEntry<[]>;
|
|
1245
1245
|
/**
|
|
1246
1246
|
* Forbid unassigned imports.
|
|
1247
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1247
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unassigned-import.md
|
|
1248
1248
|
*/
|
|
1249
1249
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>;
|
|
1250
1250
|
/**
|
|
1251
1251
|
* Ensure imports point to a file/module that can be resolved.
|
|
1252
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1252
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unresolved.md
|
|
1253
1253
|
*/
|
|
1254
1254
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>;
|
|
1255
1255
|
/**
|
|
1256
1256
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
1257
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1257
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unused-modules.md
|
|
1258
1258
|
*/
|
|
1259
1259
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>;
|
|
1260
1260
|
/**
|
|
1261
1261
|
* Forbid unnecessary path segments in import and require statements.
|
|
1262
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1262
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-useless-path-segments.md
|
|
1263
1263
|
*/
|
|
1264
1264
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>;
|
|
1265
1265
|
/**
|
|
1266
1266
|
* Forbid webpack loader syntax in imports.
|
|
1267
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1267
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-webpack-loader-syntax.md
|
|
1268
1268
|
*/
|
|
1269
1269
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>;
|
|
1270
1270
|
/**
|
|
1271
1271
|
* Enforce a convention in module import order.
|
|
1272
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1272
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/order.md
|
|
1273
1273
|
*/
|
|
1274
1274
|
'import/order'?: Linter.RuleEntry<ImportOrder>;
|
|
1275
1275
|
/**
|
|
1276
1276
|
* Prefer a default export if module exports a single name or multiple names.
|
|
1277
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1277
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/prefer-default-export.md
|
|
1278
1278
|
*/
|
|
1279
1279
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>;
|
|
1280
1280
|
/**
|
|
1281
1281
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
1282
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1282
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/unambiguous.md
|
|
1283
1283
|
*/
|
|
1284
1284
|
'import/unambiguous'?: Linter.RuleEntry<[]>;
|
|
1285
1285
|
/**
|
|
@@ -2026,7 +2026,7 @@ interface Rules {
|
|
|
2026
2026
|
*/
|
|
2027
2027
|
'no-class-assign'?: Linter.RuleEntry<[]>;
|
|
2028
2028
|
/**
|
|
2029
|
-
* Disallow comparing against
|
|
2029
|
+
* Disallow comparing against `-0`
|
|
2030
2030
|
* @see https://eslint.org/docs/latest/rules/no-compare-neg-zero
|
|
2031
2031
|
*/
|
|
2032
2032
|
'no-compare-neg-zero'?: Linter.RuleEntry<[]>;
|
|
@@ -2435,7 +2435,7 @@ interface Rules {
|
|
|
2435
2435
|
*/
|
|
2436
2436
|
'no-octal-escape'?: Linter.RuleEntry<[]>;
|
|
2437
2437
|
/**
|
|
2438
|
-
* Disallow reassigning
|
|
2438
|
+
* Disallow reassigning function parameters
|
|
2439
2439
|
* @see https://eslint.org/docs/latest/rules/no-param-reassign
|
|
2440
2440
|
*/
|
|
2441
2441
|
'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>;
|
|
@@ -2530,7 +2530,7 @@ interface Rules {
|
|
|
2530
2530
|
*/
|
|
2531
2531
|
'no-return-await'?: Linter.RuleEntry<[]>;
|
|
2532
2532
|
/**
|
|
2533
|
-
* Disallow `javascript:`
|
|
2533
|
+
* Disallow `javascript:` URLs
|
|
2534
2534
|
* @see https://eslint.org/docs/latest/rules/no-script-url
|
|
2535
2535
|
*/
|
|
2536
2536
|
'no-script-url'?: Linter.RuleEntry<[]>;
|
|
@@ -3175,7 +3175,7 @@ interface Rules {
|
|
|
3175
3175
|
*/
|
|
3176
3176
|
'prefer-object-has-own'?: Linter.RuleEntry<[]>;
|
|
3177
3177
|
/**
|
|
3178
|
-
* Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
|
|
3178
|
+
* Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
|
|
3179
3179
|
* @see https://eslint.org/docs/latest/rules/prefer-object-spread
|
|
3180
3180
|
*/
|
|
3181
3181
|
'prefer-object-spread'?: Linter.RuleEntry<[]>;
|
|
@@ -3652,7 +3652,7 @@ interface Rules {
|
|
|
3652
3652
|
*/
|
|
3653
3653
|
'require-await'?: Linter.RuleEntry<[]>;
|
|
3654
3654
|
/**
|
|
3655
|
-
* Enforce the use of `u` or `v` flag on
|
|
3655
|
+
* Enforce the use of `u` or `v` flag on regular expressions
|
|
3656
3656
|
* @see https://eslint.org/docs/latest/rules/require-unicode-regexp
|
|
3657
3657
|
*/
|
|
3658
3658
|
'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>;
|
|
@@ -3686,7 +3686,7 @@ interface Rules {
|
|
|
3686
3686
|
*/
|
|
3687
3687
|
'semi-style'?: Linter.RuleEntry<SemiStyle>;
|
|
3688
3688
|
/**
|
|
3689
|
-
* Enforce sorted import declarations within modules
|
|
3689
|
+
* Enforce sorted `import` declarations within modules
|
|
3690
3690
|
* @see https://eslint.org/docs/latest/rules/sort-imports
|
|
3691
3691
|
*/
|
|
3692
3692
|
'sort-imports'?: Linter.RuleEntry<SortImports>;
|
|
@@ -4969,7 +4969,7 @@ interface Rules {
|
|
|
4969
4969
|
* enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`
|
|
4970
4970
|
* @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance.html
|
|
4971
4971
|
*/
|
|
4972
|
-
'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<
|
|
4972
|
+
'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<VueNoDuplicateAttrInheritance>;
|
|
4973
4973
|
/**
|
|
4974
4974
|
* disallow duplication of attributes
|
|
4975
4975
|
* @see https://eslint.vuejs.org/rules/no-duplicate-attributes.html
|
|
@@ -5414,7 +5414,7 @@ interface Rules {
|
|
|
5414
5414
|
*/
|
|
5415
5415
|
'vue/prefer-true-attribute-shorthand'?: Linter.RuleEntry<VuePreferTrueAttributeShorthand>;
|
|
5416
5416
|
/**
|
|
5417
|
-
* require using `useTemplateRef` instead of `ref` for template refs
|
|
5417
|
+
* require using `useTemplateRef` instead of `ref`/`shallowRef` for template refs
|
|
5418
5418
|
* @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
|
|
5419
5419
|
*/
|
|
5420
5420
|
'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>;
|
|
@@ -5528,6 +5528,11 @@ interface Rules {
|
|
|
5528
5528
|
* @see https://eslint.vuejs.org/rules/require-valid-default-prop.html
|
|
5529
5529
|
*/
|
|
5530
5530
|
'vue/require-valid-default-prop'?: Linter.RuleEntry<[]>;
|
|
5531
|
+
/**
|
|
5532
|
+
* enforce using only specific component names
|
|
5533
|
+
* @see https://eslint.vuejs.org/rules/restricted-component-names.html
|
|
5534
|
+
*/
|
|
5535
|
+
'vue/restricted-component-names'?: Linter.RuleEntry<VueRestrictedComponentNames>;
|
|
5531
5536
|
/**
|
|
5532
5537
|
* enforce that a return statement is present in computed property
|
|
5533
5538
|
* @see https://eslint.vuejs.org/rules/return-in-computed-property.html
|
|
@@ -5554,6 +5559,11 @@ interface Rules {
|
|
|
5554
5559
|
* @see https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html
|
|
5555
5560
|
*/
|
|
5556
5561
|
'vue/singleline-html-element-content-newline'?: Linter.RuleEntry<VueSinglelineHtmlElementContentNewline>;
|
|
5562
|
+
/**
|
|
5563
|
+
* enforce specific casing for slot names
|
|
5564
|
+
* @see https://eslint.vuejs.org/rules/slot-name-casing.html
|
|
5565
|
+
*/
|
|
5566
|
+
'vue/slot-name-casing'?: Linter.RuleEntry<VueSlotNameCasing>;
|
|
5557
5567
|
/**
|
|
5558
5568
|
* enforce sort-keys in a manner that is compatible with order-in-components
|
|
5559
5569
|
* @see https://eslint.vuejs.org/rules/sort-keys.html
|
|
@@ -5978,7 +5988,7 @@ type TypescriptEslintConsistentTypeAssertions = [] | [
|
|
|
5978
5988
|
({
|
|
5979
5989
|
assertionStyle: "never";
|
|
5980
5990
|
} | {
|
|
5981
|
-
assertionStyle
|
|
5991
|
+
assertionStyle?: ("as" | "angle-bracket");
|
|
5982
5992
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never");
|
|
5983
5993
|
})
|
|
5984
5994
|
];
|
|
@@ -6764,6 +6774,8 @@ type TypescriptEslintPreferOptionalChain = [] | [
|
|
|
6764
6774
|
type TypescriptEslintPreferPromiseRejectErrors = [] | [
|
|
6765
6775
|
{
|
|
6766
6776
|
allowEmptyReject?: boolean;
|
|
6777
|
+
allowThrowingAny?: boolean;
|
|
6778
|
+
allowThrowingUnknown?: boolean;
|
|
6767
6779
|
}
|
|
6768
6780
|
];
|
|
6769
6781
|
type TypescriptEslintPreferReadonly = [] | [
|
|
@@ -6869,6 +6881,7 @@ type TypescriptEslintSwitchExhaustivenessCheck = [] | [
|
|
|
6869
6881
|
{
|
|
6870
6882
|
allowDefaultCaseForExhaustiveSwitch?: boolean;
|
|
6871
6883
|
considerDefaultExhaustiveForUnions?: boolean;
|
|
6884
|
+
defaultCaseCommentPattern?: string;
|
|
6872
6885
|
requireDefaultForNonUnion?: boolean;
|
|
6873
6886
|
}
|
|
6874
6887
|
];
|
|
@@ -7634,6 +7647,7 @@ type JsdocInformativeDocs = [] | [
|
|
|
7634
7647
|
];
|
|
7635
7648
|
type JsdocLinesBeforeBlock = [] | [
|
|
7636
7649
|
{
|
|
7650
|
+
checkBlockStarts?: boolean;
|
|
7637
7651
|
excludedTags?: string[];
|
|
7638
7652
|
ignoreSameLine?: boolean;
|
|
7639
7653
|
lines?: number;
|
|
@@ -9345,6 +9359,9 @@ type NodeNoExtraneousImport = [] | [
|
|
|
9345
9359
|
})[]
|
|
9346
9360
|
]);
|
|
9347
9361
|
resolvePaths?: string[];
|
|
9362
|
+
resolverConfig?: {
|
|
9363
|
+
[k: string]: unknown | undefined;
|
|
9364
|
+
};
|
|
9348
9365
|
}
|
|
9349
9366
|
];
|
|
9350
9367
|
type NodeNoExtraneousRequire = [] | [
|
|
@@ -9365,6 +9382,9 @@ type NodeNoExtraneousRequire = [] | [
|
|
|
9365
9382
|
})[]
|
|
9366
9383
|
]);
|
|
9367
9384
|
resolvePaths?: string[];
|
|
9385
|
+
resolverConfig?: {
|
|
9386
|
+
[k: string]: unknown | undefined;
|
|
9387
|
+
};
|
|
9368
9388
|
tryExtensions?: string[];
|
|
9369
9389
|
}
|
|
9370
9390
|
];
|
|
@@ -9379,6 +9399,9 @@ type NodeNoMissingImport = [] | [
|
|
|
9379
9399
|
{
|
|
9380
9400
|
allowModules?: string[];
|
|
9381
9401
|
resolvePaths?: string[];
|
|
9402
|
+
resolverConfig?: {
|
|
9403
|
+
[k: string]: unknown | undefined;
|
|
9404
|
+
};
|
|
9382
9405
|
tryExtensions?: string[];
|
|
9383
9406
|
ignoreTypeImport?: boolean;
|
|
9384
9407
|
tsconfigPath?: string;
|
|
@@ -9390,6 +9413,9 @@ type NodeNoMissingRequire = [] | [
|
|
|
9390
9413
|
allowModules?: string[];
|
|
9391
9414
|
tryExtensions?: string[];
|
|
9392
9415
|
resolvePaths?: string[];
|
|
9416
|
+
resolverConfig?: {
|
|
9417
|
+
[k: string]: unknown | undefined;
|
|
9418
|
+
};
|
|
9393
9419
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"));
|
|
9394
9420
|
tsconfigPath?: string;
|
|
9395
9421
|
}
|
|
@@ -9460,6 +9486,9 @@ type NodeNoUnpublishedImport = [] | [
|
|
|
9460
9486
|
})[]
|
|
9461
9487
|
]);
|
|
9462
9488
|
resolvePaths?: string[];
|
|
9489
|
+
resolverConfig?: {
|
|
9490
|
+
[k: string]: unknown | undefined;
|
|
9491
|
+
};
|
|
9463
9492
|
ignoreTypeImport?: boolean;
|
|
9464
9493
|
ignorePrivate?: boolean;
|
|
9465
9494
|
}
|
|
@@ -9482,6 +9511,9 @@ type NodeNoUnpublishedRequire = [] | [
|
|
|
9482
9511
|
})[]
|
|
9483
9512
|
]);
|
|
9484
9513
|
resolvePaths?: string[];
|
|
9514
|
+
resolverConfig?: {
|
|
9515
|
+
[k: string]: unknown | undefined;
|
|
9516
|
+
};
|
|
9485
9517
|
tryExtensions?: string[];
|
|
9486
9518
|
ignorePrivate?: boolean;
|
|
9487
9519
|
}
|
|
@@ -9502,7 +9534,7 @@ type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [
|
|
|
9502
9534
|
{
|
|
9503
9535
|
version?: string;
|
|
9504
9536
|
allowExperimental?: boolean;
|
|
9505
|
-
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.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" | "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")[];
|
|
9537
|
+
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")[];
|
|
9506
9538
|
}
|
|
9507
9539
|
];
|
|
9508
9540
|
type NodePreferGlobalBuffer = [] | [("always" | "never")];
|
|
@@ -9651,28 +9683,62 @@ type PaddingLineBetweenStatements = {
|
|
|
9651
9683
|
prev: _PaddingLineBetweenStatementsStatementType;
|
|
9652
9684
|
next: _PaddingLineBetweenStatementsStatementType;
|
|
9653
9685
|
}[];
|
|
9654
|
-
type PerfectionistSortArrayIncludes =
|
|
9655
|
-
{
|
|
9656
|
-
|
|
9657
|
-
|
|
9658
|
-
|
|
9659
|
-
|
|
9660
|
-
|
|
9661
|
-
|
|
9662
|
-
|
|
9663
|
-
type?: ("alphabetical" | "natural" | "
|
|
9664
|
-
|
|
9665
|
-
|
|
9686
|
+
type PerfectionistSortArrayIncludes = {
|
|
9687
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9688
|
+
block?: (string[] | boolean | string);
|
|
9689
|
+
line?: (string[] | boolean | string);
|
|
9690
|
+
[k: string]: unknown | undefined;
|
|
9691
|
+
});
|
|
9692
|
+
groupKind?: ("mixed" | "literals-first" | "spreads-first");
|
|
9693
|
+
customGroups?: ({
|
|
9694
|
+
groupName?: string;
|
|
9695
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
9696
|
+
order?: ("desc" | "asc");
|
|
9697
|
+
newlinesInside?: ("always" | "never");
|
|
9698
|
+
anyOf?: {
|
|
9699
|
+
selector?: ("literal" | "spread");
|
|
9700
|
+
elementNamePattern?: string;
|
|
9701
|
+
}[];
|
|
9702
|
+
} | {
|
|
9703
|
+
groupName?: string;
|
|
9704
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
9705
|
+
order?: ("desc" | "asc");
|
|
9706
|
+
newlinesInside?: ("always" | "never");
|
|
9707
|
+
selector?: ("literal" | "spread");
|
|
9708
|
+
elementNamePattern?: string;
|
|
9709
|
+
})[];
|
|
9710
|
+
useConfigurationIf?: {
|
|
9711
|
+
allNamesMatchPattern?: string;
|
|
9712
|
+
};
|
|
9713
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
9714
|
+
partitionByNewLine?: boolean;
|
|
9715
|
+
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9716
|
+
ignoreCase?: boolean;
|
|
9717
|
+
alphabet?: string;
|
|
9718
|
+
locales?: (string | string[]);
|
|
9719
|
+
groups?: (string | string[] | {
|
|
9720
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9721
|
+
[k: string]: unknown | undefined;
|
|
9722
|
+
})[];
|
|
9723
|
+
order?: ("asc" | "desc");
|
|
9724
|
+
}[];
|
|
9666
9725
|
type PerfectionistSortClasses = [] | [
|
|
9667
9726
|
{
|
|
9727
|
+
ignoreCallbackDependenciesPatterns?: string[];
|
|
9728
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9729
|
+
block?: (string[] | boolean | string);
|
|
9730
|
+
line?: (string[] | boolean | string);
|
|
9731
|
+
[k: string]: unknown | undefined;
|
|
9732
|
+
});
|
|
9668
9733
|
customGroups?: ({
|
|
9669
9734
|
groupName?: string;
|
|
9670
9735
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
9671
9736
|
order?: ("desc" | "asc");
|
|
9737
|
+
newlinesInside?: ("always" | "never");
|
|
9672
9738
|
anyOf?: {
|
|
9673
|
-
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[];
|
|
9674
9739
|
elementValuePattern?: string;
|
|
9675
9740
|
decoratorNamePattern?: string;
|
|
9741
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[];
|
|
9676
9742
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method");
|
|
9677
9743
|
elementNamePattern?: string;
|
|
9678
9744
|
}[];
|
|
@@ -9680,27 +9746,34 @@ type PerfectionistSortClasses = [] | [
|
|
|
9680
9746
|
groupName?: string;
|
|
9681
9747
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
9682
9748
|
order?: ("desc" | "asc");
|
|
9683
|
-
|
|
9749
|
+
newlinesInside?: ("always" | "never");
|
|
9684
9750
|
elementValuePattern?: string;
|
|
9685
9751
|
decoratorNamePattern?: string;
|
|
9752
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[];
|
|
9686
9753
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method");
|
|
9687
9754
|
elementNamePattern?: string;
|
|
9688
9755
|
})[];
|
|
9689
|
-
ignoreCallbackDependenciesPatterns?: string[];
|
|
9690
|
-
partitionByComment?: (string[] | boolean | string);
|
|
9691
9756
|
partitionByNewLine?: boolean;
|
|
9692
9757
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9693
9758
|
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9694
9759
|
ignoreCase?: boolean;
|
|
9760
|
+
alphabet?: string;
|
|
9761
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9695
9762
|
locales?: (string | string[]);
|
|
9696
|
-
groups?: (string | string[]
|
|
9763
|
+
groups?: (string | string[] | {
|
|
9764
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9765
|
+
[k: string]: unknown | undefined;
|
|
9766
|
+
})[];
|
|
9697
9767
|
order?: ("asc" | "desc");
|
|
9698
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9699
9768
|
}
|
|
9700
9769
|
];
|
|
9701
9770
|
type PerfectionistSortDecorators = [] | [
|
|
9702
9771
|
{
|
|
9703
|
-
partitionByComment?: (string[] | boolean | string
|
|
9772
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9773
|
+
block?: (string[] | boolean | string);
|
|
9774
|
+
line?: (string[] | boolean | string);
|
|
9775
|
+
[k: string]: unknown | undefined;
|
|
9776
|
+
});
|
|
9704
9777
|
sortOnParameters?: boolean;
|
|
9705
9778
|
sortOnProperties?: boolean;
|
|
9706
9779
|
sortOnAccessors?: boolean;
|
|
@@ -9711,35 +9784,49 @@ type PerfectionistSortDecorators = [] | [
|
|
|
9711
9784
|
[k: string]: (string | string[]) | undefined;
|
|
9712
9785
|
};
|
|
9713
9786
|
ignoreCase?: boolean;
|
|
9787
|
+
alphabet?: string;
|
|
9788
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9714
9789
|
locales?: (string | string[]);
|
|
9715
|
-
groups?: (string | string[]
|
|
9790
|
+
groups?: (string | string[] | {
|
|
9791
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9792
|
+
[k: string]: unknown | undefined;
|
|
9793
|
+
})[];
|
|
9716
9794
|
order?: ("asc" | "desc");
|
|
9717
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9718
9795
|
}
|
|
9719
9796
|
];
|
|
9720
9797
|
type PerfectionistSortEnums = [] | [
|
|
9721
9798
|
{
|
|
9722
|
-
partitionByComment?: (string[] | boolean | string
|
|
9799
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9800
|
+
block?: (string[] | boolean | string);
|
|
9801
|
+
line?: (string[] | boolean | string);
|
|
9802
|
+
[k: string]: unknown | undefined;
|
|
9803
|
+
});
|
|
9723
9804
|
forceNumericSort?: boolean;
|
|
9724
9805
|
sortByValue?: boolean;
|
|
9725
9806
|
partitionByNewLine?: boolean;
|
|
9726
9807
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9727
9808
|
ignoreCase?: boolean;
|
|
9809
|
+
alphabet?: string;
|
|
9810
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9728
9811
|
locales?: (string | string[]);
|
|
9729
9812
|
order?: ("asc" | "desc");
|
|
9730
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9731
9813
|
}
|
|
9732
9814
|
];
|
|
9733
9815
|
type PerfectionistSortExports = [] | [
|
|
9734
9816
|
{
|
|
9735
|
-
partitionByComment?: (string[] | boolean | string
|
|
9817
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9818
|
+
block?: (string[] | boolean | string);
|
|
9819
|
+
line?: (string[] | boolean | string);
|
|
9820
|
+
[k: string]: unknown | undefined;
|
|
9821
|
+
});
|
|
9736
9822
|
groupKind?: ("mixed" | "values-first" | "types-first");
|
|
9737
9823
|
partitionByNewLine?: boolean;
|
|
9738
9824
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9739
9825
|
ignoreCase?: boolean;
|
|
9826
|
+
alphabet?: string;
|
|
9827
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9740
9828
|
locales?: (string | string[]);
|
|
9741
9829
|
order?: ("asc" | "desc");
|
|
9742
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9743
9830
|
}
|
|
9744
9831
|
];
|
|
9745
9832
|
type PerfectionistSortHeritageClauses = [] | [
|
|
@@ -9749,10 +9836,14 @@ type PerfectionistSortHeritageClauses = [] | [
|
|
|
9749
9836
|
[k: string]: (string | string[]) | undefined;
|
|
9750
9837
|
};
|
|
9751
9838
|
ignoreCase?: boolean;
|
|
9839
|
+
alphabet?: string;
|
|
9840
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9752
9841
|
locales?: (string | string[]);
|
|
9753
|
-
groups?: (string | string[]
|
|
9842
|
+
groups?: (string | string[] | {
|
|
9843
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9844
|
+
[k: string]: unknown | undefined;
|
|
9845
|
+
})[];
|
|
9754
9846
|
order?: ("asc" | "desc");
|
|
9755
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9756
9847
|
}
|
|
9757
9848
|
];
|
|
9758
9849
|
type PerfectionistSortImports = [] | [_PerfectionistSortImportsSortImports];
|
|
@@ -9765,7 +9856,11 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9765
9856
|
[k: string]: unknown | undefined;
|
|
9766
9857
|
};
|
|
9767
9858
|
};
|
|
9768
|
-
partitionByComment?: (string[] | boolean | string
|
|
9859
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9860
|
+
block?: (string[] | boolean | string);
|
|
9861
|
+
line?: (string[] | boolean | string);
|
|
9862
|
+
[k: string]: unknown | undefined;
|
|
9863
|
+
});
|
|
9769
9864
|
internalPattern?: string[];
|
|
9770
9865
|
maxLineLength?: number;
|
|
9771
9866
|
sortSideEffects?: boolean;
|
|
@@ -9775,10 +9870,14 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9775
9870
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9776
9871
|
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9777
9872
|
ignoreCase?: boolean;
|
|
9873
|
+
alphabet?: string;
|
|
9874
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9778
9875
|
locales?: (string | string[]);
|
|
9779
|
-
groups?: (string | string[]
|
|
9876
|
+
groups?: (string | string[] | {
|
|
9877
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9878
|
+
[k: string]: unknown | undefined;
|
|
9879
|
+
})[];
|
|
9780
9880
|
order?: ("asc" | "desc");
|
|
9781
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9782
9881
|
});
|
|
9783
9882
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
9784
9883
|
[k: string]: unknown | undefined;
|
|
@@ -9787,35 +9886,71 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
9787
9886
|
type: "line-length";
|
|
9788
9887
|
[k: string]: unknown | undefined;
|
|
9789
9888
|
}
|
|
9790
|
-
type PerfectionistSortInterfaces =
|
|
9791
|
-
|
|
9792
|
-
|
|
9793
|
-
|
|
9794
|
-
|
|
9795
|
-
|
|
9796
|
-
|
|
9889
|
+
type PerfectionistSortInterfaces = {
|
|
9890
|
+
ignorePattern?: string[];
|
|
9891
|
+
useConfigurationIf?: {
|
|
9892
|
+
allNamesMatchPattern?: string;
|
|
9893
|
+
declarationMatchesPattern?: string;
|
|
9894
|
+
};
|
|
9895
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9896
|
+
block?: (string[] | boolean | string);
|
|
9897
|
+
line?: (string[] | boolean | string);
|
|
9898
|
+
[k: string]: unknown | undefined;
|
|
9899
|
+
});
|
|
9900
|
+
customGroups?: ({
|
|
9901
|
+
[k: string]: (string | string[]) | undefined;
|
|
9902
|
+
} | ({
|
|
9903
|
+
groupName?: string;
|
|
9904
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
9905
|
+
order?: ("desc" | "asc");
|
|
9906
|
+
newlinesInside?: ("always" | "never");
|
|
9907
|
+
anyOf?: {
|
|
9908
|
+
modifiers?: ("optional" | "required" | "multiline")[];
|
|
9909
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property");
|
|
9910
|
+
elementNamePattern?: string;
|
|
9911
|
+
}[];
|
|
9912
|
+
} | {
|
|
9913
|
+
groupName?: string;
|
|
9914
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
9915
|
+
order?: ("desc" | "asc");
|
|
9916
|
+
newlinesInside?: ("always" | "never");
|
|
9917
|
+
modifiers?: ("optional" | "required" | "multiline")[];
|
|
9918
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property");
|
|
9919
|
+
elementNamePattern?: string;
|
|
9920
|
+
})[]);
|
|
9921
|
+
groupKind?: ("mixed" | "required-first" | "optional-first");
|
|
9922
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
9923
|
+
partitionByNewLine?: boolean;
|
|
9924
|
+
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9925
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9926
|
+
ignoreCase?: boolean;
|
|
9927
|
+
alphabet?: string;
|
|
9928
|
+
locales?: (string | string[]);
|
|
9929
|
+
groups?: (string | string[] | {
|
|
9797
9930
|
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9798
|
-
|
|
9799
|
-
|
|
9800
|
-
|
|
9801
|
-
|
|
9802
|
-
locales?: (string | string[]);
|
|
9803
|
-
groups?: (string | string[])[];
|
|
9804
|
-
order?: ("asc" | "desc");
|
|
9805
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9806
|
-
}
|
|
9807
|
-
];
|
|
9931
|
+
[k: string]: unknown | undefined;
|
|
9932
|
+
})[];
|
|
9933
|
+
order?: ("asc" | "desc");
|
|
9934
|
+
}[];
|
|
9808
9935
|
type PerfectionistSortIntersectionTypes = [] | [
|
|
9809
9936
|
{
|
|
9810
|
-
partitionByComment?: (string[] | boolean | string
|
|
9937
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9938
|
+
block?: (string[] | boolean | string);
|
|
9939
|
+
line?: (string[] | boolean | string);
|
|
9940
|
+
[k: string]: unknown | undefined;
|
|
9941
|
+
});
|
|
9811
9942
|
partitionByNewLine?: boolean;
|
|
9812
9943
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9813
9944
|
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9814
9945
|
ignoreCase?: boolean;
|
|
9946
|
+
alphabet?: string;
|
|
9947
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9815
9948
|
locales?: (string | string[]);
|
|
9816
|
-
groups?: (string | string[]
|
|
9949
|
+
groups?: (string | string[] | {
|
|
9950
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9951
|
+
[k: string]: unknown | undefined;
|
|
9952
|
+
})[];
|
|
9817
9953
|
order?: ("asc" | "desc");
|
|
9818
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9819
9954
|
}
|
|
9820
9955
|
];
|
|
9821
9956
|
type PerfectionistSortJsxProps = [] | [
|
|
@@ -9826,33 +9961,47 @@ type PerfectionistSortJsxProps = [] | [
|
|
|
9826
9961
|
[k: string]: (string | string[]) | undefined;
|
|
9827
9962
|
};
|
|
9828
9963
|
ignoreCase?: boolean;
|
|
9964
|
+
alphabet?: string;
|
|
9965
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9829
9966
|
locales?: (string | string[]);
|
|
9830
|
-
groups?: (string | string[]
|
|
9967
|
+
groups?: (string | string[] | {
|
|
9968
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9969
|
+
[k: string]: unknown | undefined;
|
|
9970
|
+
})[];
|
|
9831
9971
|
order?: ("asc" | "desc");
|
|
9832
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9833
9972
|
}
|
|
9834
9973
|
];
|
|
9835
9974
|
type PerfectionistSortMaps = [] | [
|
|
9836
9975
|
{
|
|
9837
|
-
partitionByComment?: (string[] | boolean | string
|
|
9976
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9977
|
+
block?: (string[] | boolean | string);
|
|
9978
|
+
line?: (string[] | boolean | string);
|
|
9979
|
+
[k: string]: unknown | undefined;
|
|
9980
|
+
});
|
|
9838
9981
|
partitionByNewLine?: boolean;
|
|
9839
9982
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9840
9983
|
ignoreCase?: boolean;
|
|
9984
|
+
alphabet?: string;
|
|
9985
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9841
9986
|
locales?: (string | string[]);
|
|
9842
9987
|
order?: ("asc" | "desc");
|
|
9843
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9844
9988
|
}
|
|
9845
9989
|
];
|
|
9846
9990
|
type PerfectionistSortModules = [] | [
|
|
9847
9991
|
{
|
|
9992
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9993
|
+
block?: (string[] | boolean | string);
|
|
9994
|
+
line?: (string[] | boolean | string);
|
|
9995
|
+
[k: string]: unknown | undefined;
|
|
9996
|
+
});
|
|
9848
9997
|
customGroups?: ({
|
|
9849
9998
|
groupName?: string;
|
|
9850
9999
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
9851
10000
|
order?: ("desc" | "asc");
|
|
10001
|
+
newlinesInside?: ("always" | "never");
|
|
9852
10002
|
anyOf?: {
|
|
9853
|
-
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[];
|
|
9854
|
-
elementValuePattern?: string;
|
|
9855
10003
|
decoratorNamePattern?: string;
|
|
10004
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[];
|
|
9856
10005
|
selector?: ("enum" | "function" | "interface" | "type" | "class");
|
|
9857
10006
|
elementNamePattern?: string;
|
|
9858
10007
|
}[];
|
|
@@ -9860,127 +10009,224 @@ type PerfectionistSortModules = [] | [
|
|
|
9860
10009
|
groupName?: string;
|
|
9861
10010
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
9862
10011
|
order?: ("desc" | "asc");
|
|
9863
|
-
|
|
9864
|
-
elementValuePattern?: string;
|
|
10012
|
+
newlinesInside?: ("always" | "never");
|
|
9865
10013
|
decoratorNamePattern?: string;
|
|
10014
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[];
|
|
9866
10015
|
selector?: ("enum" | "function" | "interface" | "type" | "class");
|
|
9867
10016
|
elementNamePattern?: string;
|
|
9868
10017
|
})[];
|
|
9869
|
-
partitionByComment?: (string[] | boolean | string);
|
|
9870
10018
|
partitionByNewLine?: boolean;
|
|
9871
10019
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9872
10020
|
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9873
10021
|
ignoreCase?: boolean;
|
|
10022
|
+
alphabet?: string;
|
|
10023
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9874
10024
|
locales?: (string | string[]);
|
|
9875
|
-
groups?: (string | string[]
|
|
10025
|
+
groups?: (string | string[] | {
|
|
10026
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
10027
|
+
[k: string]: unknown | undefined;
|
|
10028
|
+
})[];
|
|
9876
10029
|
order?: ("asc" | "desc");
|
|
9877
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9878
10030
|
}
|
|
9879
10031
|
];
|
|
9880
10032
|
type PerfectionistSortNamedExports = [] | [
|
|
9881
10033
|
{
|
|
9882
|
-
partitionByComment?: (string[] | boolean | string
|
|
10034
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10035
|
+
block?: (string[] | boolean | string);
|
|
10036
|
+
line?: (string[] | boolean | string);
|
|
10037
|
+
[k: string]: unknown | undefined;
|
|
10038
|
+
});
|
|
9883
10039
|
groupKind?: ("mixed" | "values-first" | "types-first");
|
|
9884
10040
|
partitionByNewLine?: boolean;
|
|
9885
10041
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9886
10042
|
ignoreCase?: boolean;
|
|
10043
|
+
alphabet?: string;
|
|
10044
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9887
10045
|
locales?: (string | string[]);
|
|
9888
10046
|
order?: ("asc" | "desc");
|
|
9889
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9890
10047
|
}
|
|
9891
10048
|
];
|
|
9892
10049
|
type PerfectionistSortNamedImports = [] | [
|
|
9893
10050
|
{
|
|
9894
|
-
partitionByComment?: (string[] | boolean | string
|
|
10051
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10052
|
+
block?: (string[] | boolean | string);
|
|
10053
|
+
line?: (string[] | boolean | string);
|
|
10054
|
+
[k: string]: unknown | undefined;
|
|
10055
|
+
});
|
|
9895
10056
|
groupKind?: ("mixed" | "values-first" | "types-first");
|
|
9896
10057
|
ignoreAlias?: boolean;
|
|
9897
10058
|
partitionByNewLine?: boolean;
|
|
9898
10059
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9899
10060
|
ignoreCase?: boolean;
|
|
10061
|
+
alphabet?: string;
|
|
10062
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9900
10063
|
locales?: (string | string[]);
|
|
9901
10064
|
order?: ("asc" | "desc");
|
|
9902
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9903
10065
|
}
|
|
9904
10066
|
];
|
|
9905
|
-
type PerfectionistSortObjectTypes =
|
|
9906
|
-
|
|
9907
|
-
|
|
9908
|
-
|
|
9909
|
-
|
|
9910
|
-
|
|
10067
|
+
type PerfectionistSortObjectTypes = {
|
|
10068
|
+
ignorePattern?: string[];
|
|
10069
|
+
useConfigurationIf?: {
|
|
10070
|
+
allNamesMatchPattern?: string;
|
|
10071
|
+
declarationMatchesPattern?: string;
|
|
10072
|
+
};
|
|
10073
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10074
|
+
block?: (string[] | boolean | string);
|
|
10075
|
+
line?: (string[] | boolean | string);
|
|
10076
|
+
[k: string]: unknown | undefined;
|
|
10077
|
+
});
|
|
10078
|
+
customGroups?: ({
|
|
10079
|
+
[k: string]: (string | string[]) | undefined;
|
|
10080
|
+
} | ({
|
|
10081
|
+
groupName?: string;
|
|
10082
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
10083
|
+
order?: ("desc" | "asc");
|
|
10084
|
+
newlinesInside?: ("always" | "never");
|
|
10085
|
+
anyOf?: {
|
|
10086
|
+
modifiers?: ("optional" | "required" | "multiline")[];
|
|
10087
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property");
|
|
10088
|
+
elementNamePattern?: string;
|
|
10089
|
+
}[];
|
|
10090
|
+
} | {
|
|
10091
|
+
groupName?: string;
|
|
10092
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
10093
|
+
order?: ("desc" | "asc");
|
|
10094
|
+
newlinesInside?: ("always" | "never");
|
|
10095
|
+
modifiers?: ("optional" | "required" | "multiline")[];
|
|
10096
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property");
|
|
10097
|
+
elementNamePattern?: string;
|
|
10098
|
+
})[]);
|
|
10099
|
+
groupKind?: ("mixed" | "required-first" | "optional-first");
|
|
10100
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10101
|
+
partitionByNewLine?: boolean;
|
|
10102
|
+
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10103
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
10104
|
+
ignoreCase?: boolean;
|
|
10105
|
+
alphabet?: string;
|
|
10106
|
+
locales?: (string | string[]);
|
|
10107
|
+
groups?: (string | string[] | {
|
|
9911
10108
|
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9912
|
-
|
|
9913
|
-
|
|
9914
|
-
|
|
9915
|
-
|
|
9916
|
-
|
|
9917
|
-
|
|
9918
|
-
|
|
9919
|
-
|
|
9920
|
-
|
|
9921
|
-
|
|
9922
|
-
|
|
9923
|
-
|
|
9924
|
-
|
|
9925
|
-
|
|
9926
|
-
|
|
9927
|
-
|
|
9928
|
-
|
|
9929
|
-
|
|
10109
|
+
[k: string]: unknown | undefined;
|
|
10110
|
+
})[];
|
|
10111
|
+
order?: ("asc" | "desc");
|
|
10112
|
+
}[];
|
|
10113
|
+
type PerfectionistSortObjects = {
|
|
10114
|
+
destructuredObjects?: (boolean | {
|
|
10115
|
+
groups?: boolean;
|
|
10116
|
+
});
|
|
10117
|
+
ignorePattern?: string[];
|
|
10118
|
+
useConfigurationIf?: {
|
|
10119
|
+
allNamesMatchPattern?: string;
|
|
10120
|
+
callingFunctionNamePattern?: string;
|
|
10121
|
+
};
|
|
10122
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10123
|
+
block?: (string[] | boolean | string);
|
|
10124
|
+
line?: (string[] | boolean | string);
|
|
10125
|
+
[k: string]: unknown | undefined;
|
|
10126
|
+
});
|
|
10127
|
+
destructureOnly?: boolean;
|
|
10128
|
+
objectDeclarations?: boolean;
|
|
10129
|
+
styledComponents?: boolean;
|
|
10130
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10131
|
+
partitionByNewLine?: boolean;
|
|
10132
|
+
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10133
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
10134
|
+
customGroups?: {
|
|
10135
|
+
[k: string]: (string | string[]) | undefined;
|
|
10136
|
+
};
|
|
10137
|
+
ignoreCase?: boolean;
|
|
10138
|
+
alphabet?: string;
|
|
10139
|
+
locales?: (string | string[]);
|
|
10140
|
+
groups?: (string | string[] | {
|
|
9930
10141
|
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9931
|
-
|
|
9932
|
-
|
|
9933
|
-
|
|
9934
|
-
|
|
9935
|
-
|
|
9936
|
-
|
|
9937
|
-
|
|
9938
|
-
|
|
9939
|
-
|
|
9940
|
-
|
|
9941
|
-
|
|
9942
|
-
{
|
|
9943
|
-
|
|
9944
|
-
|
|
9945
|
-
|
|
9946
|
-
|
|
9947
|
-
|
|
9948
|
-
|
|
9949
|
-
|
|
9950
|
-
|
|
9951
|
-
}
|
|
9952
|
-
|
|
10142
|
+
[k: string]: unknown | undefined;
|
|
10143
|
+
})[];
|
|
10144
|
+
order?: ("asc" | "desc");
|
|
10145
|
+
}[];
|
|
10146
|
+
type PerfectionistSortSets = {
|
|
10147
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10148
|
+
block?: (string[] | boolean | string);
|
|
10149
|
+
line?: (string[] | boolean | string);
|
|
10150
|
+
[k: string]: unknown | undefined;
|
|
10151
|
+
});
|
|
10152
|
+
groupKind?: ("mixed" | "literals-first" | "spreads-first");
|
|
10153
|
+
customGroups?: ({
|
|
10154
|
+
groupName?: string;
|
|
10155
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
10156
|
+
order?: ("desc" | "asc");
|
|
10157
|
+
newlinesInside?: ("always" | "never");
|
|
10158
|
+
anyOf?: {
|
|
10159
|
+
selector?: ("literal" | "spread");
|
|
10160
|
+
elementNamePattern?: string;
|
|
10161
|
+
}[];
|
|
10162
|
+
} | {
|
|
10163
|
+
groupName?: string;
|
|
10164
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
|
|
10165
|
+
order?: ("desc" | "asc");
|
|
10166
|
+
newlinesInside?: ("always" | "never");
|
|
10167
|
+
selector?: ("literal" | "spread");
|
|
10168
|
+
elementNamePattern?: string;
|
|
10169
|
+
})[];
|
|
10170
|
+
useConfigurationIf?: {
|
|
10171
|
+
allNamesMatchPattern?: string;
|
|
10172
|
+
};
|
|
10173
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10174
|
+
partitionByNewLine?: boolean;
|
|
10175
|
+
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10176
|
+
ignoreCase?: boolean;
|
|
10177
|
+
alphabet?: string;
|
|
10178
|
+
locales?: (string | string[]);
|
|
10179
|
+
groups?: (string | string[] | {
|
|
10180
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
10181
|
+
[k: string]: unknown | undefined;
|
|
10182
|
+
})[];
|
|
10183
|
+
order?: ("asc" | "desc");
|
|
10184
|
+
}[];
|
|
9953
10185
|
type PerfectionistSortSwitchCase = [] | [
|
|
9954
10186
|
{
|
|
9955
10187
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9956
10188
|
ignoreCase?: boolean;
|
|
10189
|
+
alphabet?: string;
|
|
10190
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9957
10191
|
locales?: (string | string[]);
|
|
9958
10192
|
order?: ("asc" | "desc");
|
|
9959
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9960
10193
|
}
|
|
9961
10194
|
];
|
|
9962
10195
|
type PerfectionistSortUnionTypes = [] | [
|
|
9963
10196
|
{
|
|
9964
|
-
partitionByComment?: (string[] | boolean | string
|
|
10197
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10198
|
+
block?: (string[] | boolean | string);
|
|
10199
|
+
line?: (string[] | boolean | string);
|
|
10200
|
+
[k: string]: unknown | undefined;
|
|
10201
|
+
});
|
|
9965
10202
|
partitionByNewLine?: boolean;
|
|
9966
10203
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9967
10204
|
newlinesBetween?: ("ignore" | "always" | "never");
|
|
9968
10205
|
ignoreCase?: boolean;
|
|
10206
|
+
alphabet?: string;
|
|
10207
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9969
10208
|
locales?: (string | string[]);
|
|
9970
|
-
groups?: (string | string[]
|
|
10209
|
+
groups?: (string | string[] | {
|
|
10210
|
+
newlinesBetween?: ("ignore" | "always" | "never");
|
|
10211
|
+
[k: string]: unknown | undefined;
|
|
10212
|
+
})[];
|
|
9971
10213
|
order?: ("asc" | "desc");
|
|
9972
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9973
10214
|
}
|
|
9974
10215
|
];
|
|
9975
10216
|
type PerfectionistSortVariableDeclarations = [] | [
|
|
9976
10217
|
{
|
|
9977
|
-
partitionByComment?: (string[] | boolean | string
|
|
10218
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10219
|
+
block?: (string[] | boolean | string);
|
|
10220
|
+
line?: (string[] | boolean | string);
|
|
10221
|
+
[k: string]: unknown | undefined;
|
|
10222
|
+
});
|
|
9978
10223
|
partitionByNewLine?: boolean;
|
|
9979
10224
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9980
10225
|
ignoreCase?: boolean;
|
|
10226
|
+
alphabet?: string;
|
|
10227
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom");
|
|
9981
10228
|
locales?: (string | string[]);
|
|
9982
10229
|
order?: ("asc" | "desc");
|
|
9983
|
-
type?: ("alphabetical" | "natural" | "line-length");
|
|
9984
10230
|
}
|
|
9985
10231
|
];
|
|
9986
10232
|
type PreferArrowCallback = [] | [
|
|
@@ -10259,6 +10505,7 @@ type SortKeys = [] | [("asc" | "desc")] | [
|
|
|
10259
10505
|
natural?: boolean;
|
|
10260
10506
|
minKeys?: number;
|
|
10261
10507
|
allowLineSeparatedGroups?: boolean;
|
|
10508
|
+
ignoreComputedKeys?: boolean;
|
|
10262
10509
|
}
|
|
10263
10510
|
];
|
|
10264
10511
|
type SortVars = [] | [
|
|
@@ -10630,6 +10877,7 @@ type VueAttributeHyphenation = [] | [("always" | "never")] | [
|
|
|
10630
10877
|
} & {
|
|
10631
10878
|
[k: string]: unknown | undefined;
|
|
10632
10879
|
})[];
|
|
10880
|
+
ignoreTags?: string[];
|
|
10633
10881
|
}
|
|
10634
10882
|
];
|
|
10635
10883
|
type VueAttributesOrder = [] | [
|
|
@@ -11377,6 +11625,11 @@ type VueNoDupeKeys = [] | [
|
|
|
11377
11625
|
groups?: unknown[];
|
|
11378
11626
|
}
|
|
11379
11627
|
];
|
|
11628
|
+
type VueNoDuplicateAttrInheritance = [] | [
|
|
11629
|
+
{
|
|
11630
|
+
checkMultiRootNodes?: boolean;
|
|
11631
|
+
}
|
|
11632
|
+
];
|
|
11380
11633
|
type VueNoDuplicateAttributes = [] | [
|
|
11381
11634
|
{
|
|
11382
11635
|
allowCoexistClass?: boolean;
|
|
@@ -11623,6 +11876,7 @@ type VueNoUselessVBind = [] | [
|
|
|
11623
11876
|
type VueNoVTextVHtmlOnComponent = [] | [
|
|
11624
11877
|
{
|
|
11625
11878
|
allow?: string[];
|
|
11879
|
+
ignoreElementNamespaces?: boolean;
|
|
11626
11880
|
}
|
|
11627
11881
|
];
|
|
11628
11882
|
type VueObjectCurlyNewline = [] | [
|
|
@@ -11752,6 +12006,11 @@ type VueRequireToggleInsideTransition = [] | [
|
|
|
11752
12006
|
additionalDirectives?: string[];
|
|
11753
12007
|
}
|
|
11754
12008
|
];
|
|
12009
|
+
type VueRestrictedComponentNames = [] | [
|
|
12010
|
+
{
|
|
12011
|
+
allow?: string[];
|
|
12012
|
+
}
|
|
12013
|
+
];
|
|
11755
12014
|
type VueReturnInComputedProperty = [] | [
|
|
11756
12015
|
{
|
|
11757
12016
|
treatUndefinedAsUnspecified?: boolean;
|
|
@@ -11777,6 +12036,7 @@ type VueSinglelineHtmlElementContentNewline = [] | [
|
|
|
11777
12036
|
externalIgnores?: string[];
|
|
11778
12037
|
}
|
|
11779
12038
|
];
|
|
12039
|
+
type VueSlotNameCasing = [] | [("camelCase" | "kebab-case" | "singleword")];
|
|
11780
12040
|
type VueSortKeys = [] | [("asc" | "desc")] | [
|
|
11781
12041
|
("asc" | "desc"),
|
|
11782
12042
|
{
|
|
@@ -11826,6 +12086,7 @@ type VueVOnEventHyphenation = [] | [("always" | "never")] | [
|
|
|
11826
12086
|
} & {
|
|
11827
12087
|
[k: string]: unknown | undefined;
|
|
11828
12088
|
})[];
|
|
12089
|
+
ignoreTags?: string[];
|
|
11829
12090
|
}
|
|
11830
12091
|
];
|
|
11831
12092
|
type VueVOnFunctionCall = [] | [("always" | "never")] | [
|