@bfra.me/eslint-config 0.20.6 → 0.20.7
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/lib/index.d.ts +1380 -545
- package/lib/index.js +1 -1
- package/package.json +14 -14
- package/src/rules.d.ts +1377 -551
package/lib/index.d.ts
CHANGED
|
@@ -996,233 +996,233 @@ interface Rules {
|
|
|
996
996
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
997
997
|
/**
|
|
998
998
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
999
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
999
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/consistent-type-specifier-style.md
|
|
1000
1000
|
*/
|
|
1001
1001
|
'import-x/consistent-type-specifier-style'?: Linter.RuleEntry<ImportXConsistentTypeSpecifierStyle>
|
|
1002
1002
|
/**
|
|
1003
1003
|
* Ensure a default export is present, given a default import.
|
|
1004
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1004
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/default.md
|
|
1005
1005
|
*/
|
|
1006
1006
|
'import-x/default'?: Linter.RuleEntry<[]>
|
|
1007
1007
|
/**
|
|
1008
1008
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
1009
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1009
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/dynamic-import-chunkname.md
|
|
1010
1010
|
*/
|
|
1011
1011
|
'import-x/dynamic-import-chunkname'?: Linter.RuleEntry<ImportXDynamicImportChunkname>
|
|
1012
1012
|
/**
|
|
1013
1013
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
1014
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1014
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/export.md
|
|
1015
1015
|
*/
|
|
1016
1016
|
'import-x/export'?: Linter.RuleEntry<[]>
|
|
1017
1017
|
/**
|
|
1018
1018
|
* Ensure all exports appear after other statements.
|
|
1019
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1019
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/exports-last.md
|
|
1020
1020
|
*/
|
|
1021
1021
|
'import-x/exports-last'?: Linter.RuleEntry<[]>
|
|
1022
1022
|
/**
|
|
1023
1023
|
* Ensure consistent use of file extension within the import path.
|
|
1024
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1024
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/extensions.md
|
|
1025
1025
|
*/
|
|
1026
1026
|
'import-x/extensions'?: Linter.RuleEntry<ImportXExtensions>
|
|
1027
1027
|
/**
|
|
1028
1028
|
* Ensure all imports appear before other statements.
|
|
1029
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1029
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/first.md
|
|
1030
1030
|
*/
|
|
1031
1031
|
'import-x/first'?: Linter.RuleEntry<ImportXFirst>
|
|
1032
1032
|
/**
|
|
1033
1033
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
1034
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1034
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/group-exports.md
|
|
1035
1035
|
*/
|
|
1036
1036
|
'import-x/group-exports'?: Linter.RuleEntry<[]>
|
|
1037
1037
|
/**
|
|
1038
1038
|
* Replaced by `import-x/first`.
|
|
1039
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1039
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/imports-first.md
|
|
1040
1040
|
* @deprecated
|
|
1041
1041
|
*/
|
|
1042
1042
|
'import-x/imports-first'?: Linter.RuleEntry<ImportXImportsFirst>
|
|
1043
1043
|
/**
|
|
1044
1044
|
* Enforce the maximum number of dependencies a module can have.
|
|
1045
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1045
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/max-dependencies.md
|
|
1046
1046
|
*/
|
|
1047
1047
|
'import-x/max-dependencies'?: Linter.RuleEntry<ImportXMaxDependencies>
|
|
1048
1048
|
/**
|
|
1049
1049
|
* Ensure named imports correspond to a named export in the remote file.
|
|
1050
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1050
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/named.md
|
|
1051
1051
|
*/
|
|
1052
1052
|
'import-x/named'?: Linter.RuleEntry<ImportXNamed>
|
|
1053
1053
|
/**
|
|
1054
1054
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
1055
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1055
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/namespace.md
|
|
1056
1056
|
*/
|
|
1057
1057
|
'import-x/namespace'?: Linter.RuleEntry<ImportXNamespace>
|
|
1058
1058
|
/**
|
|
1059
1059
|
* Enforce a newline after import statements.
|
|
1060
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1060
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/newline-after-import.md
|
|
1061
1061
|
*/
|
|
1062
1062
|
'import-x/newline-after-import'?: Linter.RuleEntry<ImportXNewlineAfterImport>
|
|
1063
1063
|
/**
|
|
1064
1064
|
* Forbid import of modules using absolute paths.
|
|
1065
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1065
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-absolute-path.md
|
|
1066
1066
|
*/
|
|
1067
1067
|
'import-x/no-absolute-path'?: Linter.RuleEntry<ImportXNoAbsolutePath>
|
|
1068
1068
|
/**
|
|
1069
1069
|
* Forbid AMD `require` and `define` calls.
|
|
1070
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1070
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-amd.md
|
|
1071
1071
|
*/
|
|
1072
1072
|
'import-x/no-amd'?: Linter.RuleEntry<[]>
|
|
1073
1073
|
/**
|
|
1074
1074
|
* Forbid anonymous values as default exports.
|
|
1075
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1075
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-anonymous-default-export.md
|
|
1076
1076
|
*/
|
|
1077
1077
|
'import-x/no-anonymous-default-export'?: Linter.RuleEntry<ImportXNoAnonymousDefaultExport>
|
|
1078
1078
|
/**
|
|
1079
1079
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
1080
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1080
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-commonjs.md
|
|
1081
1081
|
*/
|
|
1082
1082
|
'import-x/no-commonjs'?: Linter.RuleEntry<ImportXNoCommonjs>
|
|
1083
1083
|
/**
|
|
1084
1084
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
1085
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1085
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-cycle.md
|
|
1086
1086
|
*/
|
|
1087
1087
|
'import-x/no-cycle'?: Linter.RuleEntry<ImportXNoCycle>
|
|
1088
1088
|
/**
|
|
1089
1089
|
* Forbid default exports.
|
|
1090
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1090
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-default-export.md
|
|
1091
1091
|
*/
|
|
1092
1092
|
'import-x/no-default-export'?: Linter.RuleEntry<[]>
|
|
1093
1093
|
/**
|
|
1094
1094
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
1095
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1095
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-deprecated.md
|
|
1096
1096
|
*/
|
|
1097
1097
|
'import-x/no-deprecated'?: Linter.RuleEntry<[]>
|
|
1098
1098
|
/**
|
|
1099
1099
|
* Forbid repeated import of the same module in multiple places.
|
|
1100
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1100
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-duplicates.md
|
|
1101
1101
|
*/
|
|
1102
1102
|
'import-x/no-duplicates'?: Linter.RuleEntry<ImportXNoDuplicates>
|
|
1103
1103
|
/**
|
|
1104
1104
|
* Forbid `require()` calls with expressions.
|
|
1105
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1105
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-dynamic-require.md
|
|
1106
1106
|
*/
|
|
1107
1107
|
'import-x/no-dynamic-require'?: Linter.RuleEntry<ImportXNoDynamicRequire>
|
|
1108
1108
|
/**
|
|
1109
1109
|
* Forbid empty named import blocks.
|
|
1110
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1110
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-empty-named-blocks.md
|
|
1111
1111
|
*/
|
|
1112
1112
|
'import-x/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
1113
1113
|
/**
|
|
1114
1114
|
* Forbid the use of extraneous packages.
|
|
1115
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1115
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-extraneous-dependencies.md
|
|
1116
1116
|
*/
|
|
1117
1117
|
'import-x/no-extraneous-dependencies'?: Linter.RuleEntry<ImportXNoExtraneousDependencies>
|
|
1118
1118
|
/**
|
|
1119
1119
|
* Forbid import statements with CommonJS module.exports.
|
|
1120
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1120
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-import-module-exports.md
|
|
1121
1121
|
*/
|
|
1122
1122
|
'import-x/no-import-module-exports'?: Linter.RuleEntry<ImportXNoImportModuleExports>
|
|
1123
1123
|
/**
|
|
1124
1124
|
* Forbid importing the submodules of other modules.
|
|
1125
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1125
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-internal-modules.md
|
|
1126
1126
|
*/
|
|
1127
1127
|
'import-x/no-internal-modules'?: Linter.RuleEntry<ImportXNoInternalModules>
|
|
1128
1128
|
/**
|
|
1129
1129
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
1130
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1130
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-mutable-exports.md
|
|
1131
1131
|
*/
|
|
1132
1132
|
'import-x/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
1133
1133
|
/**
|
|
1134
1134
|
* Forbid use of exported name as identifier of default export.
|
|
1135
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1135
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-as-default.md
|
|
1136
1136
|
*/
|
|
1137
1137
|
'import-x/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
1138
1138
|
/**
|
|
1139
1139
|
* Forbid use of exported name as property of default export.
|
|
1140
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1140
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-as-default-member.md
|
|
1141
1141
|
*/
|
|
1142
1142
|
'import-x/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
1143
1143
|
/**
|
|
1144
1144
|
* Forbid named default exports.
|
|
1145
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1145
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-default.md
|
|
1146
1146
|
*/
|
|
1147
1147
|
'import-x/no-named-default'?: Linter.RuleEntry<[]>
|
|
1148
1148
|
/**
|
|
1149
1149
|
* Forbid named exports.
|
|
1150
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1150
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-export.md
|
|
1151
1151
|
*/
|
|
1152
1152
|
'import-x/no-named-export'?: Linter.RuleEntry<[]>
|
|
1153
1153
|
/**
|
|
1154
1154
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
1155
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1155
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-namespace.md
|
|
1156
1156
|
*/
|
|
1157
1157
|
'import-x/no-namespace'?: Linter.RuleEntry<ImportXNoNamespace>
|
|
1158
1158
|
/**
|
|
1159
1159
|
* Forbid Node.js builtin modules.
|
|
1160
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1160
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-nodejs-modules.md
|
|
1161
1161
|
*/
|
|
1162
1162
|
'import-x/no-nodejs-modules'?: Linter.RuleEntry<ImportXNoNodejsModules>
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Forbid importing packages through relative paths.
|
|
1165
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1165
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-relative-packages.md
|
|
1166
1166
|
*/
|
|
1167
1167
|
'import-x/no-relative-packages'?: Linter.RuleEntry<ImportXNoRelativePackages>
|
|
1168
1168
|
/**
|
|
1169
1169
|
* Forbid importing modules from parent directories.
|
|
1170
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1170
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-relative-parent-imports.md
|
|
1171
1171
|
*/
|
|
1172
1172
|
'import-x/no-relative-parent-imports'?: Linter.RuleEntry<ImportXNoRelativeParentImports>
|
|
1173
1173
|
/**
|
|
1174
1174
|
* Forbid importing a default export by a different name.
|
|
1175
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1175
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-rename-default.md
|
|
1176
1176
|
*/
|
|
1177
1177
|
'import-x/no-rename-default'?: Linter.RuleEntry<ImportXNoRenameDefault>
|
|
1178
1178
|
/**
|
|
1179
1179
|
* Enforce which files can be imported in a given folder.
|
|
1180
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1180
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-restricted-paths.md
|
|
1181
1181
|
*/
|
|
1182
1182
|
'import-x/no-restricted-paths'?: Linter.RuleEntry<ImportXNoRestrictedPaths>
|
|
1183
1183
|
/**
|
|
1184
1184
|
* Forbid a module from importing itself.
|
|
1185
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1185
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-self-import.md
|
|
1186
1186
|
*/
|
|
1187
1187
|
'import-x/no-self-import'?: Linter.RuleEntry<[]>
|
|
1188
1188
|
/**
|
|
1189
1189
|
* Forbid unassigned imports.
|
|
1190
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1190
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unassigned-import.md
|
|
1191
1191
|
*/
|
|
1192
1192
|
'import-x/no-unassigned-import'?: Linter.RuleEntry<ImportXNoUnassignedImport>
|
|
1193
1193
|
/**
|
|
1194
1194
|
* Ensure imports point to a file/module that can be resolved.
|
|
1195
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1195
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unresolved.md
|
|
1196
1196
|
*/
|
|
1197
1197
|
'import-x/no-unresolved'?: Linter.RuleEntry<ImportXNoUnresolved>
|
|
1198
1198
|
/**
|
|
1199
1199
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
1200
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1200
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unused-modules.md
|
|
1201
1201
|
*/
|
|
1202
1202
|
'import-x/no-unused-modules'?: Linter.RuleEntry<ImportXNoUnusedModules>
|
|
1203
1203
|
/**
|
|
1204
1204
|
* Forbid unnecessary path segments in import and require statements.
|
|
1205
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1205
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-useless-path-segments.md
|
|
1206
1206
|
*/
|
|
1207
1207
|
'import-x/no-useless-path-segments'?: Linter.RuleEntry<ImportXNoUselessPathSegments>
|
|
1208
1208
|
/**
|
|
1209
1209
|
* Forbid webpack loader syntax in imports.
|
|
1210
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1210
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-webpack-loader-syntax.md
|
|
1211
1211
|
*/
|
|
1212
1212
|
'import-x/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
1213
1213
|
/**
|
|
1214
1214
|
* Enforce a convention in module import order.
|
|
1215
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1215
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/order.md
|
|
1216
1216
|
*/
|
|
1217
1217
|
'import-x/order'?: Linter.RuleEntry<ImportXOrder>
|
|
1218
1218
|
/**
|
|
1219
1219
|
* Prefer a default export if module exports a single name or multiple names.
|
|
1220
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1220
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/prefer-default-export.md
|
|
1221
1221
|
*/
|
|
1222
1222
|
'import-x/prefer-default-export'?: Linter.RuleEntry<ImportXPreferDefaultExport>
|
|
1223
1223
|
/**
|
|
1224
1224
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
1225
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.
|
|
1225
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/unambiguous.md
|
|
1226
1226
|
*/
|
|
1227
1227
|
'import-x/unambiguous'?: Linter.RuleEntry<[]>
|
|
1228
1228
|
/**
|
|
@@ -3883,643 +3883,670 @@ interface Rules {
|
|
|
3883
3883
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
|
|
3884
3884
|
/**
|
|
3885
3885
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
3886
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3886
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/better-regex.md
|
|
3887
3887
|
*/
|
|
3888
3888
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
|
|
3889
3889
|
/**
|
|
3890
3890
|
* Enforce a specific parameter name in catch clauses.
|
|
3891
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3891
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/catch-error-name.md
|
|
3892
3892
|
*/
|
|
3893
3893
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
|
|
3894
3894
|
/**
|
|
3895
3895
|
* Enforce consistent assertion style with `node:assert`.
|
|
3896
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3896
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-assert.md
|
|
3897
3897
|
*/
|
|
3898
3898
|
'unicorn/consistent-assert'?: Linter.RuleEntry<[]>
|
|
3899
3899
|
/**
|
|
3900
3900
|
* Prefer passing `Date` directly to the constructor when cloning.
|
|
3901
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3901
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-date-clone.md
|
|
3902
3902
|
*/
|
|
3903
3903
|
'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>
|
|
3904
3904
|
/**
|
|
3905
3905
|
* Use destructured variables over properties.
|
|
3906
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3906
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-destructuring.md
|
|
3907
3907
|
*/
|
|
3908
3908
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
|
|
3909
3909
|
/**
|
|
3910
3910
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
3911
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3911
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-empty-array-spread.md
|
|
3912
3912
|
*/
|
|
3913
3913
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
|
|
3914
3914
|
/**
|
|
3915
3915
|
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
3916
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3916
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-existence-index-check.md
|
|
3917
3917
|
*/
|
|
3918
3918
|
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
|
|
3919
3919
|
/**
|
|
3920
3920
|
* Move function definitions to the highest possible scope.
|
|
3921
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3921
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/consistent-function-scoping.md
|
|
3922
3922
|
*/
|
|
3923
3923
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
|
|
3924
3924
|
/**
|
|
3925
3925
|
* Enforce correct `Error` subclassing.
|
|
3926
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3926
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/custom-error-definition.md
|
|
3927
3927
|
*/
|
|
3928
3928
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
|
|
3929
3929
|
/**
|
|
3930
3930
|
* Enforce no spaces between braces.
|
|
3931
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3931
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/empty-brace-spaces.md
|
|
3932
3932
|
*/
|
|
3933
3933
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
|
|
3934
3934
|
/**
|
|
3935
3935
|
* Enforce passing a `message` value when creating a built-in error.
|
|
3936
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3936
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/error-message.md
|
|
3937
3937
|
*/
|
|
3938
3938
|
'unicorn/error-message'?: Linter.RuleEntry<[]>
|
|
3939
3939
|
/**
|
|
3940
3940
|
* Require escape sequences to use uppercase or lowercase values.
|
|
3941
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3941
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/escape-case.md
|
|
3942
3942
|
*/
|
|
3943
3943
|
'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>
|
|
3944
3944
|
/**
|
|
3945
3945
|
* Add expiration conditions to TODO comments.
|
|
3946
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3946
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/expiring-todo-comments.md
|
|
3947
3947
|
*/
|
|
3948
3948
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
|
|
3949
3949
|
/**
|
|
3950
3950
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
3951
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3951
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/explicit-length-check.md
|
|
3952
3952
|
*/
|
|
3953
3953
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
|
|
3954
3954
|
/**
|
|
3955
3955
|
* Enforce a case style for filenames.
|
|
3956
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3956
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/filename-case.md
|
|
3957
3957
|
*/
|
|
3958
3958
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
|
|
3959
3959
|
/**
|
|
3960
3960
|
* Enforce specific import styles per module.
|
|
3961
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3961
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/import-style.md
|
|
3962
3962
|
*/
|
|
3963
3963
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
|
|
3964
3964
|
/**
|
|
3965
3965
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
3966
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3966
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/new-for-builtins.md
|
|
3967
3967
|
*/
|
|
3968
3968
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
|
|
3969
3969
|
/**
|
|
3970
3970
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
3971
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3971
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-abusive-eslint-disable.md
|
|
3972
3972
|
*/
|
|
3973
3973
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
|
|
3974
3974
|
/**
|
|
3975
3975
|
* Disallow recursive access to `this` within getters and setters.
|
|
3976
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3976
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-accessor-recursion.md
|
|
3977
3977
|
*/
|
|
3978
3978
|
'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>
|
|
3979
3979
|
/**
|
|
3980
3980
|
* Disallow anonymous functions and classes as the default export.
|
|
3981
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3981
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-anonymous-default-export.md
|
|
3982
3982
|
*/
|
|
3983
3983
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
|
|
3984
3984
|
/**
|
|
3985
3985
|
* Prevent passing a function reference directly to iterator methods.
|
|
3986
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3986
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-array-callback-reference.md
|
|
3987
3987
|
*/
|
|
3988
3988
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
|
|
3989
3989
|
/**
|
|
3990
3990
|
* Prefer `for…of` over the `forEach` method.
|
|
3991
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3991
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-array-for-each.md
|
|
3992
3992
|
*/
|
|
3993
3993
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
|
|
3994
3994
|
/**
|
|
3995
3995
|
* Disallow using the `this` argument in array methods.
|
|
3996
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
3996
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-array-method-this-argument.md
|
|
3997
3997
|
*/
|
|
3998
3998
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
|
|
3999
3999
|
/**
|
|
4000
|
-
*
|
|
4001
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4000
|
+
* Replaced by `unicorn/prefer-single-call` which covers more cases.
|
|
4001
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/deprecated-rules.md#no-array-push-push
|
|
4002
|
+
* @deprecated
|
|
4002
4003
|
*/
|
|
4003
|
-
'unicorn/no-array-push-push'?: Linter.RuleEntry<
|
|
4004
|
+
'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>
|
|
4004
4005
|
/**
|
|
4005
4006
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
4006
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4007
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-array-reduce.md
|
|
4007
4008
|
*/
|
|
4008
4009
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
|
|
4009
4010
|
/**
|
|
4010
4011
|
* Disallow member access from await expression.
|
|
4011
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4012
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-await-expression-member.md
|
|
4012
4013
|
*/
|
|
4013
4014
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
|
|
4014
4015
|
/**
|
|
4015
4016
|
* Disallow using `await` in `Promise` method parameters.
|
|
4016
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4017
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-await-in-promise-methods.md
|
|
4017
4018
|
*/
|
|
4018
4019
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
4019
4020
|
/**
|
|
4020
4021
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
4021
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4022
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-console-spaces.md
|
|
4022
4023
|
*/
|
|
4023
4024
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
|
|
4024
4025
|
/**
|
|
4025
4026
|
* Do not use `document.cookie` directly.
|
|
4026
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4027
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-document-cookie.md
|
|
4027
4028
|
*/
|
|
4028
4029
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
|
|
4029
4030
|
/**
|
|
4030
4031
|
* Disallow empty files.
|
|
4031
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4032
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-empty-file.md
|
|
4032
4033
|
*/
|
|
4033
4034
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
|
|
4034
4035
|
/**
|
|
4035
4036
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
4036
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4037
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-for-loop.md
|
|
4037
4038
|
*/
|
|
4038
4039
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
|
|
4039
4040
|
/**
|
|
4040
4041
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
4041
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4042
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-hex-escape.md
|
|
4042
4043
|
*/
|
|
4043
4044
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
|
|
4044
4045
|
/**
|
|
4045
4046
|
* Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
|
|
4046
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4047
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/deprecated-rules.md#no-instanceof-array
|
|
4047
4048
|
* @deprecated
|
|
4048
4049
|
*/
|
|
4049
4050
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
|
|
4050
4051
|
/**
|
|
4051
4052
|
* Disallow `instanceof` with built-in objects
|
|
4052
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4053
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-instanceof-builtins.md
|
|
4053
4054
|
*/
|
|
4054
4055
|
'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>
|
|
4055
4056
|
/**
|
|
4056
4057
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
4057
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4058
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-invalid-fetch-options.md
|
|
4058
4059
|
*/
|
|
4059
4060
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
|
|
4060
4061
|
/**
|
|
4061
4062
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
4062
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4063
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-invalid-remove-event-listener.md
|
|
4063
4064
|
*/
|
|
4064
4065
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
|
|
4065
4066
|
/**
|
|
4066
4067
|
* Disallow identifiers starting with `new` or `class`.
|
|
4067
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4068
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-keyword-prefix.md
|
|
4068
4069
|
*/
|
|
4069
4070
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
|
|
4070
4071
|
/**
|
|
4071
|
-
*
|
|
4072
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4072
|
+
* Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
|
|
4073
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/deprecated-rules.md#no-length-as-slice-end
|
|
4074
|
+
* @deprecated
|
|
4073
4075
|
*/
|
|
4074
4076
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
|
|
4075
4077
|
/**
|
|
4076
4078
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
4077
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4079
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-lonely-if.md
|
|
4078
4080
|
*/
|
|
4079
4081
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
|
|
4080
4082
|
/**
|
|
4081
4083
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
4082
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4084
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-magic-array-flat-depth.md
|
|
4083
4085
|
*/
|
|
4084
4086
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
4085
4087
|
/**
|
|
4086
4088
|
* Disallow named usage of default import and export.
|
|
4087
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4089
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-named-default.md
|
|
4088
4090
|
*/
|
|
4089
4091
|
'unicorn/no-named-default'?: Linter.RuleEntry<[]>
|
|
4090
4092
|
/**
|
|
4091
4093
|
* Disallow negated conditions.
|
|
4092
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4094
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-negated-condition.md
|
|
4093
4095
|
*/
|
|
4094
4096
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
|
|
4095
4097
|
/**
|
|
4096
4098
|
* Disallow negated expression in equality check.
|
|
4097
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4099
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-negation-in-equality-check.md
|
|
4098
4100
|
*/
|
|
4099
4101
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
|
|
4100
4102
|
/**
|
|
4101
4103
|
* Disallow nested ternary expressions.
|
|
4102
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4104
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-nested-ternary.md
|
|
4103
4105
|
*/
|
|
4104
4106
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
|
|
4105
4107
|
/**
|
|
4106
4108
|
* Disallow `new Array()`.
|
|
4107
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4109
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-new-array.md
|
|
4108
4110
|
*/
|
|
4109
4111
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>
|
|
4110
4112
|
/**
|
|
4111
4113
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
4112
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4114
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-new-buffer.md
|
|
4113
4115
|
*/
|
|
4114
4116
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
|
|
4115
4117
|
/**
|
|
4116
4118
|
* Disallow the use of the `null` literal.
|
|
4117
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4119
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-null.md
|
|
4118
4120
|
*/
|
|
4119
4121
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
|
|
4120
4122
|
/**
|
|
4121
4123
|
* Disallow the use of objects as default parameters.
|
|
4122
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4124
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-object-as-default-parameter.md
|
|
4123
4125
|
*/
|
|
4124
4126
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
|
|
4125
4127
|
/**
|
|
4126
4128
|
* Disallow `process.exit()`.
|
|
4127
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4129
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-process-exit.md
|
|
4128
4130
|
*/
|
|
4129
4131
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
|
|
4130
4132
|
/**
|
|
4131
4133
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
4132
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4134
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-single-promise-in-promise-methods.md
|
|
4133
4135
|
*/
|
|
4134
4136
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
4135
4137
|
/**
|
|
4136
4138
|
* Disallow classes that only have static members.
|
|
4137
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4139
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-static-only-class.md
|
|
4138
4140
|
*/
|
|
4139
4141
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
|
|
4140
4142
|
/**
|
|
4141
4143
|
* Disallow `then` property.
|
|
4142
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4144
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-thenable.md
|
|
4143
4145
|
*/
|
|
4144
4146
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>
|
|
4145
4147
|
/**
|
|
4146
4148
|
* Disallow assigning `this` to a variable.
|
|
4147
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4149
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-this-assignment.md
|
|
4148
4150
|
*/
|
|
4149
4151
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
|
|
4150
4152
|
/**
|
|
4151
4153
|
* Disallow comparing `undefined` using `typeof`.
|
|
4152
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4154
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-typeof-undefined.md
|
|
4153
4155
|
*/
|
|
4154
4156
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
|
|
4157
|
+
/**
|
|
4158
|
+
* Disallow using `1` as the `depth` argument of `Array#flat()`.
|
|
4159
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-array-flat-depth.md
|
|
4160
|
+
*/
|
|
4161
|
+
'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
4162
|
+
/**
|
|
4163
|
+
* Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
|
|
4164
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-array-splice-count.md
|
|
4165
|
+
*/
|
|
4166
|
+
'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>
|
|
4155
4167
|
/**
|
|
4156
4168
|
* Disallow awaiting non-promise values.
|
|
4157
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4169
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-await.md
|
|
4158
4170
|
*/
|
|
4159
4171
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
|
|
4160
4172
|
/**
|
|
4161
4173
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
4162
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4174
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-polyfills.md
|
|
4163
4175
|
*/
|
|
4164
4176
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
|
|
4177
|
+
/**
|
|
4178
|
+
* Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
4179
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unnecessary-slice-end.md
|
|
4180
|
+
*/
|
|
4181
|
+
'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>
|
|
4165
4182
|
/**
|
|
4166
4183
|
* Disallow unreadable array destructuring.
|
|
4167
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4184
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unreadable-array-destructuring.md
|
|
4168
4185
|
*/
|
|
4169
4186
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
|
|
4170
4187
|
/**
|
|
4171
4188
|
* Disallow unreadable IIFEs.
|
|
4172
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4189
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unreadable-iife.md
|
|
4173
4190
|
*/
|
|
4174
4191
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
|
|
4175
4192
|
/**
|
|
4176
4193
|
* Disallow unused object properties.
|
|
4177
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4194
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-unused-properties.md
|
|
4178
4195
|
*/
|
|
4179
4196
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
|
|
4180
4197
|
/**
|
|
4181
4198
|
* Disallow useless fallback when spreading in object literals.
|
|
4182
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4199
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-fallback-in-spread.md
|
|
4183
4200
|
*/
|
|
4184
4201
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
|
|
4185
4202
|
/**
|
|
4186
4203
|
* Disallow useless array length check.
|
|
4187
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4204
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-length-check.md
|
|
4188
4205
|
*/
|
|
4189
4206
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
|
|
4190
4207
|
/**
|
|
4191
4208
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
4192
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4209
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-promise-resolve-reject.md
|
|
4193
4210
|
*/
|
|
4194
4211
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
|
|
4195
4212
|
/**
|
|
4196
4213
|
* Disallow unnecessary spread.
|
|
4197
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4214
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-spread.md
|
|
4198
4215
|
*/
|
|
4199
4216
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
|
|
4200
4217
|
/**
|
|
4201
4218
|
* Disallow useless case in switch statements.
|
|
4202
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4219
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-switch-case.md
|
|
4203
4220
|
*/
|
|
4204
4221
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
|
|
4205
4222
|
/**
|
|
4206
4223
|
* Disallow useless `undefined`.
|
|
4207
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4224
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-useless-undefined.md
|
|
4208
4225
|
*/
|
|
4209
4226
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
|
|
4210
4227
|
/**
|
|
4211
4228
|
* Disallow number literals with zero fractions or dangling dots.
|
|
4212
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4229
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/no-zero-fractions.md
|
|
4213
4230
|
*/
|
|
4214
4231
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
|
|
4215
4232
|
/**
|
|
4216
4233
|
* Enforce proper case for numeric literals.
|
|
4217
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4234
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/number-literal-case.md
|
|
4218
4235
|
*/
|
|
4219
4236
|
'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>
|
|
4220
4237
|
/**
|
|
4221
4238
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
4222
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4239
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/numeric-separators-style.md
|
|
4223
4240
|
*/
|
|
4224
4241
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
|
|
4225
4242
|
/**
|
|
4226
4243
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
4227
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4244
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-add-event-listener.md
|
|
4228
4245
|
*/
|
|
4229
4246
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
|
|
4230
4247
|
/**
|
|
4231
4248
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
4232
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4249
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-find.md
|
|
4233
4250
|
*/
|
|
4234
4251
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
|
|
4235
4252
|
/**
|
|
4236
4253
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
4237
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4254
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-flat.md
|
|
4238
4255
|
*/
|
|
4239
4256
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
|
|
4240
4257
|
/**
|
|
4241
4258
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
4242
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4259
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-flat-map.md
|
|
4243
4260
|
*/
|
|
4244
4261
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
|
|
4245
4262
|
/**
|
|
4246
4263
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
4247
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4264
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-index-of.md
|
|
4248
4265
|
*/
|
|
4249
4266
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
|
|
4250
4267
|
/**
|
|
4251
4268
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
4252
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4269
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-array-some.md
|
|
4253
4270
|
*/
|
|
4254
4271
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
|
|
4255
4272
|
/**
|
|
4256
4273
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
4257
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4274
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-at.md
|
|
4258
4275
|
*/
|
|
4259
4276
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
|
|
4260
4277
|
/**
|
|
4261
4278
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
4262
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4279
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-blob-reading-methods.md
|
|
4263
4280
|
*/
|
|
4264
4281
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
|
|
4265
4282
|
/**
|
|
4266
4283
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
4267
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4284
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-code-point.md
|
|
4268
4285
|
*/
|
|
4269
4286
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
|
|
4270
4287
|
/**
|
|
4271
4288
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
4272
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4289
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-date-now.md
|
|
4273
4290
|
*/
|
|
4274
4291
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
|
|
4275
4292
|
/**
|
|
4276
4293
|
* Prefer default parameters over reassignment.
|
|
4277
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4294
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-default-parameters.md
|
|
4278
4295
|
*/
|
|
4279
4296
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
|
|
4280
4297
|
/**
|
|
4281
4298
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
4282
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4299
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-dom-node-append.md
|
|
4283
4300
|
*/
|
|
4284
4301
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
|
|
4285
4302
|
/**
|
|
4286
4303
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
4287
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4304
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-dom-node-dataset.md
|
|
4288
4305
|
*/
|
|
4289
4306
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
|
|
4290
4307
|
/**
|
|
4291
4308
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
4292
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4309
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-dom-node-remove.md
|
|
4293
4310
|
*/
|
|
4294
4311
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
|
|
4295
4312
|
/**
|
|
4296
4313
|
* Prefer `.textContent` over `.innerText`.
|
|
4297
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4314
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-dom-node-text-content.md
|
|
4298
4315
|
*/
|
|
4299
4316
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
|
|
4300
4317
|
/**
|
|
4301
4318
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
4302
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4319
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-event-target.md
|
|
4303
4320
|
*/
|
|
4304
4321
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
|
|
4305
4322
|
/**
|
|
4306
4323
|
* Prefer `export…from` when re-exporting.
|
|
4307
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4324
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-export-from.md
|
|
4308
4325
|
*/
|
|
4309
4326
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
|
|
4310
4327
|
/**
|
|
4311
4328
|
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
4312
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4329
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-global-this.md
|
|
4313
4330
|
*/
|
|
4314
4331
|
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
|
|
4332
|
+
/**
|
|
4333
|
+
* Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
|
|
4334
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-import-meta-properties.md
|
|
4335
|
+
*/
|
|
4336
|
+
'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>
|
|
4315
4337
|
/**
|
|
4316
4338
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
4317
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4339
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-includes.md
|
|
4318
4340
|
*/
|
|
4319
4341
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
|
|
4320
4342
|
/**
|
|
4321
4343
|
* Prefer reading a JSON file as a buffer.
|
|
4322
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4344
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-json-parse-buffer.md
|
|
4323
4345
|
*/
|
|
4324
4346
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
|
|
4325
4347
|
/**
|
|
4326
4348
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
4327
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4349
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-keyboard-event-key.md
|
|
4328
4350
|
*/
|
|
4329
4351
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
|
|
4330
4352
|
/**
|
|
4331
4353
|
* Prefer using a logical operator over a ternary.
|
|
4332
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4354
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-logical-operator-over-ternary.md
|
|
4333
4355
|
*/
|
|
4334
4356
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
|
|
4335
4357
|
/**
|
|
4336
4358
|
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
4337
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4359
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-math-min-max.md
|
|
4338
4360
|
*/
|
|
4339
4361
|
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
|
|
4340
4362
|
/**
|
|
4341
4363
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
4342
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4364
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-math-trunc.md
|
|
4343
4365
|
*/
|
|
4344
4366
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
|
|
4345
4367
|
/**
|
|
4346
4368
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
4347
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4369
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-modern-dom-apis.md
|
|
4348
4370
|
*/
|
|
4349
4371
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
|
|
4350
4372
|
/**
|
|
4351
4373
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
4352
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4374
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-modern-math-apis.md
|
|
4353
4375
|
*/
|
|
4354
4376
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
|
|
4355
4377
|
/**
|
|
4356
4378
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
4357
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4379
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-module.md
|
|
4358
4380
|
*/
|
|
4359
4381
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>
|
|
4360
4382
|
/**
|
|
4361
4383
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
4362
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4384
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-native-coercion-functions.md
|
|
4363
4385
|
*/
|
|
4364
4386
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
|
|
4365
4387
|
/**
|
|
4366
4388
|
* Prefer negative index over `.length - index` when possible.
|
|
4367
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4389
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-negative-index.md
|
|
4368
4390
|
*/
|
|
4369
4391
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
|
|
4370
4392
|
/**
|
|
4371
4393
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
4372
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4394
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-node-protocol.md
|
|
4373
4395
|
*/
|
|
4374
4396
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
|
|
4375
4397
|
/**
|
|
4376
4398
|
* Prefer `Number` static properties over global ones.
|
|
4377
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4399
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-number-properties.md
|
|
4378
4400
|
*/
|
|
4379
4401
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
|
|
4380
4402
|
/**
|
|
4381
4403
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
4382
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4404
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-object-from-entries.md
|
|
4383
4405
|
*/
|
|
4384
4406
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
|
|
4385
4407
|
/**
|
|
4386
4408
|
* Prefer omitting the `catch` binding parameter.
|
|
4387
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4409
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-optional-catch-binding.md
|
|
4388
4410
|
*/
|
|
4389
4411
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
|
|
4390
4412
|
/**
|
|
4391
4413
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
4392
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4414
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-prototype-methods.md
|
|
4393
4415
|
*/
|
|
4394
4416
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
|
|
4395
4417
|
/**
|
|
4396
4418
|
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
4397
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4419
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-query-selector.md
|
|
4398
4420
|
*/
|
|
4399
4421
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
|
|
4400
4422
|
/**
|
|
4401
4423
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
4402
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4424
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-reflect-apply.md
|
|
4403
4425
|
*/
|
|
4404
4426
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
|
|
4405
4427
|
/**
|
|
4406
4428
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
4407
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4429
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-regexp-test.md
|
|
4408
4430
|
*/
|
|
4409
4431
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
|
|
4410
4432
|
/**
|
|
4411
4433
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
4412
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4434
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-set-has.md
|
|
4413
4435
|
*/
|
|
4414
4436
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
|
|
4415
4437
|
/**
|
|
4416
4438
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
4417
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4439
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-set-size.md
|
|
4418
4440
|
*/
|
|
4419
4441
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
|
|
4442
|
+
/**
|
|
4443
|
+
* Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
|
|
4444
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-single-call.md
|
|
4445
|
+
*/
|
|
4446
|
+
'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>
|
|
4420
4447
|
/**
|
|
4421
4448
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
4422
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4449
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-spread.md
|
|
4423
4450
|
*/
|
|
4424
4451
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
|
|
4425
4452
|
/**
|
|
4426
4453
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
4427
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4454
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-raw.md
|
|
4428
4455
|
*/
|
|
4429
4456
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
|
|
4430
4457
|
/**
|
|
4431
4458
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
4432
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4459
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-replace-all.md
|
|
4433
4460
|
*/
|
|
4434
4461
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
|
|
4435
4462
|
/**
|
|
4436
4463
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
4437
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4464
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-slice.md
|
|
4438
4465
|
*/
|
|
4439
4466
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
|
|
4440
4467
|
/**
|
|
4441
4468
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
4442
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4469
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-starts-ends-with.md
|
|
4443
4470
|
*/
|
|
4444
4471
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
4445
4472
|
/**
|
|
4446
4473
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
4447
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4474
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-string-trim-start-end.md
|
|
4448
4475
|
*/
|
|
4449
4476
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
|
|
4450
4477
|
/**
|
|
4451
4478
|
* Prefer using `structuredClone` to create a deep clone.
|
|
4452
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4479
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-structured-clone.md
|
|
4453
4480
|
*/
|
|
4454
4481
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
|
|
4455
4482
|
/**
|
|
4456
4483
|
* Prefer `switch` over multiple `else-if`.
|
|
4457
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4484
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-switch.md
|
|
4458
4485
|
*/
|
|
4459
4486
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
|
|
4460
4487
|
/**
|
|
4461
4488
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
4462
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4489
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-ternary.md
|
|
4463
4490
|
*/
|
|
4464
4491
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
|
|
4465
4492
|
/**
|
|
4466
4493
|
* Prefer top-level await over top-level promises and async function calls.
|
|
4467
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4494
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-top-level-await.md
|
|
4468
4495
|
*/
|
|
4469
4496
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
|
|
4470
4497
|
/**
|
|
4471
4498
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
4472
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4499
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prefer-type-error.md
|
|
4473
4500
|
*/
|
|
4474
4501
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
|
|
4475
4502
|
/**
|
|
4476
4503
|
* Prevent abbreviations.
|
|
4477
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4504
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/prevent-abbreviations.md
|
|
4478
4505
|
*/
|
|
4479
4506
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
|
|
4480
4507
|
/**
|
|
4481
4508
|
* Enforce consistent relative URL style.
|
|
4482
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4509
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/relative-url-style.md
|
|
4483
4510
|
*/
|
|
4484
4511
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
|
|
4485
4512
|
/**
|
|
4486
4513
|
* Enforce using the separator argument with `Array#join()`.
|
|
4487
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4514
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/require-array-join-separator.md
|
|
4488
4515
|
*/
|
|
4489
4516
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
|
|
4490
4517
|
/**
|
|
4491
4518
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
4492
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4519
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/require-number-to-fixed-digits-argument.md
|
|
4493
4520
|
*/
|
|
4494
4521
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
|
|
4495
4522
|
/**
|
|
4496
4523
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
4497
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4524
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/require-post-message-target-origin.md
|
|
4498
4525
|
*/
|
|
4499
4526
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
|
|
4500
4527
|
/**
|
|
4501
4528
|
* Enforce better string content.
|
|
4502
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4529
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/string-content.md
|
|
4503
4530
|
*/
|
|
4504
4531
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
|
|
4505
4532
|
/**
|
|
4506
4533
|
* Enforce consistent brace style for `case` clauses.
|
|
4507
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4534
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/switch-case-braces.md
|
|
4508
4535
|
*/
|
|
4509
4536
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
|
|
4510
4537
|
/**
|
|
4511
4538
|
* Fix whitespace-insensitive template indentation.
|
|
4512
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4539
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/template-indent.md
|
|
4513
4540
|
*/
|
|
4514
4541
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
|
|
4515
4542
|
/**
|
|
4516
4543
|
* Enforce consistent case for text encoding identifiers.
|
|
4517
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4544
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/text-encoding-identifier-case.md
|
|
4518
4545
|
*/
|
|
4519
4546
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
|
|
4520
4547
|
/**
|
|
4521
4548
|
* Require `new` when creating an error.
|
|
4522
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4549
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v59.0.1/docs/rules/throw-new-error.md
|
|
4523
4550
|
*/
|
|
4524
4551
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
|
|
4525
4552
|
/**
|
|
@@ -8616,6 +8643,7 @@ type NodeNoUnpublishedImport = []|[{
|
|
|
8616
8643
|
resolverConfig?: {
|
|
8617
8644
|
[k: string]: unknown | undefined
|
|
8618
8645
|
}
|
|
8646
|
+
tryExtensions?: string[]
|
|
8619
8647
|
ignoreTypeImport?: boolean
|
|
8620
8648
|
ignorePrivate?: boolean
|
|
8621
8649
|
}]
|
|
@@ -8659,7 +8687,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
8659
8687
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
8660
8688
|
version?: string
|
|
8661
8689
|
allowExperimental?: boolean
|
|
8662
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[]
|
|
8690
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[]
|
|
8663
8691
|
}]
|
|
8664
8692
|
// ----- node/prefer-global/buffer -----
|
|
8665
8693
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -8807,7 +8835,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8807
8835
|
order?: ("asc" | "desc")
|
|
8808
8836
|
|
|
8809
8837
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8810
|
-
[k: string]: unknown | undefined
|
|
8811
8838
|
}
|
|
8812
8839
|
|
|
8813
8840
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -8833,10 +8860,9 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8833
8860
|
order?: ("asc" | "desc")
|
|
8834
8861
|
|
|
8835
8862
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8836
|
-
[k: string]: unknown | undefined
|
|
8837
8863
|
}
|
|
8838
8864
|
|
|
8839
|
-
groupName
|
|
8865
|
+
groupName: string
|
|
8840
8866
|
|
|
8841
8867
|
order?: ("asc" | "desc")
|
|
8842
8868
|
|
|
@@ -8846,10 +8872,14 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8846
8872
|
selector?: ("literal" | "spread")
|
|
8847
8873
|
|
|
8848
8874
|
elementNamePattern?: (({
|
|
8849
|
-
|
|
8875
|
+
|
|
8876
|
+
pattern: string
|
|
8877
|
+
|
|
8850
8878
|
flags?: string
|
|
8851
8879
|
} | string)[] | ({
|
|
8852
|
-
|
|
8880
|
+
|
|
8881
|
+
pattern: string
|
|
8882
|
+
|
|
8853
8883
|
flags?: string
|
|
8854
8884
|
} | string))
|
|
8855
8885
|
}[]
|
|
@@ -8862,10 +8892,9 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8862
8892
|
order?: ("asc" | "desc")
|
|
8863
8893
|
|
|
8864
8894
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8865
|
-
[k: string]: unknown | undefined
|
|
8866
8895
|
}
|
|
8867
8896
|
|
|
8868
|
-
groupName
|
|
8897
|
+
groupName: string
|
|
8869
8898
|
|
|
8870
8899
|
order?: ("asc" | "desc")
|
|
8871
8900
|
|
|
@@ -8874,43 +8903,66 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8874
8903
|
selector?: ("literal" | "spread")
|
|
8875
8904
|
|
|
8876
8905
|
elementNamePattern?: (({
|
|
8877
|
-
|
|
8906
|
+
|
|
8907
|
+
pattern: string
|
|
8908
|
+
|
|
8878
8909
|
flags?: string
|
|
8879
8910
|
} | string)[] | ({
|
|
8880
|
-
|
|
8911
|
+
|
|
8912
|
+
pattern: string
|
|
8913
|
+
|
|
8881
8914
|
flags?: string
|
|
8882
8915
|
} | string))
|
|
8883
8916
|
})[]
|
|
8917
|
+
|
|
8884
8918
|
useConfigurationIf?: {
|
|
8885
8919
|
|
|
8886
8920
|
allNamesMatchPattern?: (({
|
|
8887
|
-
|
|
8921
|
+
|
|
8922
|
+
pattern: string
|
|
8923
|
+
|
|
8888
8924
|
flags?: string
|
|
8889
8925
|
} | string)[] | ({
|
|
8890
|
-
|
|
8926
|
+
|
|
8927
|
+
pattern: string
|
|
8928
|
+
|
|
8891
8929
|
flags?: string
|
|
8892
8930
|
} | string))
|
|
8893
8931
|
}
|
|
8894
8932
|
|
|
8895
8933
|
partitionByComment?: (boolean | (({
|
|
8896
|
-
|
|
8934
|
+
|
|
8935
|
+
pattern: string
|
|
8936
|
+
|
|
8897
8937
|
flags?: string
|
|
8898
8938
|
} | string)[] | ({
|
|
8899
|
-
|
|
8939
|
+
|
|
8940
|
+
pattern: string
|
|
8941
|
+
|
|
8900
8942
|
flags?: string
|
|
8901
8943
|
} | string)) | {
|
|
8944
|
+
|
|
8902
8945
|
block?: (boolean | (({
|
|
8903
|
-
|
|
8946
|
+
|
|
8947
|
+
pattern: string
|
|
8948
|
+
|
|
8904
8949
|
flags?: string
|
|
8905
8950
|
} | string)[] | ({
|
|
8906
|
-
|
|
8951
|
+
|
|
8952
|
+
pattern: string
|
|
8953
|
+
|
|
8907
8954
|
flags?: string
|
|
8908
8955
|
} | string)))
|
|
8956
|
+
|
|
8909
8957
|
line?: (boolean | (({
|
|
8910
|
-
|
|
8958
|
+
|
|
8959
|
+
pattern: string
|
|
8960
|
+
|
|
8911
8961
|
flags?: string
|
|
8912
8962
|
} | string)[] | ({
|
|
8913
|
-
|
|
8963
|
+
|
|
8964
|
+
pattern: string
|
|
8965
|
+
|
|
8914
8966
|
flags?: string
|
|
8915
8967
|
} | string)))
|
|
8916
8968
|
})
|
|
@@ -8921,7 +8973,7 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8921
8973
|
|
|
8922
8974
|
groups?: (string | string[] | {
|
|
8923
8975
|
|
|
8924
|
-
newlinesBetween
|
|
8976
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
8925
8977
|
})[]
|
|
8926
8978
|
}[]
|
|
8927
8979
|
// ----- perfectionist/sort-classes -----
|
|
@@ -8932,7 +8984,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
8932
8984
|
order?: ("asc" | "desc")
|
|
8933
8985
|
|
|
8934
8986
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8935
|
-
[k: string]: unknown | undefined
|
|
8936
8987
|
}
|
|
8937
8988
|
|
|
8938
8989
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -8956,10 +9007,9 @@ type PerfectionistSortClasses = []|[{
|
|
|
8956
9007
|
order?: ("asc" | "desc")
|
|
8957
9008
|
|
|
8958
9009
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8959
|
-
[k: string]: unknown | undefined
|
|
8960
9010
|
}
|
|
8961
9011
|
|
|
8962
|
-
groupName
|
|
9012
|
+
groupName: string
|
|
8963
9013
|
|
|
8964
9014
|
order?: ("asc" | "desc")
|
|
8965
9015
|
|
|
@@ -8971,26 +9021,38 @@ type PerfectionistSortClasses = []|[{
|
|
|
8971
9021
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
8972
9022
|
|
|
8973
9023
|
decoratorNamePattern?: (({
|
|
8974
|
-
|
|
9024
|
+
|
|
9025
|
+
pattern: string
|
|
9026
|
+
|
|
8975
9027
|
flags?: string
|
|
8976
9028
|
} | string)[] | ({
|
|
8977
|
-
|
|
9029
|
+
|
|
9030
|
+
pattern: string
|
|
9031
|
+
|
|
8978
9032
|
flags?: string
|
|
8979
9033
|
} | string))
|
|
8980
9034
|
|
|
8981
9035
|
elementValuePattern?: (({
|
|
8982
|
-
|
|
9036
|
+
|
|
9037
|
+
pattern: string
|
|
9038
|
+
|
|
8983
9039
|
flags?: string
|
|
8984
9040
|
} | string)[] | ({
|
|
8985
|
-
|
|
9041
|
+
|
|
9042
|
+
pattern: string
|
|
9043
|
+
|
|
8986
9044
|
flags?: string
|
|
8987
9045
|
} | string))
|
|
8988
9046
|
|
|
8989
9047
|
elementNamePattern?: (({
|
|
8990
|
-
|
|
9048
|
+
|
|
9049
|
+
pattern: string
|
|
9050
|
+
|
|
8991
9051
|
flags?: string
|
|
8992
9052
|
} | string)[] | ({
|
|
8993
|
-
|
|
9053
|
+
|
|
9054
|
+
pattern: string
|
|
9055
|
+
|
|
8994
9056
|
flags?: string
|
|
8995
9057
|
} | string))
|
|
8996
9058
|
}[]
|
|
@@ -9003,10 +9065,9 @@ type PerfectionistSortClasses = []|[{
|
|
|
9003
9065
|
order?: ("asc" | "desc")
|
|
9004
9066
|
|
|
9005
9067
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9006
|
-
[k: string]: unknown | undefined
|
|
9007
9068
|
}
|
|
9008
9069
|
|
|
9009
|
-
groupName
|
|
9070
|
+
groupName: string
|
|
9010
9071
|
|
|
9011
9072
|
order?: ("asc" | "desc")
|
|
9012
9073
|
|
|
@@ -9017,57 +9078,87 @@ type PerfectionistSortClasses = []|[{
|
|
|
9017
9078
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
9018
9079
|
|
|
9019
9080
|
decoratorNamePattern?: (({
|
|
9020
|
-
|
|
9081
|
+
|
|
9082
|
+
pattern: string
|
|
9083
|
+
|
|
9021
9084
|
flags?: string
|
|
9022
9085
|
} | string)[] | ({
|
|
9023
|
-
|
|
9086
|
+
|
|
9087
|
+
pattern: string
|
|
9088
|
+
|
|
9024
9089
|
flags?: string
|
|
9025
9090
|
} | string))
|
|
9026
9091
|
|
|
9027
9092
|
elementValuePattern?: (({
|
|
9028
|
-
|
|
9093
|
+
|
|
9094
|
+
pattern: string
|
|
9095
|
+
|
|
9029
9096
|
flags?: string
|
|
9030
9097
|
} | string)[] | ({
|
|
9031
|
-
|
|
9098
|
+
|
|
9099
|
+
pattern: string
|
|
9100
|
+
|
|
9032
9101
|
flags?: string
|
|
9033
9102
|
} | string))
|
|
9034
9103
|
|
|
9035
9104
|
elementNamePattern?: (({
|
|
9036
|
-
|
|
9105
|
+
|
|
9106
|
+
pattern: string
|
|
9107
|
+
|
|
9037
9108
|
flags?: string
|
|
9038
9109
|
} | string)[] | ({
|
|
9039
|
-
|
|
9110
|
+
|
|
9111
|
+
pattern: string
|
|
9112
|
+
|
|
9040
9113
|
flags?: string
|
|
9041
9114
|
} | string))
|
|
9042
9115
|
})[]
|
|
9043
9116
|
|
|
9044
9117
|
ignoreCallbackDependenciesPatterns?: (({
|
|
9045
|
-
|
|
9118
|
+
|
|
9119
|
+
pattern: string
|
|
9120
|
+
|
|
9046
9121
|
flags?: string
|
|
9047
9122
|
} | string)[] | ({
|
|
9048
|
-
|
|
9123
|
+
|
|
9124
|
+
pattern: string
|
|
9125
|
+
|
|
9049
9126
|
flags?: string
|
|
9050
9127
|
} | string))
|
|
9051
9128
|
|
|
9052
9129
|
partitionByComment?: (boolean | (({
|
|
9053
|
-
|
|
9130
|
+
|
|
9131
|
+
pattern: string
|
|
9132
|
+
|
|
9054
9133
|
flags?: string
|
|
9055
9134
|
} | string)[] | ({
|
|
9056
|
-
|
|
9135
|
+
|
|
9136
|
+
pattern: string
|
|
9137
|
+
|
|
9057
9138
|
flags?: string
|
|
9058
9139
|
} | string)) | {
|
|
9140
|
+
|
|
9059
9141
|
block?: (boolean | (({
|
|
9060
|
-
|
|
9142
|
+
|
|
9143
|
+
pattern: string
|
|
9144
|
+
|
|
9061
9145
|
flags?: string
|
|
9062
9146
|
} | string)[] | ({
|
|
9063
|
-
|
|
9147
|
+
|
|
9148
|
+
pattern: string
|
|
9149
|
+
|
|
9064
9150
|
flags?: string
|
|
9065
9151
|
} | string)))
|
|
9152
|
+
|
|
9066
9153
|
line?: (boolean | (({
|
|
9067
|
-
|
|
9154
|
+
|
|
9155
|
+
pattern: string
|
|
9156
|
+
|
|
9068
9157
|
flags?: string
|
|
9069
9158
|
} | string)[] | ({
|
|
9070
|
-
|
|
9159
|
+
|
|
9160
|
+
pattern: string
|
|
9161
|
+
|
|
9071
9162
|
flags?: string
|
|
9072
9163
|
} | string)))
|
|
9073
9164
|
})
|
|
@@ -9078,7 +9169,7 @@ type PerfectionistSortClasses = []|[{
|
|
|
9078
9169
|
|
|
9079
9170
|
groups?: (string | string[] | {
|
|
9080
9171
|
|
|
9081
|
-
newlinesBetween
|
|
9172
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9082
9173
|
})[]
|
|
9083
9174
|
}]
|
|
9084
9175
|
// ----- perfectionist/sort-decorators -----
|
|
@@ -9089,7 +9180,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
9089
9180
|
order?: ("asc" | "desc")
|
|
9090
9181
|
|
|
9091
9182
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9092
|
-
[k: string]: unknown | undefined
|
|
9093
9183
|
}
|
|
9094
9184
|
|
|
9095
9185
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9115,24 +9205,38 @@ type PerfectionistSortDecorators = []|[{
|
|
|
9115
9205
|
sortOnClasses?: boolean
|
|
9116
9206
|
|
|
9117
9207
|
partitionByComment?: (boolean | (({
|
|
9118
|
-
|
|
9208
|
+
|
|
9209
|
+
pattern: string
|
|
9210
|
+
|
|
9119
9211
|
flags?: string
|
|
9120
9212
|
} | string)[] | ({
|
|
9121
|
-
|
|
9213
|
+
|
|
9214
|
+
pattern: string
|
|
9215
|
+
|
|
9122
9216
|
flags?: string
|
|
9123
9217
|
} | string)) | {
|
|
9218
|
+
|
|
9124
9219
|
block?: (boolean | (({
|
|
9125
|
-
|
|
9220
|
+
|
|
9221
|
+
pattern: string
|
|
9222
|
+
|
|
9126
9223
|
flags?: string
|
|
9127
9224
|
} | string)[] | ({
|
|
9128
|
-
|
|
9225
|
+
|
|
9226
|
+
pattern: string
|
|
9227
|
+
|
|
9129
9228
|
flags?: string
|
|
9130
9229
|
} | string)))
|
|
9230
|
+
|
|
9131
9231
|
line?: (boolean | (({
|
|
9132
|
-
|
|
9232
|
+
|
|
9233
|
+
pattern: string
|
|
9234
|
+
|
|
9133
9235
|
flags?: string
|
|
9134
9236
|
} | string)[] | ({
|
|
9135
|
-
|
|
9237
|
+
|
|
9238
|
+
pattern: string
|
|
9239
|
+
|
|
9136
9240
|
flags?: string
|
|
9137
9241
|
} | string)))
|
|
9138
9242
|
})
|
|
@@ -9143,7 +9247,7 @@ type PerfectionistSortDecorators = []|[{
|
|
|
9143
9247
|
|
|
9144
9248
|
groups?: (string | string[] | {
|
|
9145
9249
|
|
|
9146
|
-
newlinesBetween
|
|
9250
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9147
9251
|
})[]
|
|
9148
9252
|
}]
|
|
9149
9253
|
// ----- perfectionist/sort-enums -----
|
|
@@ -9154,7 +9258,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
9154
9258
|
order?: ("asc" | "desc")
|
|
9155
9259
|
|
|
9156
9260
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9157
|
-
[k: string]: unknown | undefined
|
|
9158
9261
|
}
|
|
9159
9262
|
|
|
9160
9263
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9168,8 +9271,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
9168
9271
|
order?: ("asc" | "desc")
|
|
9169
9272
|
|
|
9170
9273
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9171
|
-
|
|
9172
|
-
forceNumericSort?: boolean
|
|
9173
9274
|
customGroups?: ({
|
|
9174
9275
|
[k: string]: (string | string[]) | undefined
|
|
9175
9276
|
} | ({
|
|
@@ -9181,10 +9282,9 @@ type PerfectionistSortEnums = []|[{
|
|
|
9181
9282
|
order?: ("asc" | "desc")
|
|
9182
9283
|
|
|
9183
9284
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9184
|
-
[k: string]: unknown | undefined
|
|
9185
9285
|
}
|
|
9186
9286
|
|
|
9187
|
-
groupName
|
|
9287
|
+
groupName: string
|
|
9188
9288
|
|
|
9189
9289
|
order?: ("asc" | "desc")
|
|
9190
9290
|
|
|
@@ -9192,18 +9292,26 @@ type PerfectionistSortEnums = []|[{
|
|
|
9192
9292
|
anyOf?: {
|
|
9193
9293
|
|
|
9194
9294
|
elementValuePattern?: (({
|
|
9195
|
-
|
|
9295
|
+
|
|
9296
|
+
pattern: string
|
|
9297
|
+
|
|
9196
9298
|
flags?: string
|
|
9197
9299
|
} | string)[] | ({
|
|
9198
|
-
|
|
9300
|
+
|
|
9301
|
+
pattern: string
|
|
9302
|
+
|
|
9199
9303
|
flags?: string
|
|
9200
9304
|
} | string))
|
|
9201
9305
|
|
|
9202
9306
|
elementNamePattern?: (({
|
|
9203
|
-
|
|
9307
|
+
|
|
9308
|
+
pattern: string
|
|
9309
|
+
|
|
9204
9310
|
flags?: string
|
|
9205
9311
|
} | string)[] | ({
|
|
9206
|
-
|
|
9312
|
+
|
|
9313
|
+
pattern: string
|
|
9314
|
+
|
|
9207
9315
|
flags?: string
|
|
9208
9316
|
} | string))
|
|
9209
9317
|
}[]
|
|
@@ -9216,53 +9324,76 @@ type PerfectionistSortEnums = []|[{
|
|
|
9216
9324
|
order?: ("asc" | "desc")
|
|
9217
9325
|
|
|
9218
9326
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9219
|
-
[k: string]: unknown | undefined
|
|
9220
9327
|
}
|
|
9221
9328
|
|
|
9222
|
-
groupName
|
|
9329
|
+
groupName: string
|
|
9223
9330
|
|
|
9224
9331
|
order?: ("asc" | "desc")
|
|
9225
9332
|
|
|
9226
9333
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9227
9334
|
|
|
9228
9335
|
elementValuePattern?: (({
|
|
9229
|
-
|
|
9336
|
+
|
|
9337
|
+
pattern: string
|
|
9338
|
+
|
|
9230
9339
|
flags?: string
|
|
9231
9340
|
} | string)[] | ({
|
|
9232
|
-
|
|
9341
|
+
|
|
9342
|
+
pattern: string
|
|
9343
|
+
|
|
9233
9344
|
flags?: string
|
|
9234
9345
|
} | string))
|
|
9235
9346
|
|
|
9236
9347
|
elementNamePattern?: (({
|
|
9237
|
-
|
|
9348
|
+
|
|
9349
|
+
pattern: string
|
|
9350
|
+
|
|
9238
9351
|
flags?: string
|
|
9239
9352
|
} | string)[] | ({
|
|
9240
|
-
|
|
9353
|
+
|
|
9354
|
+
pattern: string
|
|
9355
|
+
|
|
9241
9356
|
flags?: string
|
|
9242
9357
|
} | string))
|
|
9243
9358
|
})[])
|
|
9244
9359
|
|
|
9360
|
+
forceNumericSort?: boolean
|
|
9361
|
+
|
|
9245
9362
|
sortByValue?: boolean
|
|
9246
9363
|
|
|
9247
9364
|
partitionByComment?: (boolean | (({
|
|
9248
|
-
|
|
9365
|
+
|
|
9366
|
+
pattern: string
|
|
9367
|
+
|
|
9249
9368
|
flags?: string
|
|
9250
9369
|
} | string)[] | ({
|
|
9251
|
-
|
|
9370
|
+
|
|
9371
|
+
pattern: string
|
|
9372
|
+
|
|
9252
9373
|
flags?: string
|
|
9253
9374
|
} | string)) | {
|
|
9375
|
+
|
|
9254
9376
|
block?: (boolean | (({
|
|
9255
|
-
|
|
9377
|
+
|
|
9378
|
+
pattern: string
|
|
9379
|
+
|
|
9256
9380
|
flags?: string
|
|
9257
9381
|
} | string)[] | ({
|
|
9258
|
-
|
|
9382
|
+
|
|
9383
|
+
pattern: string
|
|
9384
|
+
|
|
9259
9385
|
flags?: string
|
|
9260
9386
|
} | string)))
|
|
9387
|
+
|
|
9261
9388
|
line?: (boolean | (({
|
|
9262
|
-
|
|
9389
|
+
|
|
9390
|
+
pattern: string
|
|
9391
|
+
|
|
9263
9392
|
flags?: string
|
|
9264
9393
|
} | string)[] | ({
|
|
9265
|
-
|
|
9394
|
+
|
|
9395
|
+
pattern: string
|
|
9396
|
+
|
|
9266
9397
|
flags?: string
|
|
9267
9398
|
} | string)))
|
|
9268
9399
|
})
|
|
@@ -9273,7 +9404,7 @@ type PerfectionistSortEnums = []|[{
|
|
|
9273
9404
|
|
|
9274
9405
|
groups?: (string | string[] | {
|
|
9275
9406
|
|
|
9276
|
-
newlinesBetween
|
|
9407
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9277
9408
|
})[]
|
|
9278
9409
|
}]
|
|
9279
9410
|
// ----- perfectionist/sort-exports -----
|
|
@@ -9284,7 +9415,6 @@ type PerfectionistSortExports = {
|
|
|
9284
9415
|
order?: ("asc" | "desc")
|
|
9285
9416
|
|
|
9286
9417
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9287
|
-
[k: string]: unknown | undefined
|
|
9288
9418
|
}
|
|
9289
9419
|
|
|
9290
9420
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9310,10 +9440,9 @@ type PerfectionistSortExports = {
|
|
|
9310
9440
|
order?: ("asc" | "desc")
|
|
9311
9441
|
|
|
9312
9442
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9313
|
-
[k: string]: unknown | undefined
|
|
9314
9443
|
}
|
|
9315
9444
|
|
|
9316
|
-
groupName
|
|
9445
|
+
groupName: string
|
|
9317
9446
|
|
|
9318
9447
|
order?: ("asc" | "desc")
|
|
9319
9448
|
|
|
@@ -9325,10 +9454,14 @@ type PerfectionistSortExports = {
|
|
|
9325
9454
|
selector?: "export"
|
|
9326
9455
|
|
|
9327
9456
|
elementNamePattern?: (({
|
|
9328
|
-
|
|
9457
|
+
|
|
9458
|
+
pattern: string
|
|
9459
|
+
|
|
9329
9460
|
flags?: string
|
|
9330
9461
|
} | string)[] | ({
|
|
9331
|
-
|
|
9462
|
+
|
|
9463
|
+
pattern: string
|
|
9464
|
+
|
|
9332
9465
|
flags?: string
|
|
9333
9466
|
} | string))
|
|
9334
9467
|
}[]
|
|
@@ -9341,10 +9474,9 @@ type PerfectionistSortExports = {
|
|
|
9341
9474
|
order?: ("asc" | "desc")
|
|
9342
9475
|
|
|
9343
9476
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9344
|
-
[k: string]: unknown | undefined
|
|
9345
9477
|
}
|
|
9346
9478
|
|
|
9347
|
-
groupName
|
|
9479
|
+
groupName: string
|
|
9348
9480
|
|
|
9349
9481
|
order?: ("asc" | "desc")
|
|
9350
9482
|
|
|
@@ -9355,33 +9487,51 @@ type PerfectionistSortExports = {
|
|
|
9355
9487
|
selector?: "export"
|
|
9356
9488
|
|
|
9357
9489
|
elementNamePattern?: (({
|
|
9358
|
-
|
|
9490
|
+
|
|
9491
|
+
pattern: string
|
|
9492
|
+
|
|
9359
9493
|
flags?: string
|
|
9360
9494
|
} | string)[] | ({
|
|
9361
|
-
|
|
9495
|
+
|
|
9496
|
+
pattern: string
|
|
9497
|
+
|
|
9362
9498
|
flags?: string
|
|
9363
9499
|
} | string))
|
|
9364
9500
|
})[]
|
|
9365
9501
|
|
|
9366
9502
|
partitionByComment?: (boolean | (({
|
|
9367
|
-
|
|
9503
|
+
|
|
9504
|
+
pattern: string
|
|
9505
|
+
|
|
9368
9506
|
flags?: string
|
|
9369
9507
|
} | string)[] | ({
|
|
9370
|
-
|
|
9508
|
+
|
|
9509
|
+
pattern: string
|
|
9510
|
+
|
|
9371
9511
|
flags?: string
|
|
9372
9512
|
} | string)) | {
|
|
9513
|
+
|
|
9373
9514
|
block?: (boolean | (({
|
|
9374
|
-
|
|
9515
|
+
|
|
9516
|
+
pattern: string
|
|
9517
|
+
|
|
9375
9518
|
flags?: string
|
|
9376
9519
|
} | string)[] | ({
|
|
9377
|
-
|
|
9520
|
+
|
|
9521
|
+
pattern: string
|
|
9522
|
+
|
|
9378
9523
|
flags?: string
|
|
9379
9524
|
} | string)))
|
|
9525
|
+
|
|
9380
9526
|
line?: (boolean | (({
|
|
9381
|
-
|
|
9527
|
+
|
|
9528
|
+
pattern: string
|
|
9529
|
+
|
|
9382
9530
|
flags?: string
|
|
9383
9531
|
} | string)[] | ({
|
|
9384
|
-
|
|
9532
|
+
|
|
9533
|
+
pattern: string
|
|
9534
|
+
|
|
9385
9535
|
flags?: string
|
|
9386
9536
|
} | string)))
|
|
9387
9537
|
})
|
|
@@ -9392,7 +9542,7 @@ type PerfectionistSortExports = {
|
|
|
9392
9542
|
|
|
9393
9543
|
groups?: (string | string[] | {
|
|
9394
9544
|
|
|
9395
|
-
newlinesBetween
|
|
9545
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9396
9546
|
})[]
|
|
9397
9547
|
}[]
|
|
9398
9548
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
@@ -9403,7 +9553,6 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
9403
9553
|
order?: ("asc" | "desc")
|
|
9404
9554
|
|
|
9405
9555
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9406
|
-
[k: string]: unknown | undefined
|
|
9407
9556
|
}
|
|
9408
9557
|
|
|
9409
9558
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9424,18 +9573,17 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
9424
9573
|
|
|
9425
9574
|
groups?: (string | string[] | {
|
|
9426
9575
|
|
|
9427
|
-
newlinesBetween
|
|
9576
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9428
9577
|
})[]
|
|
9429
9578
|
}]
|
|
9430
|
-
// ----- perfectionist/sort-
|
|
9431
|
-
type
|
|
9579
|
+
// ----- perfectionist/sort-imports -----
|
|
9580
|
+
type PerfectionistSortImports = {
|
|
9432
9581
|
|
|
9433
9582
|
fallbackSort?: {
|
|
9434
9583
|
|
|
9435
9584
|
order?: ("asc" | "desc")
|
|
9436
9585
|
|
|
9437
9586
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9438
|
-
[k: string]: unknown | undefined
|
|
9439
9587
|
}
|
|
9440
9588
|
|
|
9441
9589
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9450,7 +9598,14 @@ type PerfectionistSortInterfaces = {
|
|
|
9450
9598
|
|
|
9451
9599
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9452
9600
|
customGroups?: ({
|
|
9453
|
-
|
|
9601
|
+
|
|
9602
|
+
value?: {
|
|
9603
|
+
[k: string]: (string | string[]) | undefined
|
|
9604
|
+
}
|
|
9605
|
+
|
|
9606
|
+
type?: {
|
|
9607
|
+
[k: string]: (string | string[]) | undefined
|
|
9608
|
+
}
|
|
9454
9609
|
} | ({
|
|
9455
9610
|
|
|
9456
9611
|
newlinesInside?: ("always" | "never")
|
|
@@ -9460,37 +9615,42 @@ type PerfectionistSortInterfaces = {
|
|
|
9460
9615
|
order?: ("asc" | "desc")
|
|
9461
9616
|
|
|
9462
9617
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9463
|
-
sortBy?: ("name" | "value")
|
|
9464
|
-
[k: string]: unknown | undefined
|
|
9465
9618
|
}
|
|
9466
9619
|
|
|
9467
|
-
groupName
|
|
9620
|
+
groupName: string
|
|
9468
9621
|
|
|
9469
9622
|
order?: ("asc" | "desc")
|
|
9470
9623
|
|
|
9471
9624
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9472
9625
|
anyOf?: {
|
|
9473
9626
|
|
|
9474
|
-
modifiers?: ("
|
|
9627
|
+
modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
|
|
9475
9628
|
|
|
9476
|
-
selector?: ("
|
|
9629
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
|
|
9477
9630
|
|
|
9478
9631
|
elementValuePattern?: (({
|
|
9479
|
-
|
|
9632
|
+
|
|
9633
|
+
pattern: string
|
|
9634
|
+
|
|
9480
9635
|
flags?: string
|
|
9481
9636
|
} | string)[] | ({
|
|
9482
|
-
|
|
9637
|
+
|
|
9638
|
+
pattern: string
|
|
9639
|
+
|
|
9483
9640
|
flags?: string
|
|
9484
9641
|
} | string))
|
|
9485
9642
|
|
|
9486
9643
|
elementNamePattern?: (({
|
|
9487
|
-
|
|
9644
|
+
|
|
9645
|
+
pattern: string
|
|
9646
|
+
|
|
9488
9647
|
flags?: string
|
|
9489
9648
|
} | string)[] | ({
|
|
9490
|
-
|
|
9649
|
+
|
|
9650
|
+
pattern: string
|
|
9651
|
+
|
|
9491
9652
|
flags?: string
|
|
9492
9653
|
} | string))
|
|
9493
|
-
sortBy?: ("name" | "value")
|
|
9494
9654
|
}[]
|
|
9495
9655
|
} | {
|
|
9496
9656
|
|
|
@@ -9501,77 +9661,84 @@ type PerfectionistSortInterfaces = {
|
|
|
9501
9661
|
order?: ("asc" | "desc")
|
|
9502
9662
|
|
|
9503
9663
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9504
|
-
sortBy?: ("name" | "value")
|
|
9505
|
-
[k: string]: unknown | undefined
|
|
9506
9664
|
}
|
|
9507
9665
|
|
|
9508
|
-
groupName
|
|
9666
|
+
groupName: string
|
|
9509
9667
|
|
|
9510
9668
|
order?: ("asc" | "desc")
|
|
9511
9669
|
|
|
9512
9670
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9513
9671
|
|
|
9514
|
-
modifiers?: ("
|
|
9672
|
+
modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
|
|
9515
9673
|
|
|
9516
|
-
selector?: ("
|
|
9674
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
|
|
9517
9675
|
|
|
9518
9676
|
elementValuePattern?: (({
|
|
9519
|
-
|
|
9677
|
+
|
|
9678
|
+
pattern: string
|
|
9679
|
+
|
|
9520
9680
|
flags?: string
|
|
9521
9681
|
} | string)[] | ({
|
|
9522
|
-
|
|
9682
|
+
|
|
9683
|
+
pattern: string
|
|
9684
|
+
|
|
9523
9685
|
flags?: string
|
|
9524
9686
|
} | string))
|
|
9525
9687
|
|
|
9526
9688
|
elementNamePattern?: (({
|
|
9527
|
-
|
|
9689
|
+
|
|
9690
|
+
pattern: string
|
|
9691
|
+
|
|
9528
9692
|
flags?: string
|
|
9529
9693
|
} | string)[] | ({
|
|
9530
|
-
|
|
9694
|
+
|
|
9695
|
+
pattern: string
|
|
9696
|
+
|
|
9531
9697
|
flags?: string
|
|
9532
9698
|
} | string))
|
|
9533
|
-
sortBy?: ("name" | "value")
|
|
9534
9699
|
})[])
|
|
9535
9700
|
|
|
9536
|
-
|
|
9537
|
-
|
|
9538
|
-
|
|
9539
|
-
|
|
9540
|
-
|
|
9541
|
-
|
|
9542
|
-
|
|
9543
|
-
pattern?: string
|
|
9544
|
-
flags?: string
|
|
9545
|
-
} | string))
|
|
9546
|
-
|
|
9547
|
-
declarationMatchesPattern?: (({
|
|
9548
|
-
pattern?: string
|
|
9549
|
-
flags?: string
|
|
9550
|
-
} | string)[] | ({
|
|
9551
|
-
pattern?: string
|
|
9552
|
-
flags?: string
|
|
9553
|
-
} | string))
|
|
9554
|
-
}
|
|
9701
|
+
maxLineLength?: number
|
|
9702
|
+
|
|
9703
|
+
sortSideEffects?: boolean
|
|
9704
|
+
|
|
9705
|
+
environment?: ("node" | "bun")
|
|
9706
|
+
|
|
9707
|
+
tsconfigRootDir?: string
|
|
9555
9708
|
|
|
9556
9709
|
partitionByComment?: (boolean | (({
|
|
9557
|
-
|
|
9710
|
+
|
|
9711
|
+
pattern: string
|
|
9712
|
+
|
|
9558
9713
|
flags?: string
|
|
9559
9714
|
} | string)[] | ({
|
|
9560
|
-
|
|
9715
|
+
|
|
9716
|
+
pattern: string
|
|
9717
|
+
|
|
9561
9718
|
flags?: string
|
|
9562
9719
|
} | string)) | {
|
|
9720
|
+
|
|
9563
9721
|
block?: (boolean | (({
|
|
9564
|
-
|
|
9722
|
+
|
|
9723
|
+
pattern: string
|
|
9724
|
+
|
|
9565
9725
|
flags?: string
|
|
9566
9726
|
} | string)[] | ({
|
|
9567
|
-
|
|
9727
|
+
|
|
9728
|
+
pattern: string
|
|
9729
|
+
|
|
9568
9730
|
flags?: string
|
|
9569
9731
|
} | string)))
|
|
9732
|
+
|
|
9570
9733
|
line?: (boolean | (({
|
|
9571
|
-
|
|
9734
|
+
|
|
9735
|
+
pattern: string
|
|
9736
|
+
|
|
9572
9737
|
flags?: string
|
|
9573
9738
|
} | string)[] | ({
|
|
9574
|
-
|
|
9739
|
+
|
|
9740
|
+
pattern: string
|
|
9741
|
+
|
|
9575
9742
|
flags?: string
|
|
9576
9743
|
} | string)))
|
|
9577
9744
|
})
|
|
@@ -9580,29 +9747,32 @@ type PerfectionistSortInterfaces = {
|
|
|
9580
9747
|
|
|
9581
9748
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9582
9749
|
|
|
9583
|
-
|
|
9584
|
-
|
|
9750
|
+
internalPattern?: (({
|
|
9751
|
+
|
|
9752
|
+
pattern: string
|
|
9753
|
+
|
|
9585
9754
|
flags?: string
|
|
9586
9755
|
} | string)[] | ({
|
|
9587
|
-
|
|
9756
|
+
|
|
9757
|
+
pattern: string
|
|
9758
|
+
|
|
9588
9759
|
flags?: string
|
|
9589
9760
|
} | string))
|
|
9590
|
-
sortBy?: ("name" | "value")
|
|
9591
9761
|
|
|
9592
9762
|
groups?: (string | string[] | {
|
|
9593
9763
|
|
|
9594
|
-
newlinesBetween
|
|
9764
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9595
9765
|
})[]
|
|
9596
9766
|
}[]
|
|
9597
|
-
// ----- perfectionist/sort-
|
|
9598
|
-
type
|
|
9767
|
+
// ----- perfectionist/sort-interfaces -----
|
|
9768
|
+
type PerfectionistSortInterfaces = {
|
|
9599
9769
|
|
|
9600
9770
|
fallbackSort?: {
|
|
9601
9771
|
|
|
9602
9772
|
order?: ("asc" | "desc")
|
|
9603
9773
|
|
|
9604
9774
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9605
|
-
|
|
9775
|
+
sortBy?: ("name" | "value")
|
|
9606
9776
|
}
|
|
9607
9777
|
|
|
9608
9778
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9616,48 +9786,332 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
9616
9786
|
order?: ("asc" | "desc")
|
|
9617
9787
|
|
|
9618
9788
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9619
|
-
|
|
9620
|
-
|
|
9621
|
-
|
|
9622
|
-
flags?: string
|
|
9623
|
-
} | string)[] | ({
|
|
9624
|
-
pattern?: string
|
|
9625
|
-
flags?: string
|
|
9626
|
-
} | string)) | {
|
|
9627
|
-
block?: (boolean | (({
|
|
9628
|
-
pattern?: string
|
|
9629
|
-
flags?: string
|
|
9630
|
-
} | string)[] | ({
|
|
9631
|
-
pattern?: string
|
|
9632
|
-
flags?: string
|
|
9633
|
-
} | string)))
|
|
9634
|
-
line?: (boolean | (({
|
|
9635
|
-
pattern?: string
|
|
9636
|
-
flags?: string
|
|
9637
|
-
} | string)[] | ({
|
|
9638
|
-
pattern?: string
|
|
9639
|
-
flags?: string
|
|
9640
|
-
} | string)))
|
|
9641
|
-
})
|
|
9642
|
-
|
|
9643
|
-
partitionByNewLine?: boolean
|
|
9644
|
-
|
|
9645
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9646
|
-
|
|
9647
|
-
groups?: (string | string[] | {
|
|
9789
|
+
customGroups?: ({
|
|
9790
|
+
[k: string]: (string | string[]) | undefined
|
|
9791
|
+
} | ({
|
|
9648
9792
|
|
|
9649
|
-
|
|
9650
|
-
|
|
9651
|
-
|
|
9652
|
-
|
|
9653
|
-
|
|
9654
|
-
|
|
9655
|
-
|
|
9793
|
+
newlinesInside?: ("always" | "never")
|
|
9794
|
+
|
|
9795
|
+
fallbackSort?: {
|
|
9796
|
+
|
|
9797
|
+
order?: ("asc" | "desc")
|
|
9798
|
+
|
|
9799
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9800
|
+
sortBy?: ("name" | "value")
|
|
9801
|
+
}
|
|
9802
|
+
|
|
9803
|
+
groupName: string
|
|
9804
|
+
|
|
9805
|
+
order?: ("asc" | "desc")
|
|
9806
|
+
|
|
9807
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9808
|
+
anyOf?: {
|
|
9809
|
+
|
|
9810
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9811
|
+
|
|
9812
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9813
|
+
|
|
9814
|
+
elementValuePattern?: (({
|
|
9815
|
+
|
|
9816
|
+
pattern: string
|
|
9817
|
+
|
|
9818
|
+
flags?: string
|
|
9819
|
+
} | string)[] | ({
|
|
9820
|
+
|
|
9821
|
+
pattern: string
|
|
9822
|
+
|
|
9823
|
+
flags?: string
|
|
9824
|
+
} | string))
|
|
9825
|
+
|
|
9826
|
+
elementNamePattern?: (({
|
|
9827
|
+
|
|
9828
|
+
pattern: string
|
|
9829
|
+
|
|
9830
|
+
flags?: string
|
|
9831
|
+
} | string)[] | ({
|
|
9832
|
+
|
|
9833
|
+
pattern: string
|
|
9834
|
+
|
|
9835
|
+
flags?: string
|
|
9836
|
+
} | string))
|
|
9837
|
+
sortBy?: ("name" | "value")
|
|
9838
|
+
}[]
|
|
9839
|
+
} | {
|
|
9840
|
+
|
|
9841
|
+
newlinesInside?: ("always" | "never")
|
|
9842
|
+
|
|
9843
|
+
fallbackSort?: {
|
|
9844
|
+
|
|
9845
|
+
order?: ("asc" | "desc")
|
|
9846
|
+
|
|
9847
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9848
|
+
sortBy?: ("name" | "value")
|
|
9849
|
+
}
|
|
9850
|
+
|
|
9851
|
+
groupName: string
|
|
9852
|
+
|
|
9853
|
+
order?: ("asc" | "desc")
|
|
9854
|
+
|
|
9855
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9856
|
+
|
|
9857
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9858
|
+
|
|
9859
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9860
|
+
|
|
9861
|
+
elementValuePattern?: (({
|
|
9862
|
+
|
|
9863
|
+
pattern: string
|
|
9864
|
+
|
|
9865
|
+
flags?: string
|
|
9866
|
+
} | string)[] | ({
|
|
9867
|
+
|
|
9868
|
+
pattern: string
|
|
9869
|
+
|
|
9870
|
+
flags?: string
|
|
9871
|
+
} | string))
|
|
9872
|
+
|
|
9873
|
+
elementNamePattern?: (({
|
|
9874
|
+
|
|
9875
|
+
pattern: string
|
|
9876
|
+
|
|
9877
|
+
flags?: string
|
|
9878
|
+
} | string)[] | ({
|
|
9879
|
+
|
|
9880
|
+
pattern: string
|
|
9881
|
+
|
|
9882
|
+
flags?: string
|
|
9883
|
+
} | string))
|
|
9884
|
+
sortBy?: ("name" | "value")
|
|
9885
|
+
})[])
|
|
9886
|
+
|
|
9887
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
9888
|
+
|
|
9889
|
+
useConfigurationIf?: {
|
|
9890
|
+
|
|
9891
|
+
allNamesMatchPattern?: (({
|
|
9892
|
+
|
|
9893
|
+
pattern: string
|
|
9894
|
+
|
|
9895
|
+
flags?: string
|
|
9896
|
+
} | string)[] | ({
|
|
9897
|
+
|
|
9898
|
+
pattern: string
|
|
9899
|
+
|
|
9900
|
+
flags?: string
|
|
9901
|
+
} | string))
|
|
9902
|
+
|
|
9903
|
+
declarationMatchesPattern?: (({
|
|
9904
|
+
|
|
9905
|
+
pattern: string
|
|
9906
|
+
|
|
9907
|
+
flags?: string
|
|
9908
|
+
} | string)[] | ({
|
|
9909
|
+
|
|
9910
|
+
pattern: string
|
|
9911
|
+
|
|
9912
|
+
flags?: string
|
|
9913
|
+
} | string))
|
|
9914
|
+
}
|
|
9915
|
+
|
|
9916
|
+
partitionByComment?: (boolean | (({
|
|
9917
|
+
|
|
9918
|
+
pattern: string
|
|
9919
|
+
|
|
9920
|
+
flags?: string
|
|
9921
|
+
} | string)[] | ({
|
|
9922
|
+
|
|
9923
|
+
pattern: string
|
|
9924
|
+
|
|
9925
|
+
flags?: string
|
|
9926
|
+
} | string)) | {
|
|
9927
|
+
|
|
9928
|
+
block?: (boolean | (({
|
|
9929
|
+
|
|
9930
|
+
pattern: string
|
|
9931
|
+
|
|
9932
|
+
flags?: string
|
|
9933
|
+
} | string)[] | ({
|
|
9934
|
+
|
|
9935
|
+
pattern: string
|
|
9936
|
+
|
|
9937
|
+
flags?: string
|
|
9938
|
+
} | string)))
|
|
9939
|
+
|
|
9940
|
+
line?: (boolean | (({
|
|
9941
|
+
|
|
9942
|
+
pattern: string
|
|
9943
|
+
|
|
9944
|
+
flags?: string
|
|
9945
|
+
} | string)[] | ({
|
|
9946
|
+
|
|
9947
|
+
pattern: string
|
|
9948
|
+
|
|
9949
|
+
flags?: string
|
|
9950
|
+
} | string)))
|
|
9951
|
+
})
|
|
9952
|
+
|
|
9953
|
+
partitionByNewLine?: boolean
|
|
9954
|
+
|
|
9955
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9956
|
+
|
|
9957
|
+
ignorePattern?: (({
|
|
9958
|
+
|
|
9959
|
+
pattern: string
|
|
9960
|
+
|
|
9961
|
+
flags?: string
|
|
9962
|
+
} | string)[] | ({
|
|
9963
|
+
|
|
9964
|
+
pattern: string
|
|
9965
|
+
|
|
9966
|
+
flags?: string
|
|
9967
|
+
} | string))
|
|
9968
|
+
sortBy?: ("name" | "value")
|
|
9969
|
+
|
|
9970
|
+
groups?: (string | string[] | {
|
|
9971
|
+
|
|
9972
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9973
|
+
})[]
|
|
9974
|
+
}[]
|
|
9975
|
+
// ----- perfectionist/sort-intersection-types -----
|
|
9976
|
+
type PerfectionistSortIntersectionTypes = {
|
|
9977
|
+
|
|
9978
|
+
fallbackSort?: {
|
|
9979
|
+
|
|
9980
|
+
order?: ("asc" | "desc")
|
|
9981
|
+
|
|
9982
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9983
|
+
}
|
|
9984
|
+
|
|
9985
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9986
|
+
|
|
9987
|
+
ignoreCase?: boolean
|
|
9988
|
+
|
|
9989
|
+
alphabet?: string
|
|
9990
|
+
|
|
9991
|
+
locales?: (string | string[])
|
|
9992
|
+
|
|
9993
|
+
order?: ("asc" | "desc")
|
|
9994
|
+
|
|
9995
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9996
|
+
|
|
9997
|
+
customGroups?: ({
|
|
9998
|
+
|
|
9999
|
+
newlinesInside?: ("always" | "never")
|
|
10000
|
+
|
|
10001
|
+
fallbackSort?: {
|
|
10002
|
+
|
|
10003
|
+
order?: ("asc" | "desc")
|
|
10004
|
+
|
|
10005
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10006
|
+
}
|
|
10007
|
+
|
|
10008
|
+
groupName: string
|
|
10009
|
+
|
|
10010
|
+
order?: ("asc" | "desc")
|
|
10011
|
+
|
|
10012
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10013
|
+
anyOf?: {
|
|
10014
|
+
|
|
10015
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
10016
|
+
|
|
10017
|
+
elementNamePattern?: (({
|
|
10018
|
+
|
|
10019
|
+
pattern: string
|
|
10020
|
+
|
|
10021
|
+
flags?: string
|
|
10022
|
+
} | string)[] | ({
|
|
10023
|
+
|
|
10024
|
+
pattern: string
|
|
10025
|
+
|
|
10026
|
+
flags?: string
|
|
10027
|
+
} | string))
|
|
10028
|
+
}[]
|
|
10029
|
+
} | {
|
|
10030
|
+
|
|
10031
|
+
newlinesInside?: ("always" | "never")
|
|
10032
|
+
|
|
10033
|
+
fallbackSort?: {
|
|
10034
|
+
|
|
10035
|
+
order?: ("asc" | "desc")
|
|
10036
|
+
|
|
10037
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10038
|
+
}
|
|
10039
|
+
|
|
10040
|
+
groupName: string
|
|
10041
|
+
|
|
10042
|
+
order?: ("asc" | "desc")
|
|
10043
|
+
|
|
10044
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10045
|
+
|
|
10046
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
10047
|
+
|
|
10048
|
+
elementNamePattern?: (({
|
|
10049
|
+
|
|
10050
|
+
pattern: string
|
|
10051
|
+
|
|
10052
|
+
flags?: string
|
|
10053
|
+
} | string)[] | ({
|
|
10054
|
+
|
|
10055
|
+
pattern: string
|
|
10056
|
+
|
|
10057
|
+
flags?: string
|
|
10058
|
+
} | string))
|
|
10059
|
+
})[]
|
|
10060
|
+
|
|
10061
|
+
partitionByComment?: (boolean | (({
|
|
10062
|
+
|
|
10063
|
+
pattern: string
|
|
10064
|
+
|
|
10065
|
+
flags?: string
|
|
10066
|
+
} | string)[] | ({
|
|
10067
|
+
|
|
10068
|
+
pattern: string
|
|
10069
|
+
|
|
10070
|
+
flags?: string
|
|
10071
|
+
} | string)) | {
|
|
10072
|
+
|
|
10073
|
+
block?: (boolean | (({
|
|
10074
|
+
|
|
10075
|
+
pattern: string
|
|
10076
|
+
|
|
10077
|
+
flags?: string
|
|
10078
|
+
} | string)[] | ({
|
|
10079
|
+
|
|
10080
|
+
pattern: string
|
|
10081
|
+
|
|
10082
|
+
flags?: string
|
|
10083
|
+
} | string)))
|
|
10084
|
+
|
|
10085
|
+
line?: (boolean | (({
|
|
10086
|
+
|
|
10087
|
+
pattern: string
|
|
10088
|
+
|
|
10089
|
+
flags?: string
|
|
10090
|
+
} | string)[] | ({
|
|
10091
|
+
|
|
10092
|
+
pattern: string
|
|
10093
|
+
|
|
10094
|
+
flags?: string
|
|
10095
|
+
} | string)))
|
|
10096
|
+
})
|
|
10097
|
+
|
|
10098
|
+
partitionByNewLine?: boolean
|
|
10099
|
+
|
|
10100
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10101
|
+
|
|
10102
|
+
groups?: (string | string[] | {
|
|
10103
|
+
|
|
10104
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
10105
|
+
})[]
|
|
10106
|
+
}[]
|
|
10107
|
+
// ----- perfectionist/sort-jsx-props -----
|
|
10108
|
+
type PerfectionistSortJsxProps = {
|
|
10109
|
+
|
|
10110
|
+
fallbackSort?: {
|
|
9656
10111
|
|
|
9657
10112
|
order?: ("asc" | "desc")
|
|
9658
10113
|
|
|
9659
10114
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9660
|
-
[k: string]: unknown | undefined
|
|
9661
10115
|
}
|
|
9662
10116
|
|
|
9663
10117
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9682,10 +10136,9 @@ type PerfectionistSortJsxProps = {
|
|
|
9682
10136
|
order?: ("asc" | "desc")
|
|
9683
10137
|
|
|
9684
10138
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9685
|
-
[k: string]: unknown | undefined
|
|
9686
10139
|
}
|
|
9687
10140
|
|
|
9688
|
-
groupName
|
|
10141
|
+
groupName: string
|
|
9689
10142
|
|
|
9690
10143
|
order?: ("asc" | "desc")
|
|
9691
10144
|
|
|
@@ -9697,18 +10150,26 @@ type PerfectionistSortJsxProps = {
|
|
|
9697
10150
|
selector?: ("multiline" | "prop" | "shorthand")
|
|
9698
10151
|
|
|
9699
10152
|
elementValuePattern?: (({
|
|
9700
|
-
|
|
10153
|
+
|
|
10154
|
+
pattern: string
|
|
10155
|
+
|
|
9701
10156
|
flags?: string
|
|
9702
10157
|
} | string)[] | ({
|
|
9703
|
-
|
|
10158
|
+
|
|
10159
|
+
pattern: string
|
|
10160
|
+
|
|
9704
10161
|
flags?: string
|
|
9705
10162
|
} | string))
|
|
9706
10163
|
|
|
9707
10164
|
elementNamePattern?: (({
|
|
9708
|
-
|
|
10165
|
+
|
|
10166
|
+
pattern: string
|
|
10167
|
+
|
|
9709
10168
|
flags?: string
|
|
9710
10169
|
} | string)[] | ({
|
|
9711
|
-
|
|
10170
|
+
|
|
10171
|
+
pattern: string
|
|
10172
|
+
|
|
9712
10173
|
flags?: string
|
|
9713
10174
|
} | string))
|
|
9714
10175
|
}[]
|
|
@@ -9721,10 +10182,9 @@ type PerfectionistSortJsxProps = {
|
|
|
9721
10182
|
order?: ("asc" | "desc")
|
|
9722
10183
|
|
|
9723
10184
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9724
|
-
[k: string]: unknown | undefined
|
|
9725
10185
|
}
|
|
9726
10186
|
|
|
9727
|
-
groupName
|
|
10187
|
+
groupName: string
|
|
9728
10188
|
|
|
9729
10189
|
order?: ("asc" | "desc")
|
|
9730
10190
|
|
|
@@ -9735,36 +10195,53 @@ type PerfectionistSortJsxProps = {
|
|
|
9735
10195
|
selector?: ("multiline" | "prop" | "shorthand")
|
|
9736
10196
|
|
|
9737
10197
|
elementValuePattern?: (({
|
|
9738
|
-
|
|
10198
|
+
|
|
10199
|
+
pattern: string
|
|
10200
|
+
|
|
9739
10201
|
flags?: string
|
|
9740
10202
|
} | string)[] | ({
|
|
9741
|
-
|
|
10203
|
+
|
|
10204
|
+
pattern: string
|
|
10205
|
+
|
|
9742
10206
|
flags?: string
|
|
9743
10207
|
} | string))
|
|
9744
10208
|
|
|
9745
10209
|
elementNamePattern?: (({
|
|
9746
|
-
|
|
10210
|
+
|
|
10211
|
+
pattern: string
|
|
10212
|
+
|
|
9747
10213
|
flags?: string
|
|
9748
10214
|
} | string)[] | ({
|
|
9749
|
-
|
|
10215
|
+
|
|
10216
|
+
pattern: string
|
|
10217
|
+
|
|
9750
10218
|
flags?: string
|
|
9751
10219
|
} | string))
|
|
9752
10220
|
})[])
|
|
10221
|
+
|
|
9753
10222
|
useConfigurationIf?: {
|
|
9754
10223
|
|
|
9755
10224
|
allNamesMatchPattern?: (({
|
|
9756
|
-
|
|
10225
|
+
|
|
10226
|
+
pattern: string
|
|
10227
|
+
|
|
9757
10228
|
flags?: string
|
|
9758
10229
|
} | string)[] | ({
|
|
9759
|
-
|
|
10230
|
+
|
|
10231
|
+
pattern: string
|
|
10232
|
+
|
|
9760
10233
|
flags?: string
|
|
9761
10234
|
} | string))
|
|
9762
10235
|
|
|
9763
10236
|
tagMatchesPattern?: (({
|
|
9764
|
-
|
|
10237
|
+
|
|
10238
|
+
pattern: string
|
|
10239
|
+
|
|
9765
10240
|
flags?: string
|
|
9766
10241
|
} | string)[] | ({
|
|
9767
|
-
|
|
10242
|
+
|
|
10243
|
+
pattern: string
|
|
10244
|
+
|
|
9768
10245
|
flags?: string
|
|
9769
10246
|
} | string))
|
|
9770
10247
|
}
|
|
@@ -9774,16 +10251,20 @@ type PerfectionistSortJsxProps = {
|
|
|
9774
10251
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9775
10252
|
|
|
9776
10253
|
ignorePattern?: (({
|
|
9777
|
-
|
|
10254
|
+
|
|
10255
|
+
pattern: string
|
|
10256
|
+
|
|
9778
10257
|
flags?: string
|
|
9779
10258
|
} | string)[] | ({
|
|
9780
|
-
|
|
10259
|
+
|
|
10260
|
+
pattern: string
|
|
10261
|
+
|
|
9781
10262
|
flags?: string
|
|
9782
10263
|
} | string))
|
|
9783
10264
|
|
|
9784
10265
|
groups?: (string | string[] | {
|
|
9785
10266
|
|
|
9786
|
-
newlinesBetween
|
|
10267
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9787
10268
|
})[]
|
|
9788
10269
|
}[]
|
|
9789
10270
|
// ----- perfectionist/sort-maps -----
|
|
@@ -9794,7 +10275,6 @@ type PerfectionistSortMaps = {
|
|
|
9794
10275
|
order?: ("asc" | "desc")
|
|
9795
10276
|
|
|
9796
10277
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9797
|
-
[k: string]: unknown | undefined
|
|
9798
10278
|
}
|
|
9799
10279
|
|
|
9800
10280
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9818,10 +10298,9 @@ type PerfectionistSortMaps = {
|
|
|
9818
10298
|
order?: ("asc" | "desc")
|
|
9819
10299
|
|
|
9820
10300
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9821
|
-
[k: string]: unknown | undefined
|
|
9822
10301
|
}
|
|
9823
10302
|
|
|
9824
|
-
groupName
|
|
10303
|
+
groupName: string
|
|
9825
10304
|
|
|
9826
10305
|
order?: ("asc" | "desc")
|
|
9827
10306
|
|
|
@@ -9829,10 +10308,14 @@ type PerfectionistSortMaps = {
|
|
|
9829
10308
|
anyOf?: {
|
|
9830
10309
|
|
|
9831
10310
|
elementNamePattern?: (({
|
|
9832
|
-
|
|
10311
|
+
|
|
10312
|
+
pattern: string
|
|
10313
|
+
|
|
9833
10314
|
flags?: string
|
|
9834
10315
|
} | string)[] | ({
|
|
9835
|
-
|
|
10316
|
+
|
|
10317
|
+
pattern: string
|
|
10318
|
+
|
|
9836
10319
|
flags?: string
|
|
9837
10320
|
} | string))
|
|
9838
10321
|
}[]
|
|
@@ -9845,53 +10328,75 @@ type PerfectionistSortMaps = {
|
|
|
9845
10328
|
order?: ("asc" | "desc")
|
|
9846
10329
|
|
|
9847
10330
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9848
|
-
[k: string]: unknown | undefined
|
|
9849
10331
|
}
|
|
9850
10332
|
|
|
9851
|
-
groupName
|
|
10333
|
+
groupName: string
|
|
9852
10334
|
|
|
9853
10335
|
order?: ("asc" | "desc")
|
|
9854
10336
|
|
|
9855
10337
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9856
10338
|
|
|
9857
10339
|
elementNamePattern?: (({
|
|
9858
|
-
|
|
10340
|
+
|
|
10341
|
+
pattern: string
|
|
10342
|
+
|
|
9859
10343
|
flags?: string
|
|
9860
10344
|
} | string)[] | ({
|
|
9861
|
-
|
|
10345
|
+
|
|
10346
|
+
pattern: string
|
|
10347
|
+
|
|
9862
10348
|
flags?: string
|
|
9863
10349
|
} | string))
|
|
9864
10350
|
})[]
|
|
10351
|
+
|
|
9865
10352
|
useConfigurationIf?: {
|
|
9866
10353
|
|
|
9867
10354
|
allNamesMatchPattern?: (({
|
|
9868
|
-
|
|
10355
|
+
|
|
10356
|
+
pattern: string
|
|
10357
|
+
|
|
9869
10358
|
flags?: string
|
|
9870
10359
|
} | string)[] | ({
|
|
9871
|
-
|
|
10360
|
+
|
|
10361
|
+
pattern: string
|
|
10362
|
+
|
|
9872
10363
|
flags?: string
|
|
9873
10364
|
} | string))
|
|
9874
10365
|
}
|
|
9875
10366
|
|
|
9876
10367
|
partitionByComment?: (boolean | (({
|
|
9877
|
-
|
|
10368
|
+
|
|
10369
|
+
pattern: string
|
|
10370
|
+
|
|
9878
10371
|
flags?: string
|
|
9879
10372
|
} | string)[] | ({
|
|
9880
|
-
|
|
10373
|
+
|
|
10374
|
+
pattern: string
|
|
10375
|
+
|
|
9881
10376
|
flags?: string
|
|
9882
10377
|
} | string)) | {
|
|
10378
|
+
|
|
9883
10379
|
block?: (boolean | (({
|
|
9884
|
-
|
|
10380
|
+
|
|
10381
|
+
pattern: string
|
|
10382
|
+
|
|
9885
10383
|
flags?: string
|
|
9886
10384
|
} | string)[] | ({
|
|
9887
|
-
|
|
10385
|
+
|
|
10386
|
+
pattern: string
|
|
10387
|
+
|
|
9888
10388
|
flags?: string
|
|
9889
10389
|
} | string)))
|
|
10390
|
+
|
|
9890
10391
|
line?: (boolean | (({
|
|
9891
|
-
|
|
10392
|
+
|
|
10393
|
+
pattern: string
|
|
10394
|
+
|
|
9892
10395
|
flags?: string
|
|
9893
10396
|
} | string)[] | ({
|
|
9894
|
-
|
|
10397
|
+
|
|
10398
|
+
pattern: string
|
|
10399
|
+
|
|
9895
10400
|
flags?: string
|
|
9896
10401
|
} | string)))
|
|
9897
10402
|
})
|
|
@@ -9902,7 +10407,7 @@ type PerfectionistSortMaps = {
|
|
|
9902
10407
|
|
|
9903
10408
|
groups?: (string | string[] | {
|
|
9904
10409
|
|
|
9905
|
-
newlinesBetween
|
|
10410
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
9906
10411
|
})[]
|
|
9907
10412
|
}[]
|
|
9908
10413
|
// ----- perfectionist/sort-modules -----
|
|
@@ -9913,7 +10418,6 @@ type PerfectionistSortModules = []|[{
|
|
|
9913
10418
|
order?: ("asc" | "desc")
|
|
9914
10419
|
|
|
9915
10420
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9916
|
-
[k: string]: unknown | undefined
|
|
9917
10421
|
}
|
|
9918
10422
|
|
|
9919
10423
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -9937,10 +10441,9 @@ type PerfectionistSortModules = []|[{
|
|
|
9937
10441
|
order?: ("asc" | "desc")
|
|
9938
10442
|
|
|
9939
10443
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9940
|
-
[k: string]: unknown | undefined
|
|
9941
10444
|
}
|
|
9942
10445
|
|
|
9943
|
-
groupName
|
|
10446
|
+
groupName: string
|
|
9944
10447
|
|
|
9945
10448
|
order?: ("asc" | "desc")
|
|
9946
10449
|
|
|
@@ -9952,18 +10455,26 @@ type PerfectionistSortModules = []|[{
|
|
|
9952
10455
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
9953
10456
|
|
|
9954
10457
|
decoratorNamePattern?: (({
|
|
9955
|
-
|
|
10458
|
+
|
|
10459
|
+
pattern: string
|
|
10460
|
+
|
|
9956
10461
|
flags?: string
|
|
9957
10462
|
} | string)[] | ({
|
|
9958
|
-
|
|
10463
|
+
|
|
10464
|
+
pattern: string
|
|
10465
|
+
|
|
9959
10466
|
flags?: string
|
|
9960
10467
|
} | string))
|
|
9961
10468
|
|
|
9962
10469
|
elementNamePattern?: (({
|
|
9963
|
-
|
|
10470
|
+
|
|
10471
|
+
pattern: string
|
|
10472
|
+
|
|
9964
10473
|
flags?: string
|
|
9965
10474
|
} | string)[] | ({
|
|
9966
|
-
|
|
10475
|
+
|
|
10476
|
+
pattern: string
|
|
10477
|
+
|
|
9967
10478
|
flags?: string
|
|
9968
10479
|
} | string))
|
|
9969
10480
|
}[]
|
|
@@ -9976,10 +10487,9 @@ type PerfectionistSortModules = []|[{
|
|
|
9976
10487
|
order?: ("asc" | "desc")
|
|
9977
10488
|
|
|
9978
10489
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9979
|
-
[k: string]: unknown | undefined
|
|
9980
10490
|
}
|
|
9981
10491
|
|
|
9982
|
-
groupName
|
|
10492
|
+
groupName: string
|
|
9983
10493
|
|
|
9984
10494
|
order?: ("asc" | "desc")
|
|
9985
10495
|
|
|
@@ -9990,41 +10500,63 @@ type PerfectionistSortModules = []|[{
|
|
|
9990
10500
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
9991
10501
|
|
|
9992
10502
|
decoratorNamePattern?: (({
|
|
9993
|
-
|
|
10503
|
+
|
|
10504
|
+
pattern: string
|
|
10505
|
+
|
|
9994
10506
|
flags?: string
|
|
9995
10507
|
} | string)[] | ({
|
|
9996
|
-
|
|
10508
|
+
|
|
10509
|
+
pattern: string
|
|
10510
|
+
|
|
9997
10511
|
flags?: string
|
|
9998
10512
|
} | string))
|
|
9999
10513
|
|
|
10000
10514
|
elementNamePattern?: (({
|
|
10001
|
-
|
|
10515
|
+
|
|
10516
|
+
pattern: string
|
|
10517
|
+
|
|
10002
10518
|
flags?: string
|
|
10003
10519
|
} | string)[] | ({
|
|
10004
|
-
|
|
10520
|
+
|
|
10521
|
+
pattern: string
|
|
10522
|
+
|
|
10005
10523
|
flags?: string
|
|
10006
10524
|
} | string))
|
|
10007
10525
|
})[]
|
|
10008
10526
|
|
|
10009
10527
|
partitionByComment?: (boolean | (({
|
|
10010
|
-
|
|
10528
|
+
|
|
10529
|
+
pattern: string
|
|
10530
|
+
|
|
10011
10531
|
flags?: string
|
|
10012
10532
|
} | string)[] | ({
|
|
10013
|
-
|
|
10533
|
+
|
|
10534
|
+
pattern: string
|
|
10535
|
+
|
|
10014
10536
|
flags?: string
|
|
10015
10537
|
} | string)) | {
|
|
10538
|
+
|
|
10016
10539
|
block?: (boolean | (({
|
|
10017
|
-
|
|
10540
|
+
|
|
10541
|
+
pattern: string
|
|
10542
|
+
|
|
10018
10543
|
flags?: string
|
|
10019
10544
|
} | string)[] | ({
|
|
10020
|
-
|
|
10545
|
+
|
|
10546
|
+
pattern: string
|
|
10547
|
+
|
|
10021
10548
|
flags?: string
|
|
10022
10549
|
} | string)))
|
|
10550
|
+
|
|
10023
10551
|
line?: (boolean | (({
|
|
10024
|
-
|
|
10552
|
+
|
|
10553
|
+
pattern: string
|
|
10554
|
+
|
|
10025
10555
|
flags?: string
|
|
10026
10556
|
} | string)[] | ({
|
|
10027
|
-
|
|
10557
|
+
|
|
10558
|
+
pattern: string
|
|
10559
|
+
|
|
10028
10560
|
flags?: string
|
|
10029
10561
|
} | string)))
|
|
10030
10562
|
})
|
|
@@ -10035,7 +10567,7 @@ type PerfectionistSortModules = []|[{
|
|
|
10035
10567
|
|
|
10036
10568
|
groups?: (string | string[] | {
|
|
10037
10569
|
|
|
10038
|
-
newlinesBetween
|
|
10570
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
10039
10571
|
})[]
|
|
10040
10572
|
}]
|
|
10041
10573
|
// ----- perfectionist/sort-named-exports -----
|
|
@@ -10046,7 +10578,6 @@ type PerfectionistSortNamedExports = {
|
|
|
10046
10578
|
order?: ("asc" | "desc")
|
|
10047
10579
|
|
|
10048
10580
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10049
|
-
[k: string]: unknown | undefined
|
|
10050
10581
|
}
|
|
10051
10582
|
|
|
10052
10583
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10074,10 +10605,9 @@ type PerfectionistSortNamedExports = {
|
|
|
10074
10605
|
order?: ("asc" | "desc")
|
|
10075
10606
|
|
|
10076
10607
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10077
|
-
[k: string]: unknown | undefined
|
|
10078
10608
|
}
|
|
10079
10609
|
|
|
10080
|
-
groupName
|
|
10610
|
+
groupName: string
|
|
10081
10611
|
|
|
10082
10612
|
order?: ("asc" | "desc")
|
|
10083
10613
|
|
|
@@ -10089,10 +10619,14 @@ type PerfectionistSortNamedExports = {
|
|
|
10089
10619
|
selector?: "export"
|
|
10090
10620
|
|
|
10091
10621
|
elementNamePattern?: (({
|
|
10092
|
-
|
|
10622
|
+
|
|
10623
|
+
pattern: string
|
|
10624
|
+
|
|
10093
10625
|
flags?: string
|
|
10094
10626
|
} | string)[] | ({
|
|
10095
|
-
|
|
10627
|
+
|
|
10628
|
+
pattern: string
|
|
10629
|
+
|
|
10096
10630
|
flags?: string
|
|
10097
10631
|
} | string))
|
|
10098
10632
|
}[]
|
|
@@ -10105,10 +10639,9 @@ type PerfectionistSortNamedExports = {
|
|
|
10105
10639
|
order?: ("asc" | "desc")
|
|
10106
10640
|
|
|
10107
10641
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10108
|
-
[k: string]: unknown | undefined
|
|
10109
10642
|
}
|
|
10110
10643
|
|
|
10111
|
-
groupName
|
|
10644
|
+
groupName: string
|
|
10112
10645
|
|
|
10113
10646
|
order?: ("asc" | "desc")
|
|
10114
10647
|
|
|
@@ -10119,33 +10652,51 @@ type PerfectionistSortNamedExports = {
|
|
|
10119
10652
|
selector?: "export"
|
|
10120
10653
|
|
|
10121
10654
|
elementNamePattern?: (({
|
|
10122
|
-
|
|
10655
|
+
|
|
10656
|
+
pattern: string
|
|
10657
|
+
|
|
10123
10658
|
flags?: string
|
|
10124
10659
|
} | string)[] | ({
|
|
10125
|
-
|
|
10660
|
+
|
|
10661
|
+
pattern: string
|
|
10662
|
+
|
|
10126
10663
|
flags?: string
|
|
10127
10664
|
} | string))
|
|
10128
10665
|
})[]
|
|
10129
10666
|
|
|
10130
10667
|
partitionByComment?: (boolean | (({
|
|
10131
|
-
|
|
10668
|
+
|
|
10669
|
+
pattern: string
|
|
10670
|
+
|
|
10132
10671
|
flags?: string
|
|
10133
10672
|
} | string)[] | ({
|
|
10134
|
-
|
|
10673
|
+
|
|
10674
|
+
pattern: string
|
|
10675
|
+
|
|
10135
10676
|
flags?: string
|
|
10136
10677
|
} | string)) | {
|
|
10678
|
+
|
|
10137
10679
|
block?: (boolean | (({
|
|
10138
|
-
|
|
10680
|
+
|
|
10681
|
+
pattern: string
|
|
10682
|
+
|
|
10139
10683
|
flags?: string
|
|
10140
10684
|
} | string)[] | ({
|
|
10141
|
-
|
|
10685
|
+
|
|
10686
|
+
pattern: string
|
|
10687
|
+
|
|
10142
10688
|
flags?: string
|
|
10143
10689
|
} | string)))
|
|
10690
|
+
|
|
10144
10691
|
line?: (boolean | (({
|
|
10145
|
-
|
|
10692
|
+
|
|
10693
|
+
pattern: string
|
|
10694
|
+
|
|
10146
10695
|
flags?: string
|
|
10147
10696
|
} | string)[] | ({
|
|
10148
|
-
|
|
10697
|
+
|
|
10698
|
+
pattern: string
|
|
10699
|
+
|
|
10149
10700
|
flags?: string
|
|
10150
10701
|
} | string)))
|
|
10151
10702
|
})
|
|
@@ -10156,7 +10707,7 @@ type PerfectionistSortNamedExports = {
|
|
|
10156
10707
|
|
|
10157
10708
|
groups?: (string | string[] | {
|
|
10158
10709
|
|
|
10159
|
-
newlinesBetween
|
|
10710
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
10160
10711
|
})[]
|
|
10161
10712
|
}[]
|
|
10162
10713
|
// ----- perfectionist/sort-named-imports -----
|
|
@@ -10167,7 +10718,6 @@ type PerfectionistSortNamedImports = {
|
|
|
10167
10718
|
order?: ("asc" | "desc")
|
|
10168
10719
|
|
|
10169
10720
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10170
|
-
[k: string]: unknown | undefined
|
|
10171
10721
|
}
|
|
10172
10722
|
|
|
10173
10723
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10195,10 +10745,9 @@ type PerfectionistSortNamedImports = {
|
|
|
10195
10745
|
order?: ("asc" | "desc")
|
|
10196
10746
|
|
|
10197
10747
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10198
|
-
[k: string]: unknown | undefined
|
|
10199
10748
|
}
|
|
10200
10749
|
|
|
10201
|
-
groupName
|
|
10750
|
+
groupName: string
|
|
10202
10751
|
|
|
10203
10752
|
order?: ("asc" | "desc")
|
|
10204
10753
|
|
|
@@ -10210,10 +10759,14 @@ type PerfectionistSortNamedImports = {
|
|
|
10210
10759
|
selector?: "import"
|
|
10211
10760
|
|
|
10212
10761
|
elementNamePattern?: (({
|
|
10213
|
-
|
|
10762
|
+
|
|
10763
|
+
pattern: string
|
|
10764
|
+
|
|
10214
10765
|
flags?: string
|
|
10215
10766
|
} | string)[] | ({
|
|
10216
|
-
|
|
10767
|
+
|
|
10768
|
+
pattern: string
|
|
10769
|
+
|
|
10217
10770
|
flags?: string
|
|
10218
10771
|
} | string))
|
|
10219
10772
|
}[]
|
|
@@ -10226,10 +10779,9 @@ type PerfectionistSortNamedImports = {
|
|
|
10226
10779
|
order?: ("asc" | "desc")
|
|
10227
10780
|
|
|
10228
10781
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10229
|
-
[k: string]: unknown | undefined
|
|
10230
10782
|
}
|
|
10231
10783
|
|
|
10232
|
-
groupName
|
|
10784
|
+
groupName: string
|
|
10233
10785
|
|
|
10234
10786
|
order?: ("asc" | "desc")
|
|
10235
10787
|
|
|
@@ -10240,33 +10792,51 @@ type PerfectionistSortNamedImports = {
|
|
|
10240
10792
|
selector?: "import"
|
|
10241
10793
|
|
|
10242
10794
|
elementNamePattern?: (({
|
|
10243
|
-
|
|
10795
|
+
|
|
10796
|
+
pattern: string
|
|
10797
|
+
|
|
10244
10798
|
flags?: string
|
|
10245
10799
|
} | string)[] | ({
|
|
10246
|
-
|
|
10800
|
+
|
|
10801
|
+
pattern: string
|
|
10802
|
+
|
|
10247
10803
|
flags?: string
|
|
10248
10804
|
} | string))
|
|
10249
10805
|
})[]
|
|
10250
10806
|
|
|
10251
10807
|
partitionByComment?: (boolean | (({
|
|
10252
|
-
|
|
10808
|
+
|
|
10809
|
+
pattern: string
|
|
10810
|
+
|
|
10253
10811
|
flags?: string
|
|
10254
10812
|
} | string)[] | ({
|
|
10255
|
-
|
|
10813
|
+
|
|
10814
|
+
pattern: string
|
|
10815
|
+
|
|
10256
10816
|
flags?: string
|
|
10257
10817
|
} | string)) | {
|
|
10818
|
+
|
|
10258
10819
|
block?: (boolean | (({
|
|
10259
|
-
|
|
10820
|
+
|
|
10821
|
+
pattern: string
|
|
10822
|
+
|
|
10260
10823
|
flags?: string
|
|
10261
10824
|
} | string)[] | ({
|
|
10262
|
-
|
|
10825
|
+
|
|
10826
|
+
pattern: string
|
|
10827
|
+
|
|
10263
10828
|
flags?: string
|
|
10264
10829
|
} | string)))
|
|
10830
|
+
|
|
10265
10831
|
line?: (boolean | (({
|
|
10266
|
-
|
|
10832
|
+
|
|
10833
|
+
pattern: string
|
|
10834
|
+
|
|
10267
10835
|
flags?: string
|
|
10268
10836
|
} | string)[] | ({
|
|
10269
|
-
|
|
10837
|
+
|
|
10838
|
+
pattern: string
|
|
10839
|
+
|
|
10270
10840
|
flags?: string
|
|
10271
10841
|
} | string)))
|
|
10272
10842
|
})
|
|
@@ -10277,7 +10847,7 @@ type PerfectionistSortNamedImports = {
|
|
|
10277
10847
|
|
|
10278
10848
|
groups?: (string | string[] | {
|
|
10279
10849
|
|
|
10280
|
-
newlinesBetween
|
|
10850
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
10281
10851
|
})[]
|
|
10282
10852
|
}[]
|
|
10283
10853
|
// ----- perfectionist/sort-object-types -----
|
|
@@ -10288,7 +10858,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
10288
10858
|
order?: ("asc" | "desc")
|
|
10289
10859
|
|
|
10290
10860
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10291
|
-
|
|
10861
|
+
sortBy?: ("name" | "value")
|
|
10292
10862
|
}
|
|
10293
10863
|
|
|
10294
10864
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10314,10 +10884,9 @@ type PerfectionistSortObjectTypes = {
|
|
|
10314
10884
|
|
|
10315
10885
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10316
10886
|
sortBy?: ("name" | "value")
|
|
10317
|
-
[k: string]: unknown | undefined
|
|
10318
10887
|
}
|
|
10319
10888
|
|
|
10320
|
-
groupName
|
|
10889
|
+
groupName: string
|
|
10321
10890
|
|
|
10322
10891
|
order?: ("asc" | "desc")
|
|
10323
10892
|
|
|
@@ -10329,18 +10898,26 @@ type PerfectionistSortObjectTypes = {
|
|
|
10329
10898
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10330
10899
|
|
|
10331
10900
|
elementValuePattern?: (({
|
|
10332
|
-
|
|
10901
|
+
|
|
10902
|
+
pattern: string
|
|
10903
|
+
|
|
10333
10904
|
flags?: string
|
|
10334
10905
|
} | string)[] | ({
|
|
10335
|
-
|
|
10906
|
+
|
|
10907
|
+
pattern: string
|
|
10908
|
+
|
|
10336
10909
|
flags?: string
|
|
10337
10910
|
} | string))
|
|
10338
10911
|
|
|
10339
10912
|
elementNamePattern?: (({
|
|
10340
|
-
|
|
10913
|
+
|
|
10914
|
+
pattern: string
|
|
10915
|
+
|
|
10341
10916
|
flags?: string
|
|
10342
10917
|
} | string)[] | ({
|
|
10343
|
-
|
|
10918
|
+
|
|
10919
|
+
pattern: string
|
|
10920
|
+
|
|
10344
10921
|
flags?: string
|
|
10345
10922
|
} | string))
|
|
10346
10923
|
sortBy?: ("name" | "value")
|
|
@@ -10355,10 +10932,9 @@ type PerfectionistSortObjectTypes = {
|
|
|
10355
10932
|
|
|
10356
10933
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10357
10934
|
sortBy?: ("name" | "value")
|
|
10358
|
-
[k: string]: unknown | undefined
|
|
10359
10935
|
}
|
|
10360
10936
|
|
|
10361
|
-
groupName
|
|
10937
|
+
groupName: string
|
|
10362
10938
|
|
|
10363
10939
|
order?: ("asc" | "desc")
|
|
10364
10940
|
|
|
@@ -10369,62 +10945,93 @@ type PerfectionistSortObjectTypes = {
|
|
|
10369
10945
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10370
10946
|
|
|
10371
10947
|
elementValuePattern?: (({
|
|
10372
|
-
|
|
10948
|
+
|
|
10949
|
+
pattern: string
|
|
10950
|
+
|
|
10373
10951
|
flags?: string
|
|
10374
10952
|
} | string)[] | ({
|
|
10375
|
-
|
|
10953
|
+
|
|
10954
|
+
pattern: string
|
|
10955
|
+
|
|
10376
10956
|
flags?: string
|
|
10377
10957
|
} | string))
|
|
10378
10958
|
|
|
10379
10959
|
elementNamePattern?: (({
|
|
10380
|
-
|
|
10960
|
+
|
|
10961
|
+
pattern: string
|
|
10962
|
+
|
|
10381
10963
|
flags?: string
|
|
10382
10964
|
} | string)[] | ({
|
|
10383
|
-
|
|
10965
|
+
|
|
10966
|
+
pattern: string
|
|
10967
|
+
|
|
10384
10968
|
flags?: string
|
|
10385
10969
|
} | string))
|
|
10386
10970
|
sortBy?: ("name" | "value")
|
|
10387
10971
|
})[])
|
|
10388
10972
|
|
|
10389
10973
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
10974
|
+
|
|
10390
10975
|
useConfigurationIf?: {
|
|
10391
10976
|
|
|
10392
10977
|
allNamesMatchPattern?: (({
|
|
10393
|
-
|
|
10978
|
+
|
|
10979
|
+
pattern: string
|
|
10980
|
+
|
|
10394
10981
|
flags?: string
|
|
10395
10982
|
} | string)[] | ({
|
|
10396
|
-
|
|
10983
|
+
|
|
10984
|
+
pattern: string
|
|
10985
|
+
|
|
10397
10986
|
flags?: string
|
|
10398
10987
|
} | string))
|
|
10399
10988
|
|
|
10400
10989
|
declarationMatchesPattern?: (({
|
|
10401
|
-
|
|
10990
|
+
|
|
10991
|
+
pattern: string
|
|
10992
|
+
|
|
10402
10993
|
flags?: string
|
|
10403
10994
|
} | string)[] | ({
|
|
10404
|
-
|
|
10995
|
+
|
|
10996
|
+
pattern: string
|
|
10997
|
+
|
|
10405
10998
|
flags?: string
|
|
10406
10999
|
} | string))
|
|
10407
11000
|
}
|
|
10408
11001
|
|
|
10409
11002
|
partitionByComment?: (boolean | (({
|
|
10410
|
-
|
|
11003
|
+
|
|
11004
|
+
pattern: string
|
|
11005
|
+
|
|
10411
11006
|
flags?: string
|
|
10412
11007
|
} | string)[] | ({
|
|
10413
|
-
|
|
11008
|
+
|
|
11009
|
+
pattern: string
|
|
11010
|
+
|
|
10414
11011
|
flags?: string
|
|
10415
11012
|
} | string)) | {
|
|
11013
|
+
|
|
10416
11014
|
block?: (boolean | (({
|
|
10417
|
-
|
|
11015
|
+
|
|
11016
|
+
pattern: string
|
|
11017
|
+
|
|
10418
11018
|
flags?: string
|
|
10419
11019
|
} | string)[] | ({
|
|
10420
|
-
|
|
11020
|
+
|
|
11021
|
+
pattern: string
|
|
11022
|
+
|
|
10421
11023
|
flags?: string
|
|
10422
11024
|
} | string)))
|
|
11025
|
+
|
|
10423
11026
|
line?: (boolean | (({
|
|
10424
|
-
|
|
11027
|
+
|
|
11028
|
+
pattern: string
|
|
11029
|
+
|
|
10425
11030
|
flags?: string
|
|
10426
11031
|
} | string)[] | ({
|
|
10427
|
-
|
|
11032
|
+
|
|
11033
|
+
pattern: string
|
|
11034
|
+
|
|
10428
11035
|
flags?: string
|
|
10429
11036
|
} | string)))
|
|
10430
11037
|
})
|
|
@@ -10434,17 +11041,21 @@ type PerfectionistSortObjectTypes = {
|
|
|
10434
11041
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10435
11042
|
|
|
10436
11043
|
ignorePattern?: (({
|
|
10437
|
-
|
|
11044
|
+
|
|
11045
|
+
pattern: string
|
|
11046
|
+
|
|
10438
11047
|
flags?: string
|
|
10439
11048
|
} | string)[] | ({
|
|
10440
|
-
|
|
11049
|
+
|
|
11050
|
+
pattern: string
|
|
11051
|
+
|
|
10441
11052
|
flags?: string
|
|
10442
11053
|
} | string))
|
|
10443
11054
|
sortBy?: ("name" | "value")
|
|
10444
11055
|
|
|
10445
11056
|
groups?: (string | string[] | {
|
|
10446
11057
|
|
|
10447
|
-
newlinesBetween
|
|
11058
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
10448
11059
|
})[]
|
|
10449
11060
|
}[]
|
|
10450
11061
|
// ----- perfectionist/sort-objects -----
|
|
@@ -10455,7 +11066,6 @@ type PerfectionistSortObjects = {
|
|
|
10455
11066
|
order?: ("asc" | "desc")
|
|
10456
11067
|
|
|
10457
11068
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10458
|
-
[k: string]: unknown | undefined
|
|
10459
11069
|
}
|
|
10460
11070
|
|
|
10461
11071
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10485,10 +11095,9 @@ type PerfectionistSortObjects = {
|
|
|
10485
11095
|
order?: ("asc" | "desc")
|
|
10486
11096
|
|
|
10487
11097
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10488
|
-
[k: string]: unknown | undefined
|
|
10489
11098
|
}
|
|
10490
11099
|
|
|
10491
|
-
groupName
|
|
11100
|
+
groupName: string
|
|
10492
11101
|
|
|
10493
11102
|
order?: ("asc" | "desc")
|
|
10494
11103
|
|
|
@@ -10500,18 +11109,26 @@ type PerfectionistSortObjects = {
|
|
|
10500
11109
|
selector?: ("member" | "method" | "multiline" | "property")
|
|
10501
11110
|
|
|
10502
11111
|
elementValuePattern?: (({
|
|
10503
|
-
|
|
11112
|
+
|
|
11113
|
+
pattern: string
|
|
11114
|
+
|
|
10504
11115
|
flags?: string
|
|
10505
11116
|
} | string)[] | ({
|
|
10506
|
-
|
|
11117
|
+
|
|
11118
|
+
pattern: string
|
|
11119
|
+
|
|
10507
11120
|
flags?: string
|
|
10508
11121
|
} | string))
|
|
10509
11122
|
|
|
10510
11123
|
elementNamePattern?: (({
|
|
10511
|
-
|
|
11124
|
+
|
|
11125
|
+
pattern: string
|
|
11126
|
+
|
|
10512
11127
|
flags?: string
|
|
10513
11128
|
} | string)[] | ({
|
|
10514
|
-
|
|
11129
|
+
|
|
11130
|
+
pattern: string
|
|
11131
|
+
|
|
10515
11132
|
flags?: string
|
|
10516
11133
|
} | string))
|
|
10517
11134
|
}[]
|
|
@@ -10524,10 +11141,9 @@ type PerfectionistSortObjects = {
|
|
|
10524
11141
|
order?: ("asc" | "desc")
|
|
10525
11142
|
|
|
10526
11143
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10527
|
-
[k: string]: unknown | undefined
|
|
10528
11144
|
}
|
|
10529
11145
|
|
|
10530
|
-
groupName
|
|
11146
|
+
groupName: string
|
|
10531
11147
|
|
|
10532
11148
|
order?: ("asc" | "desc")
|
|
10533
11149
|
|
|
@@ -10538,36 +11154,53 @@ type PerfectionistSortObjects = {
|
|
|
10538
11154
|
selector?: ("member" | "method" | "multiline" | "property")
|
|
10539
11155
|
|
|
10540
11156
|
elementValuePattern?: (({
|
|
10541
|
-
|
|
11157
|
+
|
|
11158
|
+
pattern: string
|
|
11159
|
+
|
|
10542
11160
|
flags?: string
|
|
10543
11161
|
} | string)[] | ({
|
|
10544
|
-
|
|
11162
|
+
|
|
11163
|
+
pattern: string
|
|
11164
|
+
|
|
10545
11165
|
flags?: string
|
|
10546
11166
|
} | string))
|
|
10547
11167
|
|
|
10548
11168
|
elementNamePattern?: (({
|
|
10549
|
-
|
|
11169
|
+
|
|
11170
|
+
pattern: string
|
|
11171
|
+
|
|
10550
11172
|
flags?: string
|
|
10551
11173
|
} | string)[] | ({
|
|
10552
|
-
|
|
11174
|
+
|
|
11175
|
+
pattern: string
|
|
11176
|
+
|
|
10553
11177
|
flags?: string
|
|
10554
11178
|
} | string))
|
|
10555
11179
|
})[])
|
|
11180
|
+
|
|
10556
11181
|
useConfigurationIf?: {
|
|
10557
11182
|
|
|
10558
11183
|
allNamesMatchPattern?: (({
|
|
10559
|
-
|
|
11184
|
+
|
|
11185
|
+
pattern: string
|
|
11186
|
+
|
|
10560
11187
|
flags?: string
|
|
10561
11188
|
} | string)[] | ({
|
|
10562
|
-
|
|
11189
|
+
|
|
11190
|
+
pattern: string
|
|
11191
|
+
|
|
10563
11192
|
flags?: string
|
|
10564
11193
|
} | string))
|
|
10565
11194
|
|
|
10566
11195
|
callingFunctionNamePattern?: (({
|
|
10567
|
-
|
|
11196
|
+
|
|
11197
|
+
pattern: string
|
|
11198
|
+
|
|
10568
11199
|
flags?: string
|
|
10569
11200
|
} | string)[] | ({
|
|
10570
|
-
|
|
11201
|
+
|
|
11202
|
+
pattern: string
|
|
11203
|
+
|
|
10571
11204
|
flags?: string
|
|
10572
11205
|
} | string))
|
|
10573
11206
|
}
|
|
@@ -10579,24 +11212,38 @@ type PerfectionistSortObjects = {
|
|
|
10579
11212
|
styledComponents?: boolean
|
|
10580
11213
|
|
|
10581
11214
|
partitionByComment?: (boolean | (({
|
|
10582
|
-
|
|
11215
|
+
|
|
11216
|
+
pattern: string
|
|
11217
|
+
|
|
10583
11218
|
flags?: string
|
|
10584
11219
|
} | string)[] | ({
|
|
10585
|
-
|
|
11220
|
+
|
|
11221
|
+
pattern: string
|
|
11222
|
+
|
|
10586
11223
|
flags?: string
|
|
10587
11224
|
} | string)) | {
|
|
11225
|
+
|
|
10588
11226
|
block?: (boolean | (({
|
|
10589
|
-
|
|
11227
|
+
|
|
11228
|
+
pattern: string
|
|
11229
|
+
|
|
10590
11230
|
flags?: string
|
|
10591
11231
|
} | string)[] | ({
|
|
10592
|
-
|
|
11232
|
+
|
|
11233
|
+
pattern: string
|
|
11234
|
+
|
|
10593
11235
|
flags?: string
|
|
10594
11236
|
} | string)))
|
|
11237
|
+
|
|
10595
11238
|
line?: (boolean | (({
|
|
10596
|
-
|
|
11239
|
+
|
|
11240
|
+
pattern: string
|
|
11241
|
+
|
|
10597
11242
|
flags?: string
|
|
10598
11243
|
} | string)[] | ({
|
|
10599
|
-
|
|
11244
|
+
|
|
11245
|
+
pattern: string
|
|
11246
|
+
|
|
10600
11247
|
flags?: string
|
|
10601
11248
|
} | string)))
|
|
10602
11249
|
})
|
|
@@ -10606,16 +11253,20 @@ type PerfectionistSortObjects = {
|
|
|
10606
11253
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10607
11254
|
|
|
10608
11255
|
ignorePattern?: (({
|
|
10609
|
-
|
|
11256
|
+
|
|
11257
|
+
pattern: string
|
|
11258
|
+
|
|
10610
11259
|
flags?: string
|
|
10611
11260
|
} | string)[] | ({
|
|
10612
|
-
|
|
11261
|
+
|
|
11262
|
+
pattern: string
|
|
11263
|
+
|
|
10613
11264
|
flags?: string
|
|
10614
11265
|
} | string))
|
|
10615
11266
|
|
|
10616
11267
|
groups?: (string | string[] | {
|
|
10617
11268
|
|
|
10618
|
-
newlinesBetween
|
|
11269
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
10619
11270
|
})[]
|
|
10620
11271
|
}[]
|
|
10621
11272
|
// ----- perfectionist/sort-sets -----
|
|
@@ -10626,7 +11277,6 @@ type PerfectionistSortSets = {
|
|
|
10626
11277
|
order?: ("asc" | "desc")
|
|
10627
11278
|
|
|
10628
11279
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10629
|
-
[k: string]: unknown | undefined
|
|
10630
11280
|
}
|
|
10631
11281
|
|
|
10632
11282
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10652,10 +11302,9 @@ type PerfectionistSortSets = {
|
|
|
10652
11302
|
order?: ("asc" | "desc")
|
|
10653
11303
|
|
|
10654
11304
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10655
|
-
[k: string]: unknown | undefined
|
|
10656
11305
|
}
|
|
10657
11306
|
|
|
10658
|
-
groupName
|
|
11307
|
+
groupName: string
|
|
10659
11308
|
|
|
10660
11309
|
order?: ("asc" | "desc")
|
|
10661
11310
|
|
|
@@ -10665,10 +11314,14 @@ type PerfectionistSortSets = {
|
|
|
10665
11314
|
selector?: ("literal" | "spread")
|
|
10666
11315
|
|
|
10667
11316
|
elementNamePattern?: (({
|
|
10668
|
-
|
|
11317
|
+
|
|
11318
|
+
pattern: string
|
|
11319
|
+
|
|
10669
11320
|
flags?: string
|
|
10670
11321
|
} | string)[] | ({
|
|
10671
|
-
|
|
11322
|
+
|
|
11323
|
+
pattern: string
|
|
11324
|
+
|
|
10672
11325
|
flags?: string
|
|
10673
11326
|
} | string))
|
|
10674
11327
|
}[]
|
|
@@ -10681,10 +11334,9 @@ type PerfectionistSortSets = {
|
|
|
10681
11334
|
order?: ("asc" | "desc")
|
|
10682
11335
|
|
|
10683
11336
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10684
|
-
[k: string]: unknown | undefined
|
|
10685
11337
|
}
|
|
10686
11338
|
|
|
10687
|
-
groupName
|
|
11339
|
+
groupName: string
|
|
10688
11340
|
|
|
10689
11341
|
order?: ("asc" | "desc")
|
|
10690
11342
|
|
|
@@ -10693,43 +11345,66 @@ type PerfectionistSortSets = {
|
|
|
10693
11345
|
selector?: ("literal" | "spread")
|
|
10694
11346
|
|
|
10695
11347
|
elementNamePattern?: (({
|
|
10696
|
-
|
|
11348
|
+
|
|
11349
|
+
pattern: string
|
|
11350
|
+
|
|
10697
11351
|
flags?: string
|
|
10698
11352
|
} | string)[] | ({
|
|
10699
|
-
|
|
11353
|
+
|
|
11354
|
+
pattern: string
|
|
11355
|
+
|
|
10700
11356
|
flags?: string
|
|
10701
11357
|
} | string))
|
|
10702
11358
|
})[]
|
|
11359
|
+
|
|
10703
11360
|
useConfigurationIf?: {
|
|
10704
11361
|
|
|
10705
11362
|
allNamesMatchPattern?: (({
|
|
10706
|
-
|
|
11363
|
+
|
|
11364
|
+
pattern: string
|
|
11365
|
+
|
|
10707
11366
|
flags?: string
|
|
10708
11367
|
} | string)[] | ({
|
|
10709
|
-
|
|
11368
|
+
|
|
11369
|
+
pattern: string
|
|
11370
|
+
|
|
10710
11371
|
flags?: string
|
|
10711
11372
|
} | string))
|
|
10712
11373
|
}
|
|
10713
11374
|
|
|
10714
11375
|
partitionByComment?: (boolean | (({
|
|
10715
|
-
|
|
11376
|
+
|
|
11377
|
+
pattern: string
|
|
11378
|
+
|
|
10716
11379
|
flags?: string
|
|
10717
11380
|
} | string)[] | ({
|
|
10718
|
-
|
|
11381
|
+
|
|
11382
|
+
pattern: string
|
|
11383
|
+
|
|
10719
11384
|
flags?: string
|
|
10720
11385
|
} | string)) | {
|
|
11386
|
+
|
|
10721
11387
|
block?: (boolean | (({
|
|
10722
|
-
|
|
11388
|
+
|
|
11389
|
+
pattern: string
|
|
11390
|
+
|
|
10723
11391
|
flags?: string
|
|
10724
11392
|
} | string)[] | ({
|
|
10725
|
-
|
|
11393
|
+
|
|
11394
|
+
pattern: string
|
|
11395
|
+
|
|
10726
11396
|
flags?: string
|
|
10727
11397
|
} | string)))
|
|
11398
|
+
|
|
10728
11399
|
line?: (boolean | (({
|
|
10729
|
-
|
|
11400
|
+
|
|
11401
|
+
pattern: string
|
|
11402
|
+
|
|
10730
11403
|
flags?: string
|
|
10731
11404
|
} | string)[] | ({
|
|
10732
|
-
|
|
11405
|
+
|
|
11406
|
+
pattern: string
|
|
11407
|
+
|
|
10733
11408
|
flags?: string
|
|
10734
11409
|
} | string)))
|
|
10735
11410
|
})
|
|
@@ -10740,7 +11415,7 @@ type PerfectionistSortSets = {
|
|
|
10740
11415
|
|
|
10741
11416
|
groups?: (string | string[] | {
|
|
10742
11417
|
|
|
10743
|
-
newlinesBetween
|
|
11418
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
10744
11419
|
})[]
|
|
10745
11420
|
}[]
|
|
10746
11421
|
// ----- perfectionist/sort-switch-case -----
|
|
@@ -10751,7 +11426,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
10751
11426
|
order?: ("asc" | "desc")
|
|
10752
11427
|
|
|
10753
11428
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10754
|
-
[k: string]: unknown | undefined
|
|
10755
11429
|
}
|
|
10756
11430
|
|
|
10757
11431
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10767,14 +11441,13 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
10767
11441
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10768
11442
|
}]
|
|
10769
11443
|
// ----- perfectionist/sort-union-types -----
|
|
10770
|
-
type PerfectionistSortUnionTypes =
|
|
11444
|
+
type PerfectionistSortUnionTypes = {
|
|
10771
11445
|
|
|
10772
11446
|
fallbackSort?: {
|
|
10773
11447
|
|
|
10774
11448
|
order?: ("asc" | "desc")
|
|
10775
11449
|
|
|
10776
11450
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10777
|
-
[k: string]: unknown | undefined
|
|
10778
11451
|
}
|
|
10779
11452
|
|
|
10780
11453
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10789,25 +11462,103 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10789
11462
|
|
|
10790
11463
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10791
11464
|
|
|
11465
|
+
customGroups?: ({
|
|
11466
|
+
|
|
11467
|
+
newlinesInside?: ("always" | "never")
|
|
11468
|
+
|
|
11469
|
+
fallbackSort?: {
|
|
11470
|
+
|
|
11471
|
+
order?: ("asc" | "desc")
|
|
11472
|
+
|
|
11473
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11474
|
+
}
|
|
11475
|
+
|
|
11476
|
+
groupName: string
|
|
11477
|
+
|
|
11478
|
+
order?: ("asc" | "desc")
|
|
11479
|
+
|
|
11480
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11481
|
+
anyOf?: {
|
|
11482
|
+
|
|
11483
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
11484
|
+
|
|
11485
|
+
elementNamePattern?: (({
|
|
11486
|
+
|
|
11487
|
+
pattern: string
|
|
11488
|
+
|
|
11489
|
+
flags?: string
|
|
11490
|
+
} | string)[] | ({
|
|
11491
|
+
|
|
11492
|
+
pattern: string
|
|
11493
|
+
|
|
11494
|
+
flags?: string
|
|
11495
|
+
} | string))
|
|
11496
|
+
}[]
|
|
11497
|
+
} | {
|
|
11498
|
+
|
|
11499
|
+
newlinesInside?: ("always" | "never")
|
|
11500
|
+
|
|
11501
|
+
fallbackSort?: {
|
|
11502
|
+
|
|
11503
|
+
order?: ("asc" | "desc")
|
|
11504
|
+
|
|
11505
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11506
|
+
}
|
|
11507
|
+
|
|
11508
|
+
groupName: string
|
|
11509
|
+
|
|
11510
|
+
order?: ("asc" | "desc")
|
|
11511
|
+
|
|
11512
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11513
|
+
|
|
11514
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
11515
|
+
|
|
11516
|
+
elementNamePattern?: (({
|
|
11517
|
+
|
|
11518
|
+
pattern: string
|
|
11519
|
+
|
|
11520
|
+
flags?: string
|
|
11521
|
+
} | string)[] | ({
|
|
11522
|
+
|
|
11523
|
+
pattern: string
|
|
11524
|
+
|
|
11525
|
+
flags?: string
|
|
11526
|
+
} | string))
|
|
11527
|
+
})[]
|
|
11528
|
+
|
|
10792
11529
|
partitionByComment?: (boolean | (({
|
|
10793
|
-
|
|
11530
|
+
|
|
11531
|
+
pattern: string
|
|
11532
|
+
|
|
10794
11533
|
flags?: string
|
|
10795
11534
|
} | string)[] | ({
|
|
10796
|
-
|
|
11535
|
+
|
|
11536
|
+
pattern: string
|
|
11537
|
+
|
|
10797
11538
|
flags?: string
|
|
10798
11539
|
} | string)) | {
|
|
11540
|
+
|
|
10799
11541
|
block?: (boolean | (({
|
|
10800
|
-
|
|
11542
|
+
|
|
11543
|
+
pattern: string
|
|
11544
|
+
|
|
10801
11545
|
flags?: string
|
|
10802
11546
|
} | string)[] | ({
|
|
10803
|
-
|
|
11547
|
+
|
|
11548
|
+
pattern: string
|
|
11549
|
+
|
|
10804
11550
|
flags?: string
|
|
10805
11551
|
} | string)))
|
|
11552
|
+
|
|
10806
11553
|
line?: (boolean | (({
|
|
10807
|
-
|
|
11554
|
+
|
|
11555
|
+
pattern: string
|
|
11556
|
+
|
|
10808
11557
|
flags?: string
|
|
10809
11558
|
} | string)[] | ({
|
|
10810
|
-
|
|
11559
|
+
|
|
11560
|
+
pattern: string
|
|
11561
|
+
|
|
10811
11562
|
flags?: string
|
|
10812
11563
|
} | string)))
|
|
10813
11564
|
})
|
|
@@ -10818,9 +11569,9 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10818
11569
|
|
|
10819
11570
|
groups?: (string | string[] | {
|
|
10820
11571
|
|
|
10821
|
-
newlinesBetween
|
|
11572
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
10822
11573
|
})[]
|
|
10823
|
-
}]
|
|
11574
|
+
}[]
|
|
10824
11575
|
// ----- perfectionist/sort-variable-declarations -----
|
|
10825
11576
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
10826
11577
|
|
|
@@ -10829,7 +11580,6 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10829
11580
|
order?: ("asc" | "desc")
|
|
10830
11581
|
|
|
10831
11582
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10832
|
-
[k: string]: unknown | undefined
|
|
10833
11583
|
}
|
|
10834
11584
|
|
|
10835
11585
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10844,30 +11594,115 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10844
11594
|
|
|
10845
11595
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10846
11596
|
|
|
11597
|
+
customGroups?: ({
|
|
11598
|
+
|
|
11599
|
+
newlinesInside?: ("always" | "never")
|
|
11600
|
+
|
|
11601
|
+
fallbackSort?: {
|
|
11602
|
+
|
|
11603
|
+
order?: ("asc" | "desc")
|
|
11604
|
+
|
|
11605
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11606
|
+
}
|
|
11607
|
+
|
|
11608
|
+
groupName: string
|
|
11609
|
+
|
|
11610
|
+
order?: ("asc" | "desc")
|
|
11611
|
+
|
|
11612
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11613
|
+
anyOf?: {
|
|
11614
|
+
|
|
11615
|
+
selector?: ("initialized" | "uninitialized")
|
|
11616
|
+
|
|
11617
|
+
elementNamePattern?: (({
|
|
11618
|
+
|
|
11619
|
+
pattern: string
|
|
11620
|
+
|
|
11621
|
+
flags?: string
|
|
11622
|
+
} | string)[] | ({
|
|
11623
|
+
|
|
11624
|
+
pattern: string
|
|
11625
|
+
|
|
11626
|
+
flags?: string
|
|
11627
|
+
} | string))
|
|
11628
|
+
}[]
|
|
11629
|
+
} | {
|
|
11630
|
+
|
|
11631
|
+
newlinesInside?: ("always" | "never")
|
|
11632
|
+
|
|
11633
|
+
fallbackSort?: {
|
|
11634
|
+
|
|
11635
|
+
order?: ("asc" | "desc")
|
|
11636
|
+
|
|
11637
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11638
|
+
}
|
|
11639
|
+
|
|
11640
|
+
groupName: string
|
|
11641
|
+
|
|
11642
|
+
order?: ("asc" | "desc")
|
|
11643
|
+
|
|
11644
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11645
|
+
|
|
11646
|
+
selector?: ("initialized" | "uninitialized")
|
|
11647
|
+
|
|
11648
|
+
elementNamePattern?: (({
|
|
11649
|
+
|
|
11650
|
+
pattern: string
|
|
11651
|
+
|
|
11652
|
+
flags?: string
|
|
11653
|
+
} | string)[] | ({
|
|
11654
|
+
|
|
11655
|
+
pattern: string
|
|
11656
|
+
|
|
11657
|
+
flags?: string
|
|
11658
|
+
} | string))
|
|
11659
|
+
})[]
|
|
11660
|
+
|
|
10847
11661
|
partitionByComment?: (boolean | (({
|
|
10848
|
-
|
|
11662
|
+
|
|
11663
|
+
pattern: string
|
|
11664
|
+
|
|
10849
11665
|
flags?: string
|
|
10850
11666
|
} | string)[] | ({
|
|
10851
|
-
|
|
11667
|
+
|
|
11668
|
+
pattern: string
|
|
11669
|
+
|
|
10852
11670
|
flags?: string
|
|
10853
11671
|
} | string)) | {
|
|
11672
|
+
|
|
10854
11673
|
block?: (boolean | (({
|
|
10855
|
-
|
|
11674
|
+
|
|
11675
|
+
pattern: string
|
|
11676
|
+
|
|
10856
11677
|
flags?: string
|
|
10857
11678
|
} | string)[] | ({
|
|
10858
|
-
|
|
11679
|
+
|
|
11680
|
+
pattern: string
|
|
11681
|
+
|
|
10859
11682
|
flags?: string
|
|
10860
11683
|
} | string)))
|
|
11684
|
+
|
|
10861
11685
|
line?: (boolean | (({
|
|
10862
|
-
|
|
11686
|
+
|
|
11687
|
+
pattern: string
|
|
11688
|
+
|
|
10863
11689
|
flags?: string
|
|
10864
11690
|
} | string)[] | ({
|
|
10865
|
-
|
|
11691
|
+
|
|
11692
|
+
pattern: string
|
|
11693
|
+
|
|
10866
11694
|
flags?: string
|
|
10867
11695
|
} | string)))
|
|
10868
11696
|
})
|
|
10869
11697
|
|
|
10870
11698
|
partitionByNewLine?: boolean
|
|
11699
|
+
|
|
11700
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11701
|
+
|
|
11702
|
+
groups?: (string | string[] | {
|
|
11703
|
+
|
|
11704
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
11705
|
+
})[]
|
|
10871
11706
|
}]
|
|
10872
11707
|
// ----- prefer-arrow-callback -----
|
|
10873
11708
|
type PreferArrowCallback = []|[{
|
|
@@ -11344,10 +12179,6 @@ interface _UnicornImportStyle_ModuleStyles {
|
|
|
11344
12179
|
interface _UnicornImportStyle_BooleanObject {
|
|
11345
12180
|
[k: string]: boolean | undefined
|
|
11346
12181
|
}
|
|
11347
|
-
// ----- unicorn/no-array-push-push -----
|
|
11348
|
-
type UnicornNoArrayPushPush = []|[{
|
|
11349
|
-
ignore?: unknown[]
|
|
11350
|
-
}]
|
|
11351
12182
|
// ----- unicorn/no-array-reduce -----
|
|
11352
12183
|
type UnicornNoArrayReduce = []|[{
|
|
11353
12184
|
allowSimpleOperations?: boolean
|
|
@@ -11443,6 +12274,10 @@ type UnicornPreferNumberProperties = []|[{
|
|
|
11443
12274
|
type UnicornPreferObjectFromEntries = []|[{
|
|
11444
12275
|
functions?: unknown[]
|
|
11445
12276
|
}]
|
|
12277
|
+
// ----- unicorn/prefer-single-call -----
|
|
12278
|
+
type UnicornPreferSingleCall = []|[{
|
|
12279
|
+
ignore?: unknown[]
|
|
12280
|
+
}]
|
|
11446
12281
|
// ----- unicorn/prefer-structured-clone -----
|
|
11447
12282
|
type UnicornPreferStructuredClone = []|[{
|
|
11448
12283
|
functions?: unknown[]
|