@ncontiero/eslint-config 6.3.0-beta.8 → 6.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/index.d.ts +1595 -1109
- package/dist/index.js +1 -1
- package/package.json +24 -23
package/dist/index.d.ts
CHANGED
|
@@ -466,7 +466,7 @@ interface RuleOptions {
|
|
|
466
466
|
* Disallow member access on a value with type `any`
|
|
467
467
|
* @see https://typescript-eslint.io/rules/no-unsafe-member-access
|
|
468
468
|
*/
|
|
469
|
-
'@typescript-eslint/no-unsafe-member-access'?: Linter.RuleEntry<
|
|
469
|
+
'@typescript-eslint/no-unsafe-member-access'?: Linter.RuleEntry<TypescriptEslintNoUnsafeMemberAccess>
|
|
470
470
|
/**
|
|
471
471
|
* Disallow returning a value with type `any` from a function
|
|
472
472
|
* @see https://typescript-eslint.io/rules/no-unsafe-return
|
|
@@ -806,61 +806,6 @@ interface RuleOptions {
|
|
|
806
806
|
* @deprecated
|
|
807
807
|
*/
|
|
808
808
|
'arrow-spacing'?: Linter.RuleEntry<ArrowSpacing>
|
|
809
|
-
/**
|
|
810
|
-
* Enforce a consistent order for tailwind classes.
|
|
811
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/enforce-consistent-class-order.md
|
|
812
|
-
*/
|
|
813
|
-
'better-tailwindcss/enforce-consistent-class-order'?: Linter.RuleEntry<BetterTailwindcssEnforceConsistentClassOrder>
|
|
814
|
-
/**
|
|
815
|
-
* Enforce consistent important position for classes.
|
|
816
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/enforce-consistent-important-position.md
|
|
817
|
-
*/
|
|
818
|
-
'better-tailwindcss/enforce-consistent-important-position'?: Linter.RuleEntry<BetterTailwindcssEnforceConsistentImportantPosition>
|
|
819
|
-
/**
|
|
820
|
-
* Enforce consistent line wrapping for tailwind classes.
|
|
821
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/multiline.md
|
|
822
|
-
*/
|
|
823
|
-
'better-tailwindcss/enforce-consistent-line-wrapping'?: Linter.RuleEntry<BetterTailwindcssEnforceConsistentLineWrapping>
|
|
824
|
-
/**
|
|
825
|
-
* Enforce consistent syntax for css variables.
|
|
826
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/enforce-consistent-variable-syntax.md
|
|
827
|
-
*/
|
|
828
|
-
'better-tailwindcss/enforce-consistent-variable-syntax'?: Linter.RuleEntry<BetterTailwindcssEnforceConsistentVariableSyntax>
|
|
829
|
-
/**
|
|
830
|
-
* Enforce shorthand class names instead of longhand class names.
|
|
831
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/enforce-shorthand-classes.md
|
|
832
|
-
*/
|
|
833
|
-
'better-tailwindcss/enforce-shorthand-classes'?: Linter.RuleEntry<BetterTailwindcssEnforceShorthandClasses>
|
|
834
|
-
/**
|
|
835
|
-
* Disallow classes that produce conflicting styles.
|
|
836
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-conflicting-classes.md
|
|
837
|
-
*/
|
|
838
|
-
'better-tailwindcss/no-conflicting-classes'?: Linter.RuleEntry<BetterTailwindcssNoConflictingClasses>
|
|
839
|
-
/**
|
|
840
|
-
* Disallow the use of deprecated Tailwind CSS classes.
|
|
841
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-deprecated-classes.md
|
|
842
|
-
*/
|
|
843
|
-
'better-tailwindcss/no-deprecated-classes'?: Linter.RuleEntry<BetterTailwindcssNoDeprecatedClasses>
|
|
844
|
-
/**
|
|
845
|
-
* Disallow duplicate class names in tailwind classes.
|
|
846
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-duplicate-classes.md
|
|
847
|
-
*/
|
|
848
|
-
'better-tailwindcss/no-duplicate-classes'?: Linter.RuleEntry<BetterTailwindcssNoDuplicateClasses>
|
|
849
|
-
/**
|
|
850
|
-
* Disallow restricted classes.
|
|
851
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-restricted-classes.md
|
|
852
|
-
*/
|
|
853
|
-
'better-tailwindcss/no-restricted-classes'?: Linter.RuleEntry<BetterTailwindcssNoRestrictedClasses>
|
|
854
|
-
/**
|
|
855
|
-
* Disallow any css classes that are not registered in tailwindcss.
|
|
856
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-unknown-classes.md
|
|
857
|
-
*/
|
|
858
|
-
'better-tailwindcss/no-unknown-classes'?: Linter.RuleEntry<BetterTailwindcssNoUnknownClasses>
|
|
859
|
-
/**
|
|
860
|
-
* Disallow unnecessary whitespace between Tailwind CSS classes.
|
|
861
|
-
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-unnecessary-whitespace.md
|
|
862
|
-
*/
|
|
863
|
-
'better-tailwindcss/no-unnecessary-whitespace'?: Linter.RuleEntry<BetterTailwindcssNoUnnecessaryWhitespace>
|
|
864
809
|
/**
|
|
865
810
|
* Enforce the use of variables within the scope they are defined
|
|
866
811
|
* @see https://eslint.org/docs/latest/rules/block-scoped-var
|
|
@@ -1116,6 +1061,279 @@ interface RuleOptions {
|
|
|
1116
1061
|
* @deprecated
|
|
1117
1062
|
*/
|
|
1118
1063
|
'handle-callback-err'?: Linter.RuleEntry<HandleCallbackErr>
|
|
1064
|
+
/**
|
|
1065
|
+
* Enforce newline between attributes
|
|
1066
|
+
* @see https://html-eslint.org/docs/rules/attrs-newline
|
|
1067
|
+
*/
|
|
1068
|
+
'html/attrs-newline'?: Linter.RuleEntry<HtmlAttrsNewline>
|
|
1069
|
+
/**
|
|
1070
|
+
* Enforce newline between elements.
|
|
1071
|
+
* @see https://html-eslint.org/docs/rules/element-newline
|
|
1072
|
+
*/
|
|
1073
|
+
'html/element-newline'?: Linter.RuleEntry<HtmlElementNewline>
|
|
1074
|
+
/**
|
|
1075
|
+
* Enforce consistent naming of id attributes
|
|
1076
|
+
* @see https://html-eslint.org/docs/rules/id-naming-convention
|
|
1077
|
+
*/
|
|
1078
|
+
'html/id-naming-convention'?: Linter.RuleEntry<HtmlIdNamingConvention>
|
|
1079
|
+
/**
|
|
1080
|
+
* Enforce consistent indentation
|
|
1081
|
+
*/
|
|
1082
|
+
'html/indent'?: Linter.RuleEntry<HtmlIndent>
|
|
1083
|
+
/**
|
|
1084
|
+
* Enforce use of lowercase for tag and attribute names.
|
|
1085
|
+
* @see https://html-eslint.org/docs/rules/lowercase
|
|
1086
|
+
*/
|
|
1087
|
+
'html/lowercase'?: Linter.RuleEntry<[]>
|
|
1088
|
+
/**
|
|
1089
|
+
* Enforce maximum element depth
|
|
1090
|
+
* @see https://html-eslint.org/docs/rules/max-element-depth
|
|
1091
|
+
*/
|
|
1092
|
+
'html/max-element-depth'?: Linter.RuleEntry<HtmlMaxElementDepth>
|
|
1093
|
+
/**
|
|
1094
|
+
* Disallow use of abstract roles
|
|
1095
|
+
* @see https://html-eslint.org/docs/rules/no-abstract-roles
|
|
1096
|
+
*/
|
|
1097
|
+
'html/no-abstract-roles'?: Linter.RuleEntry<[]>
|
|
1098
|
+
/**
|
|
1099
|
+
* Disallow use of accesskey attribute
|
|
1100
|
+
* @see https://html-eslint.org/docs/rules/no-accesskey-attrs
|
|
1101
|
+
*/
|
|
1102
|
+
'html/no-accesskey-attrs'?: Linter.RuleEntry<[]>
|
|
1103
|
+
/**
|
|
1104
|
+
* Disallow use of aria-hidden attributes on the `body` element.
|
|
1105
|
+
* @see https://html-eslint.org/docs/rules/no-aria-hidden-body
|
|
1106
|
+
*/
|
|
1107
|
+
'html/no-aria-hidden-body'?: Linter.RuleEntry<[]>
|
|
1108
|
+
/**
|
|
1109
|
+
* Disallow aria-hidden="true" on focusable elements
|
|
1110
|
+
* @see https://html-eslint.org/docs/rules/no-aria-hidden-on-focusable
|
|
1111
|
+
*/
|
|
1112
|
+
'html/no-aria-hidden-on-focusable'?: Linter.RuleEntry<[]>
|
|
1113
|
+
/**
|
|
1114
|
+
* Disallow duplicate attributes
|
|
1115
|
+
* @see https://html-eslint.org/docs/rules/no-duplicate-attrs
|
|
1116
|
+
*/
|
|
1117
|
+
'html/no-duplicate-attrs'?: Linter.RuleEntry<[]>
|
|
1118
|
+
/**
|
|
1119
|
+
* Disallow duplicate class names
|
|
1120
|
+
* @see https://html-eslint.org/docs/rules/no-duplicate-class
|
|
1121
|
+
*/
|
|
1122
|
+
'html/no-duplicate-class'?: Linter.RuleEntry<[]>
|
|
1123
|
+
/**
|
|
1124
|
+
* Disallow duplicate id attributes
|
|
1125
|
+
* @see https://html-eslint.org/docs/rules/no-duplicate-id
|
|
1126
|
+
*/
|
|
1127
|
+
'html/no-duplicate-id'?: Linter.RuleEntry<[]>
|
|
1128
|
+
/**
|
|
1129
|
+
* Disallow duplicate tags in `<head>`
|
|
1130
|
+
* @see https://html-eslint.org/docs/rules/no-duplicate-in-head
|
|
1131
|
+
*/
|
|
1132
|
+
'html/no-duplicate-in-head'?: Linter.RuleEntry<[]>
|
|
1133
|
+
/**
|
|
1134
|
+
* Disallow empty or inaccessible headings.
|
|
1135
|
+
* @see https://html-eslint.org/docs/rules/no-empty-headings
|
|
1136
|
+
*/
|
|
1137
|
+
'html/no-empty-headings'?: Linter.RuleEntry<[]>
|
|
1138
|
+
/**
|
|
1139
|
+
* Disallow extra spacing around attributes
|
|
1140
|
+
* @see https://html-eslint.org/docs/rules/no-extra-spacing-attrs
|
|
1141
|
+
*/
|
|
1142
|
+
'html/no-extra-spacing-attrs'?: Linter.RuleEntry<HtmlNoExtraSpacingAttrs>
|
|
1143
|
+
/**
|
|
1144
|
+
* Disallow unnecessary consecutive spaces
|
|
1145
|
+
* @see https://html-eslint.org/docs/rules/no-extra-spacing-text
|
|
1146
|
+
*/
|
|
1147
|
+
'html/no-extra-spacing-text'?: Linter.RuleEntry<HtmlNoExtraSpacingText>
|
|
1148
|
+
/**
|
|
1149
|
+
* Disallows the use of heading elements inside <button>.
|
|
1150
|
+
* @see https://html-eslint.org/docs/rules/no-heading-inside-button
|
|
1151
|
+
*/
|
|
1152
|
+
'html/no-heading-inside-button'?: Linter.RuleEntry<[]>
|
|
1153
|
+
/**
|
|
1154
|
+
* Disallow HTML attributes that have no effect in their context
|
|
1155
|
+
*/
|
|
1156
|
+
'html/no-ineffective-attrs'?: Linter.RuleEntry<[]>
|
|
1157
|
+
/**
|
|
1158
|
+
* Disallow using inline style
|
|
1159
|
+
* @see https://html-eslint.org/docs/rules/no-inline-styles
|
|
1160
|
+
*/
|
|
1161
|
+
'html/no-inline-styles'?: Linter.RuleEntry<[]>
|
|
1162
|
+
/**
|
|
1163
|
+
* Disallows the use of invalid HTML entities
|
|
1164
|
+
* @see https://html-eslint.org/docs/rules/no-invalid-entity
|
|
1165
|
+
*/
|
|
1166
|
+
'html/no-invalid-entity'?: Linter.RuleEntry<[]>
|
|
1167
|
+
/**
|
|
1168
|
+
* Disallows use of invalid role.
|
|
1169
|
+
* @see https://html-eslint.org/docs/rules/no-invalid-role
|
|
1170
|
+
*/
|
|
1171
|
+
'html/no-invalid-role'?: Linter.RuleEntry<[]>
|
|
1172
|
+
/**
|
|
1173
|
+
* Disallow multiple empty lines
|
|
1174
|
+
* @see https://html-eslint.org/docs/rules/no-multiple-empty-lines
|
|
1175
|
+
*/
|
|
1176
|
+
'html/no-multiple-empty-lines'?: Linter.RuleEntry<HtmlNoMultipleEmptyLines>
|
|
1177
|
+
/**
|
|
1178
|
+
* Disallow multiple `<h1></h1>`.
|
|
1179
|
+
* @see https://html-eslint.org/docs/rules/no-multiple-h1
|
|
1180
|
+
*/
|
|
1181
|
+
'html/no-multiple-h1'?: Linter.RuleEntry<[]>
|
|
1182
|
+
/**
|
|
1183
|
+
* Disallows nested interactive elements
|
|
1184
|
+
* @see https://html-eslint.org/docs/rules/no-nested-interactive
|
|
1185
|
+
*/
|
|
1186
|
+
'html/no-nested-interactive'?: Linter.RuleEntry<[]>
|
|
1187
|
+
/**
|
|
1188
|
+
* Disallow use of `user-scalable=no` in `<meta name="viewport">`.
|
|
1189
|
+
* @see https://html-eslint.org/docs/rules/no-non-scalable-viewport
|
|
1190
|
+
*/
|
|
1191
|
+
'html/no-non-scalable-viewport'?: Linter.RuleEntry<[]>
|
|
1192
|
+
/**
|
|
1193
|
+
* Disallow use of obsolete elements in HTML5
|
|
1194
|
+
* @see https://html-eslint.org/docs/rules/no-obsolete-tags
|
|
1195
|
+
*/
|
|
1196
|
+
'html/no-obsolete-tags'?: Linter.RuleEntry<[]>
|
|
1197
|
+
/**
|
|
1198
|
+
* Disallow use of positive `tabindex`.
|
|
1199
|
+
* @see https://html-eslint.org/docs/rules/no-positive-tabindex
|
|
1200
|
+
*/
|
|
1201
|
+
'html/no-positive-tabindex'?: Linter.RuleEntry<[]>
|
|
1202
|
+
/**
|
|
1203
|
+
* Disallow specified attributes
|
|
1204
|
+
* @see https://html-eslint.org/docs/rules/no-restricted-attr-values
|
|
1205
|
+
*/
|
|
1206
|
+
'html/no-restricted-attr-values'?: Linter.RuleEntry<HtmlNoRestrictedAttrValues>
|
|
1207
|
+
/**
|
|
1208
|
+
* Disallow specified attributes
|
|
1209
|
+
* @see https://html-eslint.org/docs/rules/no-restricted-attrs
|
|
1210
|
+
*/
|
|
1211
|
+
'html/no-restricted-attrs'?: Linter.RuleEntry<HtmlNoRestrictedAttrs>
|
|
1212
|
+
/**
|
|
1213
|
+
* Disallow specified tags
|
|
1214
|
+
* @see https://html-eslint.org/docs/rules/no-restricted-tags
|
|
1215
|
+
*/
|
|
1216
|
+
'html/no-restricted-tags'?: Linter.RuleEntry<HtmlNoRestrictedTags>
|
|
1217
|
+
/**
|
|
1218
|
+
* Enforce to omit type attributes for style sheets and scripts
|
|
1219
|
+
* @see https://html-eslint.org/docs/rules/no-script-style-type
|
|
1220
|
+
*/
|
|
1221
|
+
'html/no-script-style-type'?: Linter.RuleEntry<[]>
|
|
1222
|
+
/**
|
|
1223
|
+
* Disallow skipping heading levels
|
|
1224
|
+
* @see https://html-eslint.org/docs/rules/no-skip-heading-levels
|
|
1225
|
+
*/
|
|
1226
|
+
'html/no-skip-heading-levels'?: Linter.RuleEntry<[]>
|
|
1227
|
+
/**
|
|
1228
|
+
* Disallow usage of unsafe `target='_blank'`
|
|
1229
|
+
* @see https://html-eslint.org/docs/rules/no-target-blank
|
|
1230
|
+
*/
|
|
1231
|
+
'html/no-target-blank'?: Linter.RuleEntry<[]>
|
|
1232
|
+
/**
|
|
1233
|
+
* Disallow trailing whitespace at the end of lines
|
|
1234
|
+
* @see https://html-eslint.org/docs/rules/no-trailing-spaces
|
|
1235
|
+
*/
|
|
1236
|
+
'html/no-trailing-spaces'?: Linter.RuleEntry<[]>
|
|
1237
|
+
/**
|
|
1238
|
+
* Prefer to use HTTPS for embedded resources
|
|
1239
|
+
* @see https://html-eslint.org/docs/rules/prefer-https
|
|
1240
|
+
*/
|
|
1241
|
+
'html/prefer-https'?: Linter.RuleEntry<[]>
|
|
1242
|
+
/**
|
|
1243
|
+
* Enforce consistent quoting attributes with double(") or single(')
|
|
1244
|
+
* @see https://html-eslint.org/docs/rules/quotes
|
|
1245
|
+
*/
|
|
1246
|
+
'html/quotes'?: Linter.RuleEntry<HtmlQuotes>
|
|
1247
|
+
/**
|
|
1248
|
+
* Require specified attributes
|
|
1249
|
+
* @see https://html-eslint.org/docs/rules/require-attrs
|
|
1250
|
+
*/
|
|
1251
|
+
'html/require-attrs'?: Linter.RuleEntry<HtmlRequireAttrs>
|
|
1252
|
+
/**
|
|
1253
|
+
* Require use of the button element with a valid type attribute.
|
|
1254
|
+
* @see https://html-eslint.org/docs/rules/require-button-type
|
|
1255
|
+
*/
|
|
1256
|
+
'html/require-button-type'?: Linter.RuleEntry<[]>
|
|
1257
|
+
/**
|
|
1258
|
+
* Require closing tags.
|
|
1259
|
+
* @see https://html-eslint.org/docs/rules/require-closing-tags
|
|
1260
|
+
*/
|
|
1261
|
+
'html/require-closing-tags'?: Linter.RuleEntry<HtmlRequireClosingTags>
|
|
1262
|
+
/**
|
|
1263
|
+
* Require `<!DOCTYPE HTML>` in HTML
|
|
1264
|
+
* @see https://html-eslint.org/docs/rules/require-doctype
|
|
1265
|
+
*/
|
|
1266
|
+
'html/require-doctype'?: Linter.RuleEntry<[]>
|
|
1267
|
+
/**
|
|
1268
|
+
* Enforces that some elements (img, iframe) have explicitly defined width and height attributes.
|
|
1269
|
+
* @see https://html-eslint.org/docs/rules/require-explicit-size
|
|
1270
|
+
*/
|
|
1271
|
+
'html/require-explicit-size'?: Linter.RuleEntry<HtmlRequireExplicitSize>
|
|
1272
|
+
/**
|
|
1273
|
+
* Require `method` attribute in `<form>`
|
|
1274
|
+
* @see https://html-eslint.org/docs/rules/require-form-method
|
|
1275
|
+
*/
|
|
1276
|
+
'html/require-form-method'?: Linter.RuleEntry<[]>
|
|
1277
|
+
/**
|
|
1278
|
+
* Require `title` in `<frame>`, `<iframe>`
|
|
1279
|
+
* @see https://html-eslint.org/docs/rules/require-frame-title
|
|
1280
|
+
*/
|
|
1281
|
+
'html/require-frame-title'?: Linter.RuleEntry<[]>
|
|
1282
|
+
/**
|
|
1283
|
+
* Require `alt` attribute on `<img>` tag
|
|
1284
|
+
* @see https://html-eslint.org/docs/rules/require-img-alt
|
|
1285
|
+
*/
|
|
1286
|
+
'html/require-img-alt'?: Linter.RuleEntry<HtmlRequireImgAlt>
|
|
1287
|
+
/**
|
|
1288
|
+
* Enforces use of label for form elements(`input`, `textarea`, `select`)
|
|
1289
|
+
* @see https://html-eslint.org/docs/rules/require-input-label
|
|
1290
|
+
*/
|
|
1291
|
+
'html/require-input-label'?: Linter.RuleEntry<[]>
|
|
1292
|
+
/**
|
|
1293
|
+
* Require `lang` attribute on `<html>` tag
|
|
1294
|
+
* @see https://html-eslint.org/docs/rules/require-lang
|
|
1295
|
+
*/
|
|
1296
|
+
'html/require-lang'?: Linter.RuleEntry<[]>
|
|
1297
|
+
/**
|
|
1298
|
+
* Enforce `<li>` to be in `<ul>`, `<ol>` or `<menu>`.
|
|
1299
|
+
* @see https://html-eslint.org/docs/rules/require-li-container
|
|
1300
|
+
*/
|
|
1301
|
+
'html/require-li-container'?: Linter.RuleEntry<[]>
|
|
1302
|
+
/**
|
|
1303
|
+
* Enforce use of `<meta charset="...">` in `<head>`
|
|
1304
|
+
* @see https://html-eslint.org/docs/rules/require-meta-charset
|
|
1305
|
+
*/
|
|
1306
|
+
'html/require-meta-charset'?: Linter.RuleEntry<[]>
|
|
1307
|
+
/**
|
|
1308
|
+
* Require use of `<meta name="description">` in `<head>`
|
|
1309
|
+
* @see https://html-eslint.org/docs/rules/require-meta-description
|
|
1310
|
+
*/
|
|
1311
|
+
'html/require-meta-description'?: Linter.RuleEntry<[]>
|
|
1312
|
+
/**
|
|
1313
|
+
* Enforce use of `<meta name="viewport">` in `<head>`
|
|
1314
|
+
* @see https://html-eslint.org/docs/rules/require-meta-viewport
|
|
1315
|
+
*/
|
|
1316
|
+
'html/require-meta-viewport'?: Linter.RuleEntry<[]>
|
|
1317
|
+
/**
|
|
1318
|
+
* Enforce use of specified meta tags for open graph protocol.
|
|
1319
|
+
* @see https://html-eslint.org/docs/rules/require-open-graph-protocol
|
|
1320
|
+
*/
|
|
1321
|
+
'html/require-open-graph-protocol'?: Linter.RuleEntry<HtmlRequireOpenGraphProtocol>
|
|
1322
|
+
/**
|
|
1323
|
+
* Require `<title>` in the `<head>`
|
|
1324
|
+
* @see https://html-eslint.org/docs/rules/require-title
|
|
1325
|
+
*/
|
|
1326
|
+
'html/require-title'?: Linter.RuleEntry<[]>
|
|
1327
|
+
/**
|
|
1328
|
+
* Enforce priority and alphabetical sorting of attributes
|
|
1329
|
+
* @see https://html-eslint.org/docs/rules/sort-attrs
|
|
1330
|
+
*/
|
|
1331
|
+
'html/sort-attrs'?: Linter.RuleEntry<HtmlSortAttrs>
|
|
1332
|
+
/**
|
|
1333
|
+
* Enforce the use of baseline features.
|
|
1334
|
+
* @see https://html-eslint.org/docs/rules/use-baseline
|
|
1335
|
+
*/
|
|
1336
|
+
'html/use-baseline'?: Linter.RuleEntry<HtmlUseBaseline>
|
|
1119
1337
|
/**
|
|
1120
1338
|
* Disallow specified identifiers
|
|
1121
1339
|
* @see https://eslint.org/docs/latest/rules/id-blacklist
|
|
@@ -1736,6 +1954,26 @@ interface RuleOptions {
|
|
|
1736
1954
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/text-escaping.md#repos-sticky-header
|
|
1737
1955
|
*/
|
|
1738
1956
|
'jsdoc/text-escaping'?: Linter.RuleEntry<JsdocTextEscaping>
|
|
1957
|
+
/**
|
|
1958
|
+
* Prefers either function properties or method signatures
|
|
1959
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-method-signature-style.md#repos-sticky-header
|
|
1960
|
+
*/
|
|
1961
|
+
'jsdoc/ts-method-signature-style'?: Linter.RuleEntry<JsdocTsMethodSignatureStyle>
|
|
1962
|
+
/**
|
|
1963
|
+
* Warns against use of the empty object type
|
|
1964
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-no-empty-object-type.md#repos-sticky-header
|
|
1965
|
+
*/
|
|
1966
|
+
'jsdoc/ts-no-empty-object-type'?: Linter.RuleEntry<[]>
|
|
1967
|
+
/**
|
|
1968
|
+
* Catches unnecessary template expressions such as string expressions within a template literal.
|
|
1969
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-no-unnecessary-template-expression.md#repos-sticky-header
|
|
1970
|
+
*/
|
|
1971
|
+
'jsdoc/ts-no-unnecessary-template-expression'?: Linter.RuleEntry<JsdocTsNoUnnecessaryTemplateExpression>
|
|
1972
|
+
/**
|
|
1973
|
+
* Prefers function types over call signatures when there are no other properties.
|
|
1974
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-prefer-function-type.md#repos-sticky-header
|
|
1975
|
+
*/
|
|
1976
|
+
'jsdoc/ts-prefer-function-type'?: Linter.RuleEntry<JsdocTsPreferFunctionType>
|
|
1739
1977
|
/**
|
|
1740
1978
|
* Formats JSDoc type values.
|
|
1741
1979
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/type-formatting.md#repos-sticky-header
|
|
@@ -3981,6 +4219,10 @@ interface RuleOptions {
|
|
|
3981
4219
|
* Validates usage of the useMemo() hook against common mistakes. See [`useMemo()` docs](https://react.dev/reference/react/useMemo) for more information.
|
|
3982
4220
|
*/
|
|
3983
4221
|
'react-hooks/use-memo'?: Linter.RuleEntry<ReactHooksUseMemo>
|
|
4222
|
+
/**
|
|
4223
|
+
* Validates that useMemos always return a value. See [`useMemo()` docs](https://react.dev/reference/react/useMemo) for more information.
|
|
4224
|
+
*/
|
|
4225
|
+
'react-hooks/void-use-memo'?: Linter.RuleEntry<ReactHooksVoidUseMemo>
|
|
3984
4226
|
'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>
|
|
3985
4227
|
/**
|
|
3986
4228
|
* Enforces consistent naming for boolean props
|
|
@@ -5020,6 +5262,61 @@ interface RuleOptions {
|
|
|
5020
5262
|
* @see https://eslint.org/docs/latest/rules/symbol-description
|
|
5021
5263
|
*/
|
|
5022
5264
|
'symbol-description'?: Linter.RuleEntry<[]>
|
|
5265
|
+
/**
|
|
5266
|
+
* Enforce a consistent order for tailwind classes.
|
|
5267
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/enforce-consistent-class-order.md
|
|
5268
|
+
*/
|
|
5269
|
+
'tailwindcss/enforce-consistent-class-order'?: Linter.RuleEntry<TailwindcssEnforceConsistentClassOrder>
|
|
5270
|
+
/**
|
|
5271
|
+
* Enforce consistent important position for classes.
|
|
5272
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/enforce-consistent-important-position.md
|
|
5273
|
+
*/
|
|
5274
|
+
'tailwindcss/enforce-consistent-important-position'?: Linter.RuleEntry<TailwindcssEnforceConsistentImportantPosition>
|
|
5275
|
+
/**
|
|
5276
|
+
* Enforce consistent line wrapping for tailwind classes.
|
|
5277
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/multiline.md
|
|
5278
|
+
*/
|
|
5279
|
+
'tailwindcss/enforce-consistent-line-wrapping'?: Linter.RuleEntry<TailwindcssEnforceConsistentLineWrapping>
|
|
5280
|
+
/**
|
|
5281
|
+
* Enforce consistent syntax for css variables.
|
|
5282
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/enforce-consistent-variable-syntax.md
|
|
5283
|
+
*/
|
|
5284
|
+
'tailwindcss/enforce-consistent-variable-syntax'?: Linter.RuleEntry<TailwindcssEnforceConsistentVariableSyntax>
|
|
5285
|
+
/**
|
|
5286
|
+
* Enforce shorthand class names instead of longhand class names.
|
|
5287
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/enforce-shorthand-classes.md
|
|
5288
|
+
*/
|
|
5289
|
+
'tailwindcss/enforce-shorthand-classes'?: Linter.RuleEntry<TailwindcssEnforceShorthandClasses>
|
|
5290
|
+
/**
|
|
5291
|
+
* Disallow classes that produce conflicting styles.
|
|
5292
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-conflicting-classes.md
|
|
5293
|
+
*/
|
|
5294
|
+
'tailwindcss/no-conflicting-classes'?: Linter.RuleEntry<TailwindcssNoConflictingClasses>
|
|
5295
|
+
/**
|
|
5296
|
+
* Disallow the use of deprecated Tailwind CSS classes.
|
|
5297
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-deprecated-classes.md
|
|
5298
|
+
*/
|
|
5299
|
+
'tailwindcss/no-deprecated-classes'?: Linter.RuleEntry<TailwindcssNoDeprecatedClasses>
|
|
5300
|
+
/**
|
|
5301
|
+
* Disallow duplicate class names in tailwind classes.
|
|
5302
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-duplicate-classes.md
|
|
5303
|
+
*/
|
|
5304
|
+
'tailwindcss/no-duplicate-classes'?: Linter.RuleEntry<TailwindcssNoDuplicateClasses>
|
|
5305
|
+
/**
|
|
5306
|
+
* Disallow restricted classes.
|
|
5307
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-restricted-classes.md
|
|
5308
|
+
*/
|
|
5309
|
+
'tailwindcss/no-restricted-classes'?: Linter.RuleEntry<TailwindcssNoRestrictedClasses>
|
|
5310
|
+
/**
|
|
5311
|
+
* Disallow any css classes that are not registered in tailwindcss.
|
|
5312
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-unknown-classes.md
|
|
5313
|
+
*/
|
|
5314
|
+
'tailwindcss/no-unknown-classes'?: Linter.RuleEntry<TailwindcssNoUnknownClasses>
|
|
5315
|
+
/**
|
|
5316
|
+
* Disallow unnecessary whitespace between Tailwind CSS classes.
|
|
5317
|
+
* @see https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/docs/rules/no-unnecessary-whitespace.md
|
|
5318
|
+
*/
|
|
5319
|
+
'tailwindcss/no-unnecessary-whitespace'?: Linter.RuleEntry<TailwindcssNoUnnecessaryWhitespace>
|
|
5023
5320
|
/**
|
|
5024
5321
|
* Require or disallow spacing around embedded expressions of template strings
|
|
5025
5322
|
* @see https://eslint.org/docs/latest/rules/template-curly-spacing
|
|
@@ -6058,15 +6355,19 @@ type TypescriptEslintArrayType = []|[{
|
|
|
6058
6355
|
type TypescriptEslintBanTsComment = []|[{
|
|
6059
6356
|
|
|
6060
6357
|
minimumDescriptionLength?: number
|
|
6358
|
+
|
|
6061
6359
|
"ts-check"?: (boolean | "allow-with-description" | {
|
|
6062
6360
|
descriptionFormat?: string
|
|
6063
6361
|
})
|
|
6362
|
+
|
|
6064
6363
|
"ts-expect-error"?: (boolean | "allow-with-description" | {
|
|
6065
6364
|
descriptionFormat?: string
|
|
6066
6365
|
})
|
|
6366
|
+
|
|
6067
6367
|
"ts-ignore"?: (boolean | "allow-with-description" | {
|
|
6068
6368
|
descriptionFormat?: string
|
|
6069
6369
|
})
|
|
6370
|
+
|
|
6070
6371
|
"ts-nocheck"?: (boolean | "allow-with-description" | {
|
|
6071
6372
|
descriptionFormat?: string
|
|
6072
6373
|
})
|
|
@@ -6160,10 +6461,15 @@ type TypescriptEslintExplicitMemberAccessibility = []|[{
|
|
|
6160
6461
|
ignoredMethodNames?: string[]
|
|
6161
6462
|
|
|
6162
6463
|
overrides?: {
|
|
6464
|
+
|
|
6163
6465
|
accessors?: ("explicit" | "no-public" | "off")
|
|
6466
|
+
|
|
6164
6467
|
constructors?: ("explicit" | "no-public" | "off")
|
|
6468
|
+
|
|
6165
6469
|
methods?: ("explicit" | "no-public" | "off")
|
|
6470
|
+
|
|
6166
6471
|
parameterProperties?: ("explicit" | "no-public" | "off")
|
|
6472
|
+
|
|
6167
6473
|
properties?: ("explicit" | "no-public" | "off")
|
|
6168
6474
|
}
|
|
6169
6475
|
}]
|
|
@@ -6197,26 +6503,31 @@ type TypescriptEslintMaxParams = []|[{
|
|
|
6197
6503
|
}]
|
|
6198
6504
|
// ----- @typescript-eslint/member-ordering -----
|
|
6199
6505
|
type TypescriptEslintMemberOrdering = []|[{
|
|
6506
|
+
|
|
6200
6507
|
classes?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
6201
6508
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
6202
6509
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
6203
6510
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
6204
6511
|
})
|
|
6512
|
+
|
|
6205
6513
|
classExpressions?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
6206
6514
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
6207
6515
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
6208
6516
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
6209
6517
|
})
|
|
6518
|
+
|
|
6210
6519
|
default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
6211
6520
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
6212
6521
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
6213
6522
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
6214
6523
|
})
|
|
6524
|
+
|
|
6215
6525
|
interfaces?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
6216
6526
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
6217
6527
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
6218
6528
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
6219
6529
|
})
|
|
6530
|
+
|
|
6220
6531
|
typeLiterals?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
6221
6532
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
6222
6533
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
@@ -6867,6 +7178,11 @@ type TypescriptEslintNoUnnecessaryTypeAssertion = []|[{
|
|
|
6867
7178
|
|
|
6868
7179
|
typesToIgnore?: string[]
|
|
6869
7180
|
}]
|
|
7181
|
+
// ----- @typescript-eslint/no-unsafe-member-access -----
|
|
7182
|
+
type TypescriptEslintNoUnsafeMemberAccess = []|[{
|
|
7183
|
+
|
|
7184
|
+
allowOptionalChaining?: boolean
|
|
7185
|
+
}]
|
|
6870
7186
|
// ----- @typescript-eslint/no-unused-expressions -----
|
|
6871
7187
|
type TypescriptEslintNoUnusedExpressions = []|[{
|
|
6872
7188
|
allowShortCircuit?: boolean
|
|
@@ -6892,6 +7208,8 @@ type TypescriptEslintNoUnusedVars = []|[(("all" | "local") | {
|
|
|
6892
7208
|
|
|
6893
7209
|
ignoreRestSiblings?: boolean
|
|
6894
7210
|
|
|
7211
|
+
ignoreUsingDeclarations?: boolean
|
|
7212
|
+
|
|
6895
7213
|
reportUsedIgnorePattern?: boolean
|
|
6896
7214
|
|
|
6897
7215
|
vars?: ("all" | "local")
|
|
@@ -7300,944 +7618,20 @@ type ArrowSpacing = []|[{
|
|
|
7300
7618
|
before?: boolean
|
|
7301
7619
|
after?: boolean
|
|
7302
7620
|
}]
|
|
7303
|
-
// -----
|
|
7304
|
-
type
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
|
|
7308
|
-
|
|
7309
|
-
|
|
7310
|
-
|
|
7311
|
-
|
|
7312
|
-
|
|
7313
|
-
|
|
7314
|
-
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
7318
|
-
match: "objectValues"
|
|
7319
|
-
|
|
7320
|
-
pathPattern?: string
|
|
7321
|
-
[k: string]: unknown | undefined
|
|
7322
|
-
})[]] | string)[]
|
|
7323
|
-
|
|
7324
|
-
attributes?: (string | [string, ({
|
|
7325
|
-
|
|
7326
|
-
match: "strings"
|
|
7327
|
-
[k: string]: unknown | undefined
|
|
7328
|
-
} | {
|
|
7329
|
-
|
|
7330
|
-
match: "objectKeys"
|
|
7331
|
-
|
|
7332
|
-
pathPattern?: string
|
|
7333
|
-
[k: string]: unknown | undefined
|
|
7334
|
-
} | {
|
|
7335
|
-
|
|
7336
|
-
match: "objectValues"
|
|
7337
|
-
|
|
7338
|
-
pathPattern?: string
|
|
7339
|
-
[k: string]: unknown | undefined
|
|
7340
|
-
})[]])[]
|
|
7341
|
-
|
|
7342
|
-
variables?: ([string, ({
|
|
7343
|
-
|
|
7344
|
-
match: "strings"
|
|
7345
|
-
[k: string]: unknown | undefined
|
|
7346
|
-
} | {
|
|
7347
|
-
|
|
7348
|
-
match: "objectKeys"
|
|
7349
|
-
|
|
7350
|
-
pathPattern?: string
|
|
7351
|
-
[k: string]: unknown | undefined
|
|
7352
|
-
} | {
|
|
7353
|
-
|
|
7354
|
-
match: "objectValues"
|
|
7355
|
-
|
|
7356
|
-
pathPattern?: string
|
|
7357
|
-
[k: string]: unknown | undefined
|
|
7358
|
-
})[]] | string)[]
|
|
7359
|
-
|
|
7360
|
-
tags?: ([string, ({
|
|
7361
|
-
|
|
7362
|
-
match: "strings"
|
|
7363
|
-
[k: string]: unknown | undefined
|
|
7364
|
-
} | {
|
|
7365
|
-
|
|
7366
|
-
match: "objectKeys"
|
|
7367
|
-
|
|
7368
|
-
pathPattern?: string
|
|
7369
|
-
[k: string]: unknown | undefined
|
|
7370
|
-
} | {
|
|
7371
|
-
|
|
7372
|
-
match: "objectValues"
|
|
7373
|
-
|
|
7374
|
-
pathPattern?: string
|
|
7375
|
-
[k: string]: unknown | undefined
|
|
7376
|
-
})[]] | string)[]
|
|
7377
|
-
|
|
7378
|
-
entryPoint?: string
|
|
7379
|
-
|
|
7380
|
-
tailwindConfig?: string
|
|
7381
|
-
|
|
7382
|
-
tsconfig?: string
|
|
7383
|
-
|
|
7384
|
-
order?: ("asc" | "desc" | "official" | "improved")
|
|
7385
|
-
}]
|
|
7386
|
-
// ----- better-tailwindcss/enforce-consistent-important-position -----
|
|
7387
|
-
type BetterTailwindcssEnforceConsistentImportantPosition = []|[{
|
|
7388
|
-
|
|
7389
|
-
callees?: ([string, ({
|
|
7390
|
-
|
|
7391
|
-
match: "strings"
|
|
7392
|
-
[k: string]: unknown | undefined
|
|
7393
|
-
} | {
|
|
7394
|
-
|
|
7395
|
-
match: "objectKeys"
|
|
7396
|
-
|
|
7397
|
-
pathPattern?: string
|
|
7398
|
-
[k: string]: unknown | undefined
|
|
7399
|
-
} | {
|
|
7400
|
-
|
|
7401
|
-
match: "objectValues"
|
|
7402
|
-
|
|
7403
|
-
pathPattern?: string
|
|
7404
|
-
[k: string]: unknown | undefined
|
|
7405
|
-
})[]] | string)[]
|
|
7406
|
-
|
|
7407
|
-
attributes?: (string | [string, ({
|
|
7408
|
-
|
|
7409
|
-
match: "strings"
|
|
7410
|
-
[k: string]: unknown | undefined
|
|
7411
|
-
} | {
|
|
7412
|
-
|
|
7413
|
-
match: "objectKeys"
|
|
7414
|
-
|
|
7415
|
-
pathPattern?: string
|
|
7416
|
-
[k: string]: unknown | undefined
|
|
7417
|
-
} | {
|
|
7418
|
-
|
|
7419
|
-
match: "objectValues"
|
|
7420
|
-
|
|
7421
|
-
pathPattern?: string
|
|
7422
|
-
[k: string]: unknown | undefined
|
|
7423
|
-
})[]])[]
|
|
7424
|
-
|
|
7425
|
-
variables?: ([string, ({
|
|
7426
|
-
|
|
7427
|
-
match: "strings"
|
|
7428
|
-
[k: string]: unknown | undefined
|
|
7429
|
-
} | {
|
|
7430
|
-
|
|
7431
|
-
match: "objectKeys"
|
|
7432
|
-
|
|
7433
|
-
pathPattern?: string
|
|
7434
|
-
[k: string]: unknown | undefined
|
|
7435
|
-
} | {
|
|
7436
|
-
|
|
7437
|
-
match: "objectValues"
|
|
7438
|
-
|
|
7439
|
-
pathPattern?: string
|
|
7440
|
-
[k: string]: unknown | undefined
|
|
7441
|
-
})[]] | string)[]
|
|
7442
|
-
|
|
7443
|
-
tags?: ([string, ({
|
|
7444
|
-
|
|
7445
|
-
match: "strings"
|
|
7446
|
-
[k: string]: unknown | undefined
|
|
7447
|
-
} | {
|
|
7448
|
-
|
|
7449
|
-
match: "objectKeys"
|
|
7450
|
-
|
|
7451
|
-
pathPattern?: string
|
|
7452
|
-
[k: string]: unknown | undefined
|
|
7453
|
-
} | {
|
|
7454
|
-
|
|
7455
|
-
match: "objectValues"
|
|
7456
|
-
|
|
7457
|
-
pathPattern?: string
|
|
7458
|
-
[k: string]: unknown | undefined
|
|
7459
|
-
})[]] | string)[]
|
|
7460
|
-
|
|
7461
|
-
entryPoint?: string
|
|
7462
|
-
|
|
7463
|
-
tailwindConfig?: string
|
|
7464
|
-
|
|
7465
|
-
tsconfig?: string
|
|
7466
|
-
|
|
7467
|
-
position?: ("legacy" | "recommended")
|
|
7468
|
-
}]
|
|
7469
|
-
// ----- better-tailwindcss/enforce-consistent-line-wrapping -----
|
|
7470
|
-
type BetterTailwindcssEnforceConsistentLineWrapping = []|[{
|
|
7471
|
-
|
|
7472
|
-
callees?: ([string, ({
|
|
7473
|
-
|
|
7474
|
-
match: "strings"
|
|
7475
|
-
[k: string]: unknown | undefined
|
|
7476
|
-
} | {
|
|
7477
|
-
|
|
7478
|
-
match: "objectKeys"
|
|
7479
|
-
|
|
7480
|
-
pathPattern?: string
|
|
7481
|
-
[k: string]: unknown | undefined
|
|
7482
|
-
} | {
|
|
7483
|
-
|
|
7484
|
-
match: "objectValues"
|
|
7485
|
-
|
|
7486
|
-
pathPattern?: string
|
|
7487
|
-
[k: string]: unknown | undefined
|
|
7488
|
-
})[]] | string)[]
|
|
7489
|
-
|
|
7490
|
-
attributes?: (string | [string, ({
|
|
7491
|
-
|
|
7492
|
-
match: "strings"
|
|
7493
|
-
[k: string]: unknown | undefined
|
|
7494
|
-
} | {
|
|
7495
|
-
|
|
7496
|
-
match: "objectKeys"
|
|
7497
|
-
|
|
7498
|
-
pathPattern?: string
|
|
7499
|
-
[k: string]: unknown | undefined
|
|
7500
|
-
} | {
|
|
7501
|
-
|
|
7502
|
-
match: "objectValues"
|
|
7503
|
-
|
|
7504
|
-
pathPattern?: string
|
|
7505
|
-
[k: string]: unknown | undefined
|
|
7506
|
-
})[]])[]
|
|
7507
|
-
|
|
7508
|
-
variables?: ([string, ({
|
|
7509
|
-
|
|
7510
|
-
match: "strings"
|
|
7511
|
-
[k: string]: unknown | undefined
|
|
7512
|
-
} | {
|
|
7513
|
-
|
|
7514
|
-
match: "objectKeys"
|
|
7515
|
-
|
|
7516
|
-
pathPattern?: string
|
|
7517
|
-
[k: string]: unknown | undefined
|
|
7518
|
-
} | {
|
|
7519
|
-
|
|
7520
|
-
match: "objectValues"
|
|
7521
|
-
|
|
7522
|
-
pathPattern?: string
|
|
7523
|
-
[k: string]: unknown | undefined
|
|
7524
|
-
})[]] | string)[]
|
|
7525
|
-
|
|
7526
|
-
tags?: ([string, ({
|
|
7527
|
-
|
|
7528
|
-
match: "strings"
|
|
7529
|
-
[k: string]: unknown | undefined
|
|
7530
|
-
} | {
|
|
7531
|
-
|
|
7532
|
-
match: "objectKeys"
|
|
7533
|
-
|
|
7534
|
-
pathPattern?: string
|
|
7535
|
-
[k: string]: unknown | undefined
|
|
7536
|
-
} | {
|
|
7537
|
-
|
|
7538
|
-
match: "objectValues"
|
|
7539
|
-
|
|
7540
|
-
pathPattern?: string
|
|
7541
|
-
[k: string]: unknown | undefined
|
|
7542
|
-
})[]] | string)[]
|
|
7543
|
-
|
|
7544
|
-
entryPoint?: string
|
|
7545
|
-
|
|
7546
|
-
tailwindConfig?: string
|
|
7547
|
-
|
|
7548
|
-
tsconfig?: string
|
|
7549
|
-
|
|
7550
|
-
classesPerLine?: number
|
|
7551
|
-
|
|
7552
|
-
group?: ("newLine" | "emptyLine" | "never")
|
|
7553
|
-
|
|
7554
|
-
indent?: ("tab" | number)
|
|
7555
|
-
|
|
7556
|
-
lineBreakStyle?: ("unix" | "windows")
|
|
7557
|
-
|
|
7558
|
-
preferSingleLine?: boolean
|
|
7559
|
-
|
|
7560
|
-
printWidth?: number
|
|
7561
|
-
}]
|
|
7562
|
-
// ----- better-tailwindcss/enforce-consistent-variable-syntax -----
|
|
7563
|
-
type BetterTailwindcssEnforceConsistentVariableSyntax = []|[{
|
|
7564
|
-
|
|
7565
|
-
callees?: ([string, ({
|
|
7566
|
-
|
|
7567
|
-
match: "strings"
|
|
7568
|
-
[k: string]: unknown | undefined
|
|
7569
|
-
} | {
|
|
7570
|
-
|
|
7571
|
-
match: "objectKeys"
|
|
7572
|
-
|
|
7573
|
-
pathPattern?: string
|
|
7574
|
-
[k: string]: unknown | undefined
|
|
7575
|
-
} | {
|
|
7576
|
-
|
|
7577
|
-
match: "objectValues"
|
|
7578
|
-
|
|
7579
|
-
pathPattern?: string
|
|
7580
|
-
[k: string]: unknown | undefined
|
|
7581
|
-
})[]] | string)[]
|
|
7582
|
-
|
|
7583
|
-
attributes?: (string | [string, ({
|
|
7584
|
-
|
|
7585
|
-
match: "strings"
|
|
7586
|
-
[k: string]: unknown | undefined
|
|
7587
|
-
} | {
|
|
7588
|
-
|
|
7589
|
-
match: "objectKeys"
|
|
7590
|
-
|
|
7591
|
-
pathPattern?: string
|
|
7592
|
-
[k: string]: unknown | undefined
|
|
7593
|
-
} | {
|
|
7594
|
-
|
|
7595
|
-
match: "objectValues"
|
|
7596
|
-
|
|
7597
|
-
pathPattern?: string
|
|
7598
|
-
[k: string]: unknown | undefined
|
|
7599
|
-
})[]])[]
|
|
7600
|
-
|
|
7601
|
-
variables?: ([string, ({
|
|
7602
|
-
|
|
7603
|
-
match: "strings"
|
|
7604
|
-
[k: string]: unknown | undefined
|
|
7605
|
-
} | {
|
|
7606
|
-
|
|
7607
|
-
match: "objectKeys"
|
|
7608
|
-
|
|
7609
|
-
pathPattern?: string
|
|
7610
|
-
[k: string]: unknown | undefined
|
|
7611
|
-
} | {
|
|
7612
|
-
|
|
7613
|
-
match: "objectValues"
|
|
7614
|
-
|
|
7615
|
-
pathPattern?: string
|
|
7616
|
-
[k: string]: unknown | undefined
|
|
7617
|
-
})[]] | string)[]
|
|
7618
|
-
|
|
7619
|
-
tags?: ([string, ({
|
|
7620
|
-
|
|
7621
|
-
match: "strings"
|
|
7622
|
-
[k: string]: unknown | undefined
|
|
7623
|
-
} | {
|
|
7624
|
-
|
|
7625
|
-
match: "objectKeys"
|
|
7626
|
-
|
|
7627
|
-
pathPattern?: string
|
|
7628
|
-
[k: string]: unknown | undefined
|
|
7629
|
-
} | {
|
|
7630
|
-
|
|
7631
|
-
match: "objectValues"
|
|
7632
|
-
|
|
7633
|
-
pathPattern?: string
|
|
7634
|
-
[k: string]: unknown | undefined
|
|
7635
|
-
})[]] | string)[]
|
|
7636
|
-
|
|
7637
|
-
entryPoint?: string
|
|
7638
|
-
|
|
7639
|
-
tailwindConfig?: string
|
|
7640
|
-
|
|
7641
|
-
tsconfig?: string
|
|
7642
|
-
|
|
7643
|
-
syntax?: ("shorthand" | "variable")
|
|
7644
|
-
}]
|
|
7645
|
-
// ----- better-tailwindcss/enforce-shorthand-classes -----
|
|
7646
|
-
type BetterTailwindcssEnforceShorthandClasses = []|[{
|
|
7647
|
-
|
|
7648
|
-
callees?: ([string, ({
|
|
7649
|
-
|
|
7650
|
-
match: "strings"
|
|
7651
|
-
[k: string]: unknown | undefined
|
|
7652
|
-
} | {
|
|
7653
|
-
|
|
7654
|
-
match: "objectKeys"
|
|
7655
|
-
|
|
7656
|
-
pathPattern?: string
|
|
7657
|
-
[k: string]: unknown | undefined
|
|
7658
|
-
} | {
|
|
7659
|
-
|
|
7660
|
-
match: "objectValues"
|
|
7661
|
-
|
|
7662
|
-
pathPattern?: string
|
|
7663
|
-
[k: string]: unknown | undefined
|
|
7664
|
-
})[]] | string)[]
|
|
7665
|
-
|
|
7666
|
-
attributes?: (string | [string, ({
|
|
7667
|
-
|
|
7668
|
-
match: "strings"
|
|
7669
|
-
[k: string]: unknown | undefined
|
|
7670
|
-
} | {
|
|
7671
|
-
|
|
7672
|
-
match: "objectKeys"
|
|
7673
|
-
|
|
7674
|
-
pathPattern?: string
|
|
7675
|
-
[k: string]: unknown | undefined
|
|
7676
|
-
} | {
|
|
7677
|
-
|
|
7678
|
-
match: "objectValues"
|
|
7679
|
-
|
|
7680
|
-
pathPattern?: string
|
|
7681
|
-
[k: string]: unknown | undefined
|
|
7682
|
-
})[]])[]
|
|
7683
|
-
|
|
7684
|
-
variables?: ([string, ({
|
|
7685
|
-
|
|
7686
|
-
match: "strings"
|
|
7687
|
-
[k: string]: unknown | undefined
|
|
7688
|
-
} | {
|
|
7689
|
-
|
|
7690
|
-
match: "objectKeys"
|
|
7691
|
-
|
|
7692
|
-
pathPattern?: string
|
|
7693
|
-
[k: string]: unknown | undefined
|
|
7694
|
-
} | {
|
|
7695
|
-
|
|
7696
|
-
match: "objectValues"
|
|
7697
|
-
|
|
7698
|
-
pathPattern?: string
|
|
7699
|
-
[k: string]: unknown | undefined
|
|
7700
|
-
})[]] | string)[]
|
|
7701
|
-
|
|
7702
|
-
tags?: ([string, ({
|
|
7703
|
-
|
|
7704
|
-
match: "strings"
|
|
7705
|
-
[k: string]: unknown | undefined
|
|
7706
|
-
} | {
|
|
7707
|
-
|
|
7708
|
-
match: "objectKeys"
|
|
7709
|
-
|
|
7710
|
-
pathPattern?: string
|
|
7711
|
-
[k: string]: unknown | undefined
|
|
7712
|
-
} | {
|
|
7713
|
-
|
|
7714
|
-
match: "objectValues"
|
|
7715
|
-
|
|
7716
|
-
pathPattern?: string
|
|
7717
|
-
[k: string]: unknown | undefined
|
|
7718
|
-
})[]] | string)[]
|
|
7719
|
-
|
|
7720
|
-
entryPoint?: string
|
|
7721
|
-
|
|
7722
|
-
tailwindConfig?: string
|
|
7723
|
-
|
|
7724
|
-
tsconfig?: string
|
|
7725
|
-
}]
|
|
7726
|
-
// ----- better-tailwindcss/no-conflicting-classes -----
|
|
7727
|
-
type BetterTailwindcssNoConflictingClasses = []|[{
|
|
7728
|
-
|
|
7729
|
-
callees?: ([string, ({
|
|
7730
|
-
|
|
7731
|
-
match: "strings"
|
|
7732
|
-
[k: string]: unknown | undefined
|
|
7733
|
-
} | {
|
|
7734
|
-
|
|
7735
|
-
match: "objectKeys"
|
|
7736
|
-
|
|
7737
|
-
pathPattern?: string
|
|
7738
|
-
[k: string]: unknown | undefined
|
|
7739
|
-
} | {
|
|
7740
|
-
|
|
7741
|
-
match: "objectValues"
|
|
7742
|
-
|
|
7743
|
-
pathPattern?: string
|
|
7744
|
-
[k: string]: unknown | undefined
|
|
7745
|
-
})[]] | string)[]
|
|
7746
|
-
|
|
7747
|
-
attributes?: (string | [string, ({
|
|
7748
|
-
|
|
7749
|
-
match: "strings"
|
|
7750
|
-
[k: string]: unknown | undefined
|
|
7751
|
-
} | {
|
|
7752
|
-
|
|
7753
|
-
match: "objectKeys"
|
|
7754
|
-
|
|
7755
|
-
pathPattern?: string
|
|
7756
|
-
[k: string]: unknown | undefined
|
|
7757
|
-
} | {
|
|
7758
|
-
|
|
7759
|
-
match: "objectValues"
|
|
7760
|
-
|
|
7761
|
-
pathPattern?: string
|
|
7762
|
-
[k: string]: unknown | undefined
|
|
7763
|
-
})[]])[]
|
|
7764
|
-
|
|
7765
|
-
variables?: ([string, ({
|
|
7766
|
-
|
|
7767
|
-
match: "strings"
|
|
7768
|
-
[k: string]: unknown | undefined
|
|
7769
|
-
} | {
|
|
7770
|
-
|
|
7771
|
-
match: "objectKeys"
|
|
7772
|
-
|
|
7773
|
-
pathPattern?: string
|
|
7774
|
-
[k: string]: unknown | undefined
|
|
7775
|
-
} | {
|
|
7776
|
-
|
|
7777
|
-
match: "objectValues"
|
|
7778
|
-
|
|
7779
|
-
pathPattern?: string
|
|
7780
|
-
[k: string]: unknown | undefined
|
|
7781
|
-
})[]] | string)[]
|
|
7782
|
-
|
|
7783
|
-
tags?: ([string, ({
|
|
7784
|
-
|
|
7785
|
-
match: "strings"
|
|
7786
|
-
[k: string]: unknown | undefined
|
|
7787
|
-
} | {
|
|
7788
|
-
|
|
7789
|
-
match: "objectKeys"
|
|
7790
|
-
|
|
7791
|
-
pathPattern?: string
|
|
7792
|
-
[k: string]: unknown | undefined
|
|
7793
|
-
} | {
|
|
7794
|
-
|
|
7795
|
-
match: "objectValues"
|
|
7796
|
-
|
|
7797
|
-
pathPattern?: string
|
|
7798
|
-
[k: string]: unknown | undefined
|
|
7799
|
-
})[]] | string)[]
|
|
7800
|
-
|
|
7801
|
-
entryPoint?: string
|
|
7802
|
-
|
|
7803
|
-
tailwindConfig?: string
|
|
7804
|
-
|
|
7805
|
-
tsconfig?: string
|
|
7806
|
-
}]
|
|
7807
|
-
// ----- better-tailwindcss/no-deprecated-classes -----
|
|
7808
|
-
type BetterTailwindcssNoDeprecatedClasses = []|[{
|
|
7809
|
-
|
|
7810
|
-
callees?: ([string, ({
|
|
7811
|
-
|
|
7812
|
-
match: "strings"
|
|
7813
|
-
[k: string]: unknown | undefined
|
|
7814
|
-
} | {
|
|
7815
|
-
|
|
7816
|
-
match: "objectKeys"
|
|
7817
|
-
|
|
7818
|
-
pathPattern?: string
|
|
7819
|
-
[k: string]: unknown | undefined
|
|
7820
|
-
} | {
|
|
7821
|
-
|
|
7822
|
-
match: "objectValues"
|
|
7823
|
-
|
|
7824
|
-
pathPattern?: string
|
|
7825
|
-
[k: string]: unknown | undefined
|
|
7826
|
-
})[]] | string)[]
|
|
7827
|
-
|
|
7828
|
-
attributes?: (string | [string, ({
|
|
7829
|
-
|
|
7830
|
-
match: "strings"
|
|
7831
|
-
[k: string]: unknown | undefined
|
|
7832
|
-
} | {
|
|
7833
|
-
|
|
7834
|
-
match: "objectKeys"
|
|
7835
|
-
|
|
7836
|
-
pathPattern?: string
|
|
7837
|
-
[k: string]: unknown | undefined
|
|
7838
|
-
} | {
|
|
7839
|
-
|
|
7840
|
-
match: "objectValues"
|
|
7841
|
-
|
|
7842
|
-
pathPattern?: string
|
|
7843
|
-
[k: string]: unknown | undefined
|
|
7844
|
-
})[]])[]
|
|
7845
|
-
|
|
7846
|
-
variables?: ([string, ({
|
|
7847
|
-
|
|
7848
|
-
match: "strings"
|
|
7849
|
-
[k: string]: unknown | undefined
|
|
7850
|
-
} | {
|
|
7851
|
-
|
|
7852
|
-
match: "objectKeys"
|
|
7853
|
-
|
|
7854
|
-
pathPattern?: string
|
|
7855
|
-
[k: string]: unknown | undefined
|
|
7856
|
-
} | {
|
|
7857
|
-
|
|
7858
|
-
match: "objectValues"
|
|
7859
|
-
|
|
7860
|
-
pathPattern?: string
|
|
7861
|
-
[k: string]: unknown | undefined
|
|
7862
|
-
})[]] | string)[]
|
|
7863
|
-
|
|
7864
|
-
tags?: ([string, ({
|
|
7865
|
-
|
|
7866
|
-
match: "strings"
|
|
7867
|
-
[k: string]: unknown | undefined
|
|
7868
|
-
} | {
|
|
7869
|
-
|
|
7870
|
-
match: "objectKeys"
|
|
7871
|
-
|
|
7872
|
-
pathPattern?: string
|
|
7873
|
-
[k: string]: unknown | undefined
|
|
7874
|
-
} | {
|
|
7875
|
-
|
|
7876
|
-
match: "objectValues"
|
|
7877
|
-
|
|
7878
|
-
pathPattern?: string
|
|
7879
|
-
[k: string]: unknown | undefined
|
|
7880
|
-
})[]] | string)[]
|
|
7881
|
-
|
|
7882
|
-
entryPoint?: string
|
|
7883
|
-
|
|
7884
|
-
tailwindConfig?: string
|
|
7885
|
-
|
|
7886
|
-
tsconfig?: string
|
|
7887
|
-
}]
|
|
7888
|
-
// ----- better-tailwindcss/no-duplicate-classes -----
|
|
7889
|
-
type BetterTailwindcssNoDuplicateClasses = []|[{
|
|
7890
|
-
|
|
7891
|
-
callees?: ([string, ({
|
|
7892
|
-
|
|
7893
|
-
match: "strings"
|
|
7894
|
-
[k: string]: unknown | undefined
|
|
7895
|
-
} | {
|
|
7896
|
-
|
|
7897
|
-
match: "objectKeys"
|
|
7898
|
-
|
|
7899
|
-
pathPattern?: string
|
|
7900
|
-
[k: string]: unknown | undefined
|
|
7901
|
-
} | {
|
|
7902
|
-
|
|
7903
|
-
match: "objectValues"
|
|
7904
|
-
|
|
7905
|
-
pathPattern?: string
|
|
7906
|
-
[k: string]: unknown | undefined
|
|
7907
|
-
})[]] | string)[]
|
|
7908
|
-
|
|
7909
|
-
attributes?: (string | [string, ({
|
|
7910
|
-
|
|
7911
|
-
match: "strings"
|
|
7912
|
-
[k: string]: unknown | undefined
|
|
7913
|
-
} | {
|
|
7914
|
-
|
|
7915
|
-
match: "objectKeys"
|
|
7916
|
-
|
|
7917
|
-
pathPattern?: string
|
|
7918
|
-
[k: string]: unknown | undefined
|
|
7919
|
-
} | {
|
|
7920
|
-
|
|
7921
|
-
match: "objectValues"
|
|
7922
|
-
|
|
7923
|
-
pathPattern?: string
|
|
7924
|
-
[k: string]: unknown | undefined
|
|
7925
|
-
})[]])[]
|
|
7926
|
-
|
|
7927
|
-
variables?: ([string, ({
|
|
7928
|
-
|
|
7929
|
-
match: "strings"
|
|
7930
|
-
[k: string]: unknown | undefined
|
|
7931
|
-
} | {
|
|
7932
|
-
|
|
7933
|
-
match: "objectKeys"
|
|
7934
|
-
|
|
7935
|
-
pathPattern?: string
|
|
7936
|
-
[k: string]: unknown | undefined
|
|
7937
|
-
} | {
|
|
7938
|
-
|
|
7939
|
-
match: "objectValues"
|
|
7940
|
-
|
|
7941
|
-
pathPattern?: string
|
|
7942
|
-
[k: string]: unknown | undefined
|
|
7943
|
-
})[]] | string)[]
|
|
7944
|
-
|
|
7945
|
-
tags?: ([string, ({
|
|
7946
|
-
|
|
7947
|
-
match: "strings"
|
|
7948
|
-
[k: string]: unknown | undefined
|
|
7949
|
-
} | {
|
|
7950
|
-
|
|
7951
|
-
match: "objectKeys"
|
|
7952
|
-
|
|
7953
|
-
pathPattern?: string
|
|
7954
|
-
[k: string]: unknown | undefined
|
|
7955
|
-
} | {
|
|
7956
|
-
|
|
7957
|
-
match: "objectValues"
|
|
7958
|
-
|
|
7959
|
-
pathPattern?: string
|
|
7960
|
-
[k: string]: unknown | undefined
|
|
7961
|
-
})[]] | string)[]
|
|
7962
|
-
|
|
7963
|
-
entryPoint?: string
|
|
7964
|
-
|
|
7965
|
-
tailwindConfig?: string
|
|
7966
|
-
|
|
7967
|
-
tsconfig?: string
|
|
7968
|
-
}]
|
|
7969
|
-
// ----- better-tailwindcss/no-restricted-classes -----
|
|
7970
|
-
type BetterTailwindcssNoRestrictedClasses = []|[{
|
|
7971
|
-
|
|
7972
|
-
callees?: ([string, ({
|
|
7973
|
-
|
|
7974
|
-
match: "strings"
|
|
7975
|
-
[k: string]: unknown | undefined
|
|
7976
|
-
} | {
|
|
7977
|
-
|
|
7978
|
-
match: "objectKeys"
|
|
7979
|
-
|
|
7980
|
-
pathPattern?: string
|
|
7981
|
-
[k: string]: unknown | undefined
|
|
7982
|
-
} | {
|
|
7983
|
-
|
|
7984
|
-
match: "objectValues"
|
|
7985
|
-
|
|
7986
|
-
pathPattern?: string
|
|
7987
|
-
[k: string]: unknown | undefined
|
|
7988
|
-
})[]] | string)[]
|
|
7989
|
-
|
|
7990
|
-
attributes?: (string | [string, ({
|
|
7991
|
-
|
|
7992
|
-
match: "strings"
|
|
7993
|
-
[k: string]: unknown | undefined
|
|
7994
|
-
} | {
|
|
7995
|
-
|
|
7996
|
-
match: "objectKeys"
|
|
7997
|
-
|
|
7998
|
-
pathPattern?: string
|
|
7999
|
-
[k: string]: unknown | undefined
|
|
8000
|
-
} | {
|
|
8001
|
-
|
|
8002
|
-
match: "objectValues"
|
|
8003
|
-
|
|
8004
|
-
pathPattern?: string
|
|
8005
|
-
[k: string]: unknown | undefined
|
|
8006
|
-
})[]])[]
|
|
8007
|
-
|
|
8008
|
-
variables?: ([string, ({
|
|
8009
|
-
|
|
8010
|
-
match: "strings"
|
|
8011
|
-
[k: string]: unknown | undefined
|
|
8012
|
-
} | {
|
|
8013
|
-
|
|
8014
|
-
match: "objectKeys"
|
|
8015
|
-
|
|
8016
|
-
pathPattern?: string
|
|
8017
|
-
[k: string]: unknown | undefined
|
|
8018
|
-
} | {
|
|
8019
|
-
|
|
8020
|
-
match: "objectValues"
|
|
8021
|
-
|
|
8022
|
-
pathPattern?: string
|
|
8023
|
-
[k: string]: unknown | undefined
|
|
8024
|
-
})[]] | string)[]
|
|
8025
|
-
|
|
8026
|
-
tags?: ([string, ({
|
|
8027
|
-
|
|
8028
|
-
match: "strings"
|
|
8029
|
-
[k: string]: unknown | undefined
|
|
8030
|
-
} | {
|
|
8031
|
-
|
|
8032
|
-
match: "objectKeys"
|
|
8033
|
-
|
|
8034
|
-
pathPattern?: string
|
|
8035
|
-
[k: string]: unknown | undefined
|
|
8036
|
-
} | {
|
|
8037
|
-
|
|
8038
|
-
match: "objectValues"
|
|
8039
|
-
|
|
8040
|
-
pathPattern?: string
|
|
8041
|
-
[k: string]: unknown | undefined
|
|
8042
|
-
})[]] | string)[]
|
|
8043
|
-
|
|
8044
|
-
entryPoint?: string
|
|
8045
|
-
|
|
8046
|
-
tailwindConfig?: string
|
|
8047
|
-
|
|
8048
|
-
tsconfig?: string
|
|
8049
|
-
restrict?: ({
|
|
8050
|
-
|
|
8051
|
-
fix?: string
|
|
8052
|
-
|
|
8053
|
-
message?: string
|
|
8054
|
-
|
|
8055
|
-
pattern: string
|
|
8056
|
-
[k: string]: unknown | undefined
|
|
8057
|
-
} | string)[]
|
|
8058
|
-
}]
|
|
8059
|
-
// ----- better-tailwindcss/no-unknown-classes -----
|
|
8060
|
-
type BetterTailwindcssNoUnknownClasses = []|[{
|
|
8061
|
-
|
|
8062
|
-
callees?: ([string, ({
|
|
8063
|
-
|
|
8064
|
-
match: "strings"
|
|
8065
|
-
[k: string]: unknown | undefined
|
|
8066
|
-
} | {
|
|
8067
|
-
|
|
8068
|
-
match: "objectKeys"
|
|
8069
|
-
|
|
8070
|
-
pathPattern?: string
|
|
8071
|
-
[k: string]: unknown | undefined
|
|
8072
|
-
} | {
|
|
8073
|
-
|
|
8074
|
-
match: "objectValues"
|
|
8075
|
-
|
|
8076
|
-
pathPattern?: string
|
|
8077
|
-
[k: string]: unknown | undefined
|
|
8078
|
-
})[]] | string)[]
|
|
8079
|
-
|
|
8080
|
-
attributes?: (string | [string, ({
|
|
8081
|
-
|
|
8082
|
-
match: "strings"
|
|
8083
|
-
[k: string]: unknown | undefined
|
|
8084
|
-
} | {
|
|
8085
|
-
|
|
8086
|
-
match: "objectKeys"
|
|
8087
|
-
|
|
8088
|
-
pathPattern?: string
|
|
8089
|
-
[k: string]: unknown | undefined
|
|
8090
|
-
} | {
|
|
8091
|
-
|
|
8092
|
-
match: "objectValues"
|
|
8093
|
-
|
|
8094
|
-
pathPattern?: string
|
|
8095
|
-
[k: string]: unknown | undefined
|
|
8096
|
-
})[]])[]
|
|
8097
|
-
|
|
8098
|
-
variables?: ([string, ({
|
|
8099
|
-
|
|
8100
|
-
match: "strings"
|
|
8101
|
-
[k: string]: unknown | undefined
|
|
8102
|
-
} | {
|
|
8103
|
-
|
|
8104
|
-
match: "objectKeys"
|
|
8105
|
-
|
|
8106
|
-
pathPattern?: string
|
|
8107
|
-
[k: string]: unknown | undefined
|
|
8108
|
-
} | {
|
|
8109
|
-
|
|
8110
|
-
match: "objectValues"
|
|
8111
|
-
|
|
8112
|
-
pathPattern?: string
|
|
8113
|
-
[k: string]: unknown | undefined
|
|
8114
|
-
})[]] | string)[]
|
|
8115
|
-
|
|
8116
|
-
tags?: ([string, ({
|
|
8117
|
-
|
|
8118
|
-
match: "strings"
|
|
8119
|
-
[k: string]: unknown | undefined
|
|
8120
|
-
} | {
|
|
8121
|
-
|
|
8122
|
-
match: "objectKeys"
|
|
8123
|
-
|
|
8124
|
-
pathPattern?: string
|
|
8125
|
-
[k: string]: unknown | undefined
|
|
8126
|
-
} | {
|
|
8127
|
-
|
|
8128
|
-
match: "objectValues"
|
|
8129
|
-
|
|
8130
|
-
pathPattern?: string
|
|
8131
|
-
[k: string]: unknown | undefined
|
|
8132
|
-
})[]] | string)[]
|
|
8133
|
-
|
|
8134
|
-
entryPoint?: string
|
|
8135
|
-
|
|
8136
|
-
tailwindConfig?: string
|
|
8137
|
-
|
|
8138
|
-
tsconfig?: string
|
|
8139
|
-
|
|
8140
|
-
detectComponentClasses?: boolean
|
|
8141
|
-
|
|
8142
|
-
ignore?: string[]
|
|
8143
|
-
}]
|
|
8144
|
-
// ----- better-tailwindcss/no-unnecessary-whitespace -----
|
|
8145
|
-
type BetterTailwindcssNoUnnecessaryWhitespace = []|[{
|
|
8146
|
-
|
|
8147
|
-
callees?: ([string, ({
|
|
8148
|
-
|
|
8149
|
-
match: "strings"
|
|
8150
|
-
[k: string]: unknown | undefined
|
|
8151
|
-
} | {
|
|
8152
|
-
|
|
8153
|
-
match: "objectKeys"
|
|
8154
|
-
|
|
8155
|
-
pathPattern?: string
|
|
8156
|
-
[k: string]: unknown | undefined
|
|
8157
|
-
} | {
|
|
8158
|
-
|
|
8159
|
-
match: "objectValues"
|
|
8160
|
-
|
|
8161
|
-
pathPattern?: string
|
|
8162
|
-
[k: string]: unknown | undefined
|
|
8163
|
-
})[]] | string)[]
|
|
8164
|
-
|
|
8165
|
-
attributes?: (string | [string, ({
|
|
8166
|
-
|
|
8167
|
-
match: "strings"
|
|
8168
|
-
[k: string]: unknown | undefined
|
|
8169
|
-
} | {
|
|
8170
|
-
|
|
8171
|
-
match: "objectKeys"
|
|
8172
|
-
|
|
8173
|
-
pathPattern?: string
|
|
8174
|
-
[k: string]: unknown | undefined
|
|
8175
|
-
} | {
|
|
8176
|
-
|
|
8177
|
-
match: "objectValues"
|
|
8178
|
-
|
|
8179
|
-
pathPattern?: string
|
|
8180
|
-
[k: string]: unknown | undefined
|
|
8181
|
-
})[]])[]
|
|
8182
|
-
|
|
8183
|
-
variables?: ([string, ({
|
|
8184
|
-
|
|
8185
|
-
match: "strings"
|
|
8186
|
-
[k: string]: unknown | undefined
|
|
8187
|
-
} | {
|
|
8188
|
-
|
|
8189
|
-
match: "objectKeys"
|
|
8190
|
-
|
|
8191
|
-
pathPattern?: string
|
|
8192
|
-
[k: string]: unknown | undefined
|
|
8193
|
-
} | {
|
|
8194
|
-
|
|
8195
|
-
match: "objectValues"
|
|
8196
|
-
|
|
8197
|
-
pathPattern?: string
|
|
8198
|
-
[k: string]: unknown | undefined
|
|
8199
|
-
})[]] | string)[]
|
|
8200
|
-
|
|
8201
|
-
tags?: ([string, ({
|
|
8202
|
-
|
|
8203
|
-
match: "strings"
|
|
8204
|
-
[k: string]: unknown | undefined
|
|
8205
|
-
} | {
|
|
8206
|
-
|
|
8207
|
-
match: "objectKeys"
|
|
8208
|
-
|
|
8209
|
-
pathPattern?: string
|
|
8210
|
-
[k: string]: unknown | undefined
|
|
8211
|
-
} | {
|
|
8212
|
-
|
|
8213
|
-
match: "objectValues"
|
|
8214
|
-
|
|
8215
|
-
pathPattern?: string
|
|
8216
|
-
[k: string]: unknown | undefined
|
|
8217
|
-
})[]] | string)[]
|
|
8218
|
-
|
|
8219
|
-
entryPoint?: string
|
|
8220
|
-
|
|
8221
|
-
tailwindConfig?: string
|
|
8222
|
-
|
|
8223
|
-
tsconfig?: string
|
|
8224
|
-
|
|
8225
|
-
allowMultiline?: boolean
|
|
8226
|
-
}]
|
|
8227
|
-
// ----- block-spacing -----
|
|
8228
|
-
type BlockSpacing = []|[("always" | "never")]
|
|
8229
|
-
// ----- brace-style -----
|
|
8230
|
-
type BraceStyle = []|[("1tbs" | "stroustrup" | "allman")]|[("1tbs" | "stroustrup" | "allman"), {
|
|
8231
|
-
allowSingleLine?: boolean
|
|
8232
|
-
}]
|
|
8233
|
-
// ----- callback-return -----
|
|
8234
|
-
type CallbackReturn = []|[string[]]
|
|
8235
|
-
// ----- camelcase -----
|
|
8236
|
-
type Camelcase = []|[{
|
|
8237
|
-
ignoreDestructuring?: boolean
|
|
8238
|
-
ignoreImports?: boolean
|
|
8239
|
-
ignoreGlobals?: boolean
|
|
8240
|
-
properties?: ("always" | "never")
|
|
7621
|
+
// ----- block-spacing -----
|
|
7622
|
+
type BlockSpacing = []|[("always" | "never")]
|
|
7623
|
+
// ----- brace-style -----
|
|
7624
|
+
type BraceStyle = []|[("1tbs" | "stroustrup" | "allman")]|[("1tbs" | "stroustrup" | "allman"), {
|
|
7625
|
+
allowSingleLine?: boolean
|
|
7626
|
+
}]
|
|
7627
|
+
// ----- callback-return -----
|
|
7628
|
+
type CallbackReturn = []|[string[]]
|
|
7629
|
+
// ----- camelcase -----
|
|
7630
|
+
type Camelcase = []|[{
|
|
7631
|
+
ignoreDestructuring?: boolean
|
|
7632
|
+
ignoreImports?: boolean
|
|
7633
|
+
ignoreGlobals?: boolean
|
|
7634
|
+
properties?: ("always" | "never")
|
|
8241
7635
|
|
|
8242
7636
|
allow?: string[]
|
|
8243
7637
|
}]
|
|
@@ -8393,6 +7787,101 @@ type GroupedAccessorPairs = []|[("anyOrder" | "getBeforeSet" | "setBeforeGet")]|
|
|
|
8393
7787
|
}]
|
|
8394
7788
|
// ----- handle-callback-err -----
|
|
8395
7789
|
type HandleCallbackErr = []|[string]
|
|
7790
|
+
// ----- html/attrs-newline -----
|
|
7791
|
+
type HtmlAttrsNewline = []|[{
|
|
7792
|
+
closeStyle?: ("newline" | "sameline")
|
|
7793
|
+
ifAttrsMoreThan?: number
|
|
7794
|
+
}]
|
|
7795
|
+
// ----- html/element-newline -----
|
|
7796
|
+
type HtmlElementNewline = []|[{
|
|
7797
|
+
inline?: string[]
|
|
7798
|
+
skip?: string[]
|
|
7799
|
+
}]
|
|
7800
|
+
// ----- html/id-naming-convention -----
|
|
7801
|
+
type HtmlIdNamingConvention = []|[("camelCase" | "snake_case" | "PascalCase" | "kebab-case" | "regex")]|[("camelCase" | "snake_case" | "PascalCase" | "kebab-case" | "regex"), {
|
|
7802
|
+
pattern?: string
|
|
7803
|
+
flags?: string
|
|
7804
|
+
}]
|
|
7805
|
+
// ----- html/indent -----
|
|
7806
|
+
type HtmlIndent = []|[("tab" | number)]|[("tab" | number), {
|
|
7807
|
+
Attribute?: number
|
|
7808
|
+
tagChildrenIndent?: {
|
|
7809
|
+
[k: string]: number
|
|
7810
|
+
}
|
|
7811
|
+
}]
|
|
7812
|
+
// ----- html/max-element-depth -----
|
|
7813
|
+
type HtmlMaxElementDepth = []|[{
|
|
7814
|
+
max: number
|
|
7815
|
+
}]
|
|
7816
|
+
// ----- html/no-extra-spacing-attrs -----
|
|
7817
|
+
type HtmlNoExtraSpacingAttrs = []|[{
|
|
7818
|
+
disallowInAssignment?: boolean
|
|
7819
|
+
disallowMissing?: boolean
|
|
7820
|
+
disallowTabs?: boolean
|
|
7821
|
+
enforceBeforeSelfClose?: boolean
|
|
7822
|
+
}]
|
|
7823
|
+
// ----- html/no-extra-spacing-text -----
|
|
7824
|
+
type HtmlNoExtraSpacingText = []|[{
|
|
7825
|
+
skip?: string[]
|
|
7826
|
+
}]
|
|
7827
|
+
// ----- html/no-multiple-empty-lines -----
|
|
7828
|
+
type HtmlNoMultipleEmptyLines = []|[{
|
|
7829
|
+
max: number
|
|
7830
|
+
}]
|
|
7831
|
+
// ----- html/no-restricted-attr-values -----
|
|
7832
|
+
type HtmlNoRestrictedAttrValues = {
|
|
7833
|
+
attrPatterns: string[]
|
|
7834
|
+
attrValuePatterns: string[]
|
|
7835
|
+
message?: string
|
|
7836
|
+
}[]
|
|
7837
|
+
// ----- html/no-restricted-attrs -----
|
|
7838
|
+
type HtmlNoRestrictedAttrs = {
|
|
7839
|
+
tagPatterns: string[]
|
|
7840
|
+
attrPatterns: string[]
|
|
7841
|
+
message?: string
|
|
7842
|
+
}[]
|
|
7843
|
+
// ----- html/no-restricted-tags -----
|
|
7844
|
+
type HtmlNoRestrictedTags = {
|
|
7845
|
+
tagPatterns: string[]
|
|
7846
|
+
message?: string
|
|
7847
|
+
}[]
|
|
7848
|
+
// ----- html/quotes -----
|
|
7849
|
+
type HtmlQuotes = []|[("single" | "double")]|[("single" | "double"), {
|
|
7850
|
+
enforceTemplatedAttrValue?: boolean
|
|
7851
|
+
}]
|
|
7852
|
+
// ----- html/require-attrs -----
|
|
7853
|
+
type HtmlRequireAttrs = {
|
|
7854
|
+
tag: string
|
|
7855
|
+
attr: string
|
|
7856
|
+
value?: string
|
|
7857
|
+
message?: string
|
|
7858
|
+
}[]
|
|
7859
|
+
// ----- html/require-closing-tags -----
|
|
7860
|
+
type HtmlRequireClosingTags = []|[{
|
|
7861
|
+
selfClosing?: ("always" | "never")
|
|
7862
|
+
selfClosingCustomPatterns?: string[]
|
|
7863
|
+
}]
|
|
7864
|
+
// ----- html/require-explicit-size -----
|
|
7865
|
+
type HtmlRequireExplicitSize = []|[{
|
|
7866
|
+
allowClass?: string[]
|
|
7867
|
+
allowId?: string[]
|
|
7868
|
+
}]
|
|
7869
|
+
// ----- html/require-img-alt -----
|
|
7870
|
+
type HtmlRequireImgAlt = []|[{
|
|
7871
|
+
substitute?: string[]
|
|
7872
|
+
}]
|
|
7873
|
+
// ----- html/require-open-graph-protocol -----
|
|
7874
|
+
type HtmlRequireOpenGraphProtocol = []|[string[]]
|
|
7875
|
+
// ----- html/sort-attrs -----
|
|
7876
|
+
type HtmlSortAttrs = []|[{
|
|
7877
|
+
priority?: (string | {
|
|
7878
|
+
pattern: string
|
|
7879
|
+
})[]
|
|
7880
|
+
}]
|
|
7881
|
+
// ----- html/use-baseline -----
|
|
7882
|
+
type HtmlUseBaseline = []|[{
|
|
7883
|
+
available?: (("widely" | "newly") | number)
|
|
7884
|
+
}]
|
|
8396
7885
|
// ----- id-blacklist -----
|
|
8397
7886
|
type IdBlacklist = string[]
|
|
8398
7887
|
// ----- id-denylist -----
|
|
@@ -9432,15 +8921,56 @@ type JsdocTextEscaping = []|[{
|
|
|
9432
8921
|
|
|
9433
8922
|
escapeMarkdown?: boolean
|
|
9434
8923
|
}]
|
|
8924
|
+
// ----- jsdoc/ts-method-signature-style -----
|
|
8925
|
+
type JsdocTsMethodSignatureStyle = []|[("method" | "property")]|[("method" | "property"), {
|
|
8926
|
+
|
|
8927
|
+
enableFixer?: boolean
|
|
8928
|
+
}]
|
|
8929
|
+
// ----- jsdoc/ts-no-unnecessary-template-expression -----
|
|
8930
|
+
type JsdocTsNoUnnecessaryTemplateExpression = []|[{
|
|
8931
|
+
|
|
8932
|
+
enableFixer?: boolean
|
|
8933
|
+
}]
|
|
8934
|
+
// ----- jsdoc/ts-prefer-function-type -----
|
|
8935
|
+
type JsdocTsPreferFunctionType = []|[{
|
|
8936
|
+
|
|
8937
|
+
enableFixer?: boolean
|
|
8938
|
+
}]
|
|
9435
8939
|
// ----- jsdoc/type-formatting -----
|
|
9436
8940
|
type JsdocTypeFormatting = []|[{
|
|
9437
8941
|
|
|
9438
8942
|
arrayBrackets?: ("angle" | "square")
|
|
9439
8943
|
|
|
8944
|
+
arrowFunctionPostReturnMarkerSpacing?: string
|
|
8945
|
+
|
|
8946
|
+
arrowFunctionPreReturnMarkerSpacing?: string
|
|
8947
|
+
|
|
9440
8948
|
enableFixer?: boolean
|
|
9441
8949
|
|
|
8950
|
+
functionOrClassParameterSpacing?: string
|
|
8951
|
+
|
|
8952
|
+
functionOrClassPostGenericSpacing?: string
|
|
8953
|
+
|
|
8954
|
+
functionOrClassPostReturnMarkerSpacing?: string
|
|
8955
|
+
|
|
8956
|
+
functionOrClassPreReturnMarkerSpacing?: string
|
|
8957
|
+
|
|
8958
|
+
functionOrClassTypeParameterSpacing?: string
|
|
8959
|
+
|
|
8960
|
+
genericAndTupleElementSpacing?: string
|
|
8961
|
+
|
|
9442
8962
|
genericDot?: boolean
|
|
9443
8963
|
|
|
8964
|
+
keyValuePostColonSpacing?: string
|
|
8965
|
+
|
|
8966
|
+
keyValuePostKeySpacing?: string
|
|
8967
|
+
|
|
8968
|
+
keyValuePostOptionalSpacing?: string
|
|
8969
|
+
|
|
8970
|
+
keyValuePostVariadicSpacing?: string
|
|
8971
|
+
|
|
8972
|
+
methodQuotes?: ("double" | "single")
|
|
8973
|
+
|
|
9444
8974
|
objectFieldIndent?: string
|
|
9445
8975
|
|
|
9446
8976
|
objectFieldQuote?: ("double" | "single" | null)
|
|
@@ -9451,6 +8981,12 @@ type JsdocTypeFormatting = []|[{
|
|
|
9451
8981
|
|
|
9452
8982
|
objectFieldSeparatorTrailingPunctuation?: boolean
|
|
9453
8983
|
|
|
8984
|
+
parameterDefaultValueSpacing?: string
|
|
8985
|
+
|
|
8986
|
+
postMethodNameSpacing?: string
|
|
8987
|
+
|
|
8988
|
+
postNewSpacing?: string
|
|
8989
|
+
|
|
9454
8990
|
separatorForSingleObjectField?: boolean
|
|
9455
8991
|
|
|
9456
8992
|
stringQuotes?: ("double" | "single")
|
|
@@ -14411,6 +13947,10 @@ type ReactHooksUnsupportedSyntax = []|[{
|
|
|
14411
13947
|
type ReactHooksUseMemo = []|[{
|
|
14412
13948
|
[k: string]: unknown | undefined
|
|
14413
13949
|
}]
|
|
13950
|
+
// ----- react-hooks/void-use-memo -----
|
|
13951
|
+
type ReactHooksVoidUseMemo = []|[{
|
|
13952
|
+
[k: string]: unknown | undefined
|
|
13953
|
+
}]
|
|
14414
13954
|
// ----- react-refresh/only-export-components -----
|
|
14415
13955
|
type ReactRefreshOnlyExportComponents = []|[{
|
|
14416
13956
|
allowExportNames?: string[]
|
|
@@ -14972,131 +14512,1055 @@ type RegexpPreferLookaround = []|[{
|
|
|
14972
14512
|
lookbehind?: boolean
|
|
14973
14513
|
strictTypes?: boolean
|
|
14974
14514
|
}]
|
|
14975
|
-
// ----- regexp/prefer-named-replacement -----
|
|
14976
|
-
type RegexpPreferNamedReplacement = []|[{
|
|
14977
|
-
strictTypes?: boolean
|
|
14515
|
+
// ----- regexp/prefer-named-replacement -----
|
|
14516
|
+
type RegexpPreferNamedReplacement = []|[{
|
|
14517
|
+
strictTypes?: boolean
|
|
14518
|
+
}]
|
|
14519
|
+
// ----- regexp/prefer-quantifier -----
|
|
14520
|
+
type RegexpPreferQuantifier = []|[{
|
|
14521
|
+
allows?: string[]
|
|
14522
|
+
}]
|
|
14523
|
+
// ----- regexp/prefer-range -----
|
|
14524
|
+
type RegexpPreferRange = []|[{
|
|
14525
|
+
target?: (("all" | "alphanumeric") | [("all" | "alphanumeric")] | [("alphanumeric" | string), ...(("alphanumeric" | string))[]])
|
|
14526
|
+
}]
|
|
14527
|
+
// ----- regexp/prefer-result-array-groups -----
|
|
14528
|
+
type RegexpPreferResultArrayGroups = []|[{
|
|
14529
|
+
strictTypes?: boolean
|
|
14530
|
+
}]
|
|
14531
|
+
// ----- regexp/sort-character-class-elements -----
|
|
14532
|
+
type RegexpSortCharacterClassElements = []|[{
|
|
14533
|
+
order?: ("\\s" | "\\w" | "\\d" | "\\p" | "*" | "\\q" | "[]")[]
|
|
14534
|
+
}]
|
|
14535
|
+
// ----- regexp/unicode-escape -----
|
|
14536
|
+
type RegexpUnicodeEscape = []|[("unicodeCodePointEscape" | "unicodeEscape")]
|
|
14537
|
+
// ----- regexp/unicode-property -----
|
|
14538
|
+
type RegexpUnicodeProperty = []|[{
|
|
14539
|
+
generalCategory?: ("always" | "never" | "ignore")
|
|
14540
|
+
key?: ("short" | "long" | "ignore")
|
|
14541
|
+
property?: (("short" | "long" | "ignore") | {
|
|
14542
|
+
binary?: ("short" | "long" | "ignore")
|
|
14543
|
+
generalCategory?: ("short" | "long" | "ignore")
|
|
14544
|
+
script?: ("short" | "long" | "ignore")
|
|
14545
|
+
})
|
|
14546
|
+
}]
|
|
14547
|
+
// ----- require-atomic-updates -----
|
|
14548
|
+
type RequireAtomicUpdates = []|[{
|
|
14549
|
+
allowProperties?: boolean
|
|
14550
|
+
}]
|
|
14551
|
+
// ----- require-unicode-regexp -----
|
|
14552
|
+
type RequireUnicodeRegexp = []|[{
|
|
14553
|
+
requireFlag?: ("u" | "v")
|
|
14554
|
+
}]
|
|
14555
|
+
// ----- rest-spread-spacing -----
|
|
14556
|
+
type RestSpreadSpacing = []|[("always" | "never")]
|
|
14557
|
+
// ----- semi -----
|
|
14558
|
+
type Semi = ([]|["never"]|["never", {
|
|
14559
|
+
beforeStatementContinuationChars?: ("always" | "any" | "never")
|
|
14560
|
+
}] | []|["always"]|["always", {
|
|
14561
|
+
omitLastInOneLineBlock?: boolean
|
|
14562
|
+
omitLastInOneLineClassBody?: boolean
|
|
14563
|
+
}])
|
|
14564
|
+
// ----- semi-spacing -----
|
|
14565
|
+
type SemiSpacing = []|[{
|
|
14566
|
+
before?: boolean
|
|
14567
|
+
after?: boolean
|
|
14568
|
+
}]
|
|
14569
|
+
// ----- semi-style -----
|
|
14570
|
+
type SemiStyle = []|[("last" | "first")]
|
|
14571
|
+
// ----- sort-imports -----
|
|
14572
|
+
type SortImports = []|[{
|
|
14573
|
+
ignoreCase?: boolean
|
|
14574
|
+
|
|
14575
|
+
memberSyntaxSortOrder?: [("none" | "all" | "multiple" | "single"), ("none" | "all" | "multiple" | "single"), ("none" | "all" | "multiple" | "single"), ("none" | "all" | "multiple" | "single")]
|
|
14576
|
+
ignoreDeclarationSort?: boolean
|
|
14577
|
+
ignoreMemberSort?: boolean
|
|
14578
|
+
allowSeparatedGroups?: boolean
|
|
14579
|
+
}]
|
|
14580
|
+
// ----- sort-keys -----
|
|
14581
|
+
type SortKeys = []|[("asc" | "desc")]|[("asc" | "desc"), {
|
|
14582
|
+
caseSensitive?: boolean
|
|
14583
|
+
natural?: boolean
|
|
14584
|
+
minKeys?: number
|
|
14585
|
+
allowLineSeparatedGroups?: boolean
|
|
14586
|
+
ignoreComputedKeys?: boolean
|
|
14587
|
+
}]
|
|
14588
|
+
// ----- sort-vars -----
|
|
14589
|
+
type SortVars = []|[{
|
|
14590
|
+
ignoreCase?: boolean
|
|
14591
|
+
}]
|
|
14592
|
+
// ----- space-before-blocks -----
|
|
14593
|
+
type SpaceBeforeBlocks = []|[(("always" | "never") | {
|
|
14594
|
+
keywords?: ("always" | "never" | "off")
|
|
14595
|
+
functions?: ("always" | "never" | "off")
|
|
14596
|
+
classes?: ("always" | "never" | "off")
|
|
14597
|
+
})]
|
|
14598
|
+
// ----- space-before-function-paren -----
|
|
14599
|
+
type SpaceBeforeFunctionParen = []|[(("always" | "never") | {
|
|
14600
|
+
anonymous?: ("always" | "never" | "ignore")
|
|
14601
|
+
named?: ("always" | "never" | "ignore")
|
|
14602
|
+
asyncArrow?: ("always" | "never" | "ignore")
|
|
14603
|
+
})]
|
|
14604
|
+
// ----- space-in-parens -----
|
|
14605
|
+
type SpaceInParens = []|[("always" | "never")]|[("always" | "never"), {
|
|
14606
|
+
exceptions?: ("{}" | "[]" | "()" | "empty")[]
|
|
14607
|
+
}]
|
|
14608
|
+
// ----- space-infix-ops -----
|
|
14609
|
+
type SpaceInfixOps = []|[{
|
|
14610
|
+
int32Hint?: boolean
|
|
14611
|
+
}]
|
|
14612
|
+
// ----- space-unary-ops -----
|
|
14613
|
+
type SpaceUnaryOps = []|[{
|
|
14614
|
+
words?: boolean
|
|
14615
|
+
nonwords?: boolean
|
|
14616
|
+
overrides?: {
|
|
14617
|
+
[k: string]: boolean | undefined
|
|
14618
|
+
}
|
|
14619
|
+
}]
|
|
14620
|
+
// ----- spaced-comment -----
|
|
14621
|
+
type SpacedComment = []|[("always" | "never")]|[("always" | "never"), {
|
|
14622
|
+
exceptions?: string[]
|
|
14623
|
+
markers?: string[]
|
|
14624
|
+
line?: {
|
|
14625
|
+
exceptions?: string[]
|
|
14626
|
+
markers?: string[]
|
|
14627
|
+
}
|
|
14628
|
+
block?: {
|
|
14629
|
+
exceptions?: string[]
|
|
14630
|
+
markers?: string[]
|
|
14631
|
+
balanced?: boolean
|
|
14632
|
+
}
|
|
14633
|
+
}]
|
|
14634
|
+
// ----- strict -----
|
|
14635
|
+
type Strict = []|[("never" | "global" | "function" | "safe")]
|
|
14636
|
+
// ----- switch-colon-spacing -----
|
|
14637
|
+
type SwitchColonSpacing = []|[{
|
|
14638
|
+
before?: boolean
|
|
14639
|
+
after?: boolean
|
|
14978
14640
|
}]
|
|
14979
|
-
// -----
|
|
14980
|
-
type
|
|
14981
|
-
|
|
14641
|
+
// ----- tailwindcss/enforce-consistent-class-order -----
|
|
14642
|
+
type TailwindcssEnforceConsistentClassOrder = []|[{
|
|
14643
|
+
|
|
14644
|
+
callees?: ([string, ({
|
|
14645
|
+
|
|
14646
|
+
match: "strings"
|
|
14647
|
+
[k: string]: unknown | undefined
|
|
14648
|
+
} | {
|
|
14649
|
+
|
|
14650
|
+
match: "objectKeys"
|
|
14651
|
+
|
|
14652
|
+
pathPattern?: string
|
|
14653
|
+
[k: string]: unknown | undefined
|
|
14654
|
+
} | {
|
|
14655
|
+
|
|
14656
|
+
match: "objectValues"
|
|
14657
|
+
|
|
14658
|
+
pathPattern?: string
|
|
14659
|
+
[k: string]: unknown | undefined
|
|
14660
|
+
})[]] | string)[]
|
|
14661
|
+
|
|
14662
|
+
attributes?: (string | [string, ({
|
|
14663
|
+
|
|
14664
|
+
match: "strings"
|
|
14665
|
+
[k: string]: unknown | undefined
|
|
14666
|
+
} | {
|
|
14667
|
+
|
|
14668
|
+
match: "objectKeys"
|
|
14669
|
+
|
|
14670
|
+
pathPattern?: string
|
|
14671
|
+
[k: string]: unknown | undefined
|
|
14672
|
+
} | {
|
|
14673
|
+
|
|
14674
|
+
match: "objectValues"
|
|
14675
|
+
|
|
14676
|
+
pathPattern?: string
|
|
14677
|
+
[k: string]: unknown | undefined
|
|
14678
|
+
})[]])[]
|
|
14679
|
+
|
|
14680
|
+
variables?: ([string, ({
|
|
14681
|
+
|
|
14682
|
+
match: "strings"
|
|
14683
|
+
[k: string]: unknown | undefined
|
|
14684
|
+
} | {
|
|
14685
|
+
|
|
14686
|
+
match: "objectKeys"
|
|
14687
|
+
|
|
14688
|
+
pathPattern?: string
|
|
14689
|
+
[k: string]: unknown | undefined
|
|
14690
|
+
} | {
|
|
14691
|
+
|
|
14692
|
+
match: "objectValues"
|
|
14693
|
+
|
|
14694
|
+
pathPattern?: string
|
|
14695
|
+
[k: string]: unknown | undefined
|
|
14696
|
+
})[]] | string)[]
|
|
14697
|
+
|
|
14698
|
+
tags?: ([string, ({
|
|
14699
|
+
|
|
14700
|
+
match: "strings"
|
|
14701
|
+
[k: string]: unknown | undefined
|
|
14702
|
+
} | {
|
|
14703
|
+
|
|
14704
|
+
match: "objectKeys"
|
|
14705
|
+
|
|
14706
|
+
pathPattern?: string
|
|
14707
|
+
[k: string]: unknown | undefined
|
|
14708
|
+
} | {
|
|
14709
|
+
|
|
14710
|
+
match: "objectValues"
|
|
14711
|
+
|
|
14712
|
+
pathPattern?: string
|
|
14713
|
+
[k: string]: unknown | undefined
|
|
14714
|
+
})[]] | string)[]
|
|
14715
|
+
|
|
14716
|
+
entryPoint?: string
|
|
14717
|
+
|
|
14718
|
+
tailwindConfig?: string
|
|
14719
|
+
|
|
14720
|
+
tsconfig?: string
|
|
14721
|
+
|
|
14722
|
+
order?: ("asc" | "desc" | "official" | "improved")
|
|
14982
14723
|
}]
|
|
14983
|
-
// -----
|
|
14984
|
-
type
|
|
14985
|
-
|
|
14724
|
+
// ----- tailwindcss/enforce-consistent-important-position -----
|
|
14725
|
+
type TailwindcssEnforceConsistentImportantPosition = []|[{
|
|
14726
|
+
|
|
14727
|
+
callees?: ([string, ({
|
|
14728
|
+
|
|
14729
|
+
match: "strings"
|
|
14730
|
+
[k: string]: unknown | undefined
|
|
14731
|
+
} | {
|
|
14732
|
+
|
|
14733
|
+
match: "objectKeys"
|
|
14734
|
+
|
|
14735
|
+
pathPattern?: string
|
|
14736
|
+
[k: string]: unknown | undefined
|
|
14737
|
+
} | {
|
|
14738
|
+
|
|
14739
|
+
match: "objectValues"
|
|
14740
|
+
|
|
14741
|
+
pathPattern?: string
|
|
14742
|
+
[k: string]: unknown | undefined
|
|
14743
|
+
})[]] | string)[]
|
|
14744
|
+
|
|
14745
|
+
attributes?: (string | [string, ({
|
|
14746
|
+
|
|
14747
|
+
match: "strings"
|
|
14748
|
+
[k: string]: unknown | undefined
|
|
14749
|
+
} | {
|
|
14750
|
+
|
|
14751
|
+
match: "objectKeys"
|
|
14752
|
+
|
|
14753
|
+
pathPattern?: string
|
|
14754
|
+
[k: string]: unknown | undefined
|
|
14755
|
+
} | {
|
|
14756
|
+
|
|
14757
|
+
match: "objectValues"
|
|
14758
|
+
|
|
14759
|
+
pathPattern?: string
|
|
14760
|
+
[k: string]: unknown | undefined
|
|
14761
|
+
})[]])[]
|
|
14762
|
+
|
|
14763
|
+
variables?: ([string, ({
|
|
14764
|
+
|
|
14765
|
+
match: "strings"
|
|
14766
|
+
[k: string]: unknown | undefined
|
|
14767
|
+
} | {
|
|
14768
|
+
|
|
14769
|
+
match: "objectKeys"
|
|
14770
|
+
|
|
14771
|
+
pathPattern?: string
|
|
14772
|
+
[k: string]: unknown | undefined
|
|
14773
|
+
} | {
|
|
14774
|
+
|
|
14775
|
+
match: "objectValues"
|
|
14776
|
+
|
|
14777
|
+
pathPattern?: string
|
|
14778
|
+
[k: string]: unknown | undefined
|
|
14779
|
+
})[]] | string)[]
|
|
14780
|
+
|
|
14781
|
+
tags?: ([string, ({
|
|
14782
|
+
|
|
14783
|
+
match: "strings"
|
|
14784
|
+
[k: string]: unknown | undefined
|
|
14785
|
+
} | {
|
|
14786
|
+
|
|
14787
|
+
match: "objectKeys"
|
|
14788
|
+
|
|
14789
|
+
pathPattern?: string
|
|
14790
|
+
[k: string]: unknown | undefined
|
|
14791
|
+
} | {
|
|
14792
|
+
|
|
14793
|
+
match: "objectValues"
|
|
14794
|
+
|
|
14795
|
+
pathPattern?: string
|
|
14796
|
+
[k: string]: unknown | undefined
|
|
14797
|
+
})[]] | string)[]
|
|
14798
|
+
|
|
14799
|
+
entryPoint?: string
|
|
14800
|
+
|
|
14801
|
+
tailwindConfig?: string
|
|
14802
|
+
|
|
14803
|
+
tsconfig?: string
|
|
14804
|
+
|
|
14805
|
+
position?: ("legacy" | "recommended")
|
|
14986
14806
|
}]
|
|
14987
|
-
// -----
|
|
14988
|
-
type
|
|
14989
|
-
|
|
14807
|
+
// ----- tailwindcss/enforce-consistent-line-wrapping -----
|
|
14808
|
+
type TailwindcssEnforceConsistentLineWrapping = []|[{
|
|
14809
|
+
|
|
14810
|
+
callees?: ([string, ({
|
|
14811
|
+
|
|
14812
|
+
match: "strings"
|
|
14813
|
+
[k: string]: unknown | undefined
|
|
14814
|
+
} | {
|
|
14815
|
+
|
|
14816
|
+
match: "objectKeys"
|
|
14817
|
+
|
|
14818
|
+
pathPattern?: string
|
|
14819
|
+
[k: string]: unknown | undefined
|
|
14820
|
+
} | {
|
|
14821
|
+
|
|
14822
|
+
match: "objectValues"
|
|
14823
|
+
|
|
14824
|
+
pathPattern?: string
|
|
14825
|
+
[k: string]: unknown | undefined
|
|
14826
|
+
})[]] | string)[]
|
|
14827
|
+
|
|
14828
|
+
attributes?: (string | [string, ({
|
|
14829
|
+
|
|
14830
|
+
match: "strings"
|
|
14831
|
+
[k: string]: unknown | undefined
|
|
14832
|
+
} | {
|
|
14833
|
+
|
|
14834
|
+
match: "objectKeys"
|
|
14835
|
+
|
|
14836
|
+
pathPattern?: string
|
|
14837
|
+
[k: string]: unknown | undefined
|
|
14838
|
+
} | {
|
|
14839
|
+
|
|
14840
|
+
match: "objectValues"
|
|
14841
|
+
|
|
14842
|
+
pathPattern?: string
|
|
14843
|
+
[k: string]: unknown | undefined
|
|
14844
|
+
})[]])[]
|
|
14845
|
+
|
|
14846
|
+
variables?: ([string, ({
|
|
14847
|
+
|
|
14848
|
+
match: "strings"
|
|
14849
|
+
[k: string]: unknown | undefined
|
|
14850
|
+
} | {
|
|
14851
|
+
|
|
14852
|
+
match: "objectKeys"
|
|
14853
|
+
|
|
14854
|
+
pathPattern?: string
|
|
14855
|
+
[k: string]: unknown | undefined
|
|
14856
|
+
} | {
|
|
14857
|
+
|
|
14858
|
+
match: "objectValues"
|
|
14859
|
+
|
|
14860
|
+
pathPattern?: string
|
|
14861
|
+
[k: string]: unknown | undefined
|
|
14862
|
+
})[]] | string)[]
|
|
14863
|
+
|
|
14864
|
+
tags?: ([string, ({
|
|
14865
|
+
|
|
14866
|
+
match: "strings"
|
|
14867
|
+
[k: string]: unknown | undefined
|
|
14868
|
+
} | {
|
|
14869
|
+
|
|
14870
|
+
match: "objectKeys"
|
|
14871
|
+
|
|
14872
|
+
pathPattern?: string
|
|
14873
|
+
[k: string]: unknown | undefined
|
|
14874
|
+
} | {
|
|
14875
|
+
|
|
14876
|
+
match: "objectValues"
|
|
14877
|
+
|
|
14878
|
+
pathPattern?: string
|
|
14879
|
+
[k: string]: unknown | undefined
|
|
14880
|
+
})[]] | string)[]
|
|
14881
|
+
|
|
14882
|
+
entryPoint?: string
|
|
14883
|
+
|
|
14884
|
+
tailwindConfig?: string
|
|
14885
|
+
|
|
14886
|
+
tsconfig?: string
|
|
14887
|
+
|
|
14888
|
+
classesPerLine?: number
|
|
14889
|
+
|
|
14890
|
+
group?: ("newLine" | "emptyLine" | "never")
|
|
14891
|
+
|
|
14892
|
+
indent?: ("tab" | number)
|
|
14893
|
+
|
|
14894
|
+
lineBreakStyle?: ("unix" | "windows")
|
|
14895
|
+
|
|
14896
|
+
preferSingleLine?: boolean
|
|
14897
|
+
|
|
14898
|
+
printWidth?: number
|
|
14990
14899
|
}]
|
|
14991
|
-
// -----
|
|
14992
|
-
type
|
|
14993
|
-
|
|
14900
|
+
// ----- tailwindcss/enforce-consistent-variable-syntax -----
|
|
14901
|
+
type TailwindcssEnforceConsistentVariableSyntax = []|[{
|
|
14902
|
+
|
|
14903
|
+
callees?: ([string, ({
|
|
14904
|
+
|
|
14905
|
+
match: "strings"
|
|
14906
|
+
[k: string]: unknown | undefined
|
|
14907
|
+
} | {
|
|
14908
|
+
|
|
14909
|
+
match: "objectKeys"
|
|
14910
|
+
|
|
14911
|
+
pathPattern?: string
|
|
14912
|
+
[k: string]: unknown | undefined
|
|
14913
|
+
} | {
|
|
14914
|
+
|
|
14915
|
+
match: "objectValues"
|
|
14916
|
+
|
|
14917
|
+
pathPattern?: string
|
|
14918
|
+
[k: string]: unknown | undefined
|
|
14919
|
+
})[]] | string)[]
|
|
14920
|
+
|
|
14921
|
+
attributes?: (string | [string, ({
|
|
14922
|
+
|
|
14923
|
+
match: "strings"
|
|
14924
|
+
[k: string]: unknown | undefined
|
|
14925
|
+
} | {
|
|
14926
|
+
|
|
14927
|
+
match: "objectKeys"
|
|
14928
|
+
|
|
14929
|
+
pathPattern?: string
|
|
14930
|
+
[k: string]: unknown | undefined
|
|
14931
|
+
} | {
|
|
14932
|
+
|
|
14933
|
+
match: "objectValues"
|
|
14934
|
+
|
|
14935
|
+
pathPattern?: string
|
|
14936
|
+
[k: string]: unknown | undefined
|
|
14937
|
+
})[]])[]
|
|
14938
|
+
|
|
14939
|
+
variables?: ([string, ({
|
|
14940
|
+
|
|
14941
|
+
match: "strings"
|
|
14942
|
+
[k: string]: unknown | undefined
|
|
14943
|
+
} | {
|
|
14944
|
+
|
|
14945
|
+
match: "objectKeys"
|
|
14946
|
+
|
|
14947
|
+
pathPattern?: string
|
|
14948
|
+
[k: string]: unknown | undefined
|
|
14949
|
+
} | {
|
|
14950
|
+
|
|
14951
|
+
match: "objectValues"
|
|
14952
|
+
|
|
14953
|
+
pathPattern?: string
|
|
14954
|
+
[k: string]: unknown | undefined
|
|
14955
|
+
})[]] | string)[]
|
|
14956
|
+
|
|
14957
|
+
tags?: ([string, ({
|
|
14958
|
+
|
|
14959
|
+
match: "strings"
|
|
14960
|
+
[k: string]: unknown | undefined
|
|
14961
|
+
} | {
|
|
14962
|
+
|
|
14963
|
+
match: "objectKeys"
|
|
14964
|
+
|
|
14965
|
+
pathPattern?: string
|
|
14966
|
+
[k: string]: unknown | undefined
|
|
14967
|
+
} | {
|
|
14968
|
+
|
|
14969
|
+
match: "objectValues"
|
|
14970
|
+
|
|
14971
|
+
pathPattern?: string
|
|
14972
|
+
[k: string]: unknown | undefined
|
|
14973
|
+
})[]] | string)[]
|
|
14974
|
+
|
|
14975
|
+
entryPoint?: string
|
|
14976
|
+
|
|
14977
|
+
tailwindConfig?: string
|
|
14978
|
+
|
|
14979
|
+
tsconfig?: string
|
|
14980
|
+
|
|
14981
|
+
syntax?: ("shorthand" | "variable")
|
|
14994
14982
|
}]
|
|
14995
|
-
// -----
|
|
14996
|
-
type
|
|
14997
|
-
|
|
14998
|
-
|
|
14999
|
-
|
|
15000
|
-
|
|
15001
|
-
|
|
15002
|
-
|
|
15003
|
-
|
|
15004
|
-
|
|
15005
|
-
|
|
14983
|
+
// ----- tailwindcss/enforce-shorthand-classes -----
|
|
14984
|
+
type TailwindcssEnforceShorthandClasses = []|[{
|
|
14985
|
+
|
|
14986
|
+
callees?: ([string, ({
|
|
14987
|
+
|
|
14988
|
+
match: "strings"
|
|
14989
|
+
[k: string]: unknown | undefined
|
|
14990
|
+
} | {
|
|
14991
|
+
|
|
14992
|
+
match: "objectKeys"
|
|
14993
|
+
|
|
14994
|
+
pathPattern?: string
|
|
14995
|
+
[k: string]: unknown | undefined
|
|
14996
|
+
} | {
|
|
14997
|
+
|
|
14998
|
+
match: "objectValues"
|
|
14999
|
+
|
|
15000
|
+
pathPattern?: string
|
|
15001
|
+
[k: string]: unknown | undefined
|
|
15002
|
+
})[]] | string)[]
|
|
15003
|
+
|
|
15004
|
+
attributes?: (string | [string, ({
|
|
15005
|
+
|
|
15006
|
+
match: "strings"
|
|
15007
|
+
[k: string]: unknown | undefined
|
|
15008
|
+
} | {
|
|
15009
|
+
|
|
15010
|
+
match: "objectKeys"
|
|
15011
|
+
|
|
15012
|
+
pathPattern?: string
|
|
15013
|
+
[k: string]: unknown | undefined
|
|
15014
|
+
} | {
|
|
15015
|
+
|
|
15016
|
+
match: "objectValues"
|
|
15017
|
+
|
|
15018
|
+
pathPattern?: string
|
|
15019
|
+
[k: string]: unknown | undefined
|
|
15020
|
+
})[]])[]
|
|
15021
|
+
|
|
15022
|
+
variables?: ([string, ({
|
|
15023
|
+
|
|
15024
|
+
match: "strings"
|
|
15025
|
+
[k: string]: unknown | undefined
|
|
15026
|
+
} | {
|
|
15027
|
+
|
|
15028
|
+
match: "objectKeys"
|
|
15029
|
+
|
|
15030
|
+
pathPattern?: string
|
|
15031
|
+
[k: string]: unknown | undefined
|
|
15032
|
+
} | {
|
|
15033
|
+
|
|
15034
|
+
match: "objectValues"
|
|
15035
|
+
|
|
15036
|
+
pathPattern?: string
|
|
15037
|
+
[k: string]: unknown | undefined
|
|
15038
|
+
})[]] | string)[]
|
|
15039
|
+
|
|
15040
|
+
tags?: ([string, ({
|
|
15041
|
+
|
|
15042
|
+
match: "strings"
|
|
15043
|
+
[k: string]: unknown | undefined
|
|
15044
|
+
} | {
|
|
15045
|
+
|
|
15046
|
+
match: "objectKeys"
|
|
15047
|
+
|
|
15048
|
+
pathPattern?: string
|
|
15049
|
+
[k: string]: unknown | undefined
|
|
15050
|
+
} | {
|
|
15051
|
+
|
|
15052
|
+
match: "objectValues"
|
|
15053
|
+
|
|
15054
|
+
pathPattern?: string
|
|
15055
|
+
[k: string]: unknown | undefined
|
|
15056
|
+
})[]] | string)[]
|
|
15057
|
+
|
|
15058
|
+
entryPoint?: string
|
|
15059
|
+
|
|
15060
|
+
tailwindConfig?: string
|
|
15061
|
+
|
|
15062
|
+
tsconfig?: string
|
|
15006
15063
|
}]
|
|
15007
|
-
// -----
|
|
15008
|
-
type
|
|
15009
|
-
|
|
15064
|
+
// ----- tailwindcss/no-conflicting-classes -----
|
|
15065
|
+
type TailwindcssNoConflictingClasses = []|[{
|
|
15066
|
+
|
|
15067
|
+
callees?: ([string, ({
|
|
15068
|
+
|
|
15069
|
+
match: "strings"
|
|
15070
|
+
[k: string]: unknown | undefined
|
|
15071
|
+
} | {
|
|
15072
|
+
|
|
15073
|
+
match: "objectKeys"
|
|
15074
|
+
|
|
15075
|
+
pathPattern?: string
|
|
15076
|
+
[k: string]: unknown | undefined
|
|
15077
|
+
} | {
|
|
15078
|
+
|
|
15079
|
+
match: "objectValues"
|
|
15080
|
+
|
|
15081
|
+
pathPattern?: string
|
|
15082
|
+
[k: string]: unknown | undefined
|
|
15083
|
+
})[]] | string)[]
|
|
15084
|
+
|
|
15085
|
+
attributes?: (string | [string, ({
|
|
15086
|
+
|
|
15087
|
+
match: "strings"
|
|
15088
|
+
[k: string]: unknown | undefined
|
|
15089
|
+
} | {
|
|
15090
|
+
|
|
15091
|
+
match: "objectKeys"
|
|
15092
|
+
|
|
15093
|
+
pathPattern?: string
|
|
15094
|
+
[k: string]: unknown | undefined
|
|
15095
|
+
} | {
|
|
15096
|
+
|
|
15097
|
+
match: "objectValues"
|
|
15098
|
+
|
|
15099
|
+
pathPattern?: string
|
|
15100
|
+
[k: string]: unknown | undefined
|
|
15101
|
+
})[]])[]
|
|
15102
|
+
|
|
15103
|
+
variables?: ([string, ({
|
|
15104
|
+
|
|
15105
|
+
match: "strings"
|
|
15106
|
+
[k: string]: unknown | undefined
|
|
15107
|
+
} | {
|
|
15108
|
+
|
|
15109
|
+
match: "objectKeys"
|
|
15110
|
+
|
|
15111
|
+
pathPattern?: string
|
|
15112
|
+
[k: string]: unknown | undefined
|
|
15113
|
+
} | {
|
|
15114
|
+
|
|
15115
|
+
match: "objectValues"
|
|
15116
|
+
|
|
15117
|
+
pathPattern?: string
|
|
15118
|
+
[k: string]: unknown | undefined
|
|
15119
|
+
})[]] | string)[]
|
|
15120
|
+
|
|
15121
|
+
tags?: ([string, ({
|
|
15122
|
+
|
|
15123
|
+
match: "strings"
|
|
15124
|
+
[k: string]: unknown | undefined
|
|
15125
|
+
} | {
|
|
15126
|
+
|
|
15127
|
+
match: "objectKeys"
|
|
15128
|
+
|
|
15129
|
+
pathPattern?: string
|
|
15130
|
+
[k: string]: unknown | undefined
|
|
15131
|
+
} | {
|
|
15132
|
+
|
|
15133
|
+
match: "objectValues"
|
|
15134
|
+
|
|
15135
|
+
pathPattern?: string
|
|
15136
|
+
[k: string]: unknown | undefined
|
|
15137
|
+
})[]] | string)[]
|
|
15138
|
+
|
|
15139
|
+
entryPoint?: string
|
|
15140
|
+
|
|
15141
|
+
tailwindConfig?: string
|
|
15142
|
+
|
|
15143
|
+
tsconfig?: string
|
|
15010
15144
|
}]
|
|
15011
|
-
// -----
|
|
15012
|
-
type
|
|
15013
|
-
|
|
15145
|
+
// ----- tailwindcss/no-deprecated-classes -----
|
|
15146
|
+
type TailwindcssNoDeprecatedClasses = []|[{
|
|
15147
|
+
|
|
15148
|
+
callees?: ([string, ({
|
|
15149
|
+
|
|
15150
|
+
match: "strings"
|
|
15151
|
+
[k: string]: unknown | undefined
|
|
15152
|
+
} | {
|
|
15153
|
+
|
|
15154
|
+
match: "objectKeys"
|
|
15155
|
+
|
|
15156
|
+
pathPattern?: string
|
|
15157
|
+
[k: string]: unknown | undefined
|
|
15158
|
+
} | {
|
|
15159
|
+
|
|
15160
|
+
match: "objectValues"
|
|
15161
|
+
|
|
15162
|
+
pathPattern?: string
|
|
15163
|
+
[k: string]: unknown | undefined
|
|
15164
|
+
})[]] | string)[]
|
|
15165
|
+
|
|
15166
|
+
attributes?: (string | [string, ({
|
|
15167
|
+
|
|
15168
|
+
match: "strings"
|
|
15169
|
+
[k: string]: unknown | undefined
|
|
15170
|
+
} | {
|
|
15171
|
+
|
|
15172
|
+
match: "objectKeys"
|
|
15173
|
+
|
|
15174
|
+
pathPattern?: string
|
|
15175
|
+
[k: string]: unknown | undefined
|
|
15176
|
+
} | {
|
|
15177
|
+
|
|
15178
|
+
match: "objectValues"
|
|
15179
|
+
|
|
15180
|
+
pathPattern?: string
|
|
15181
|
+
[k: string]: unknown | undefined
|
|
15182
|
+
})[]])[]
|
|
15183
|
+
|
|
15184
|
+
variables?: ([string, ({
|
|
15185
|
+
|
|
15186
|
+
match: "strings"
|
|
15187
|
+
[k: string]: unknown | undefined
|
|
15188
|
+
} | {
|
|
15189
|
+
|
|
15190
|
+
match: "objectKeys"
|
|
15191
|
+
|
|
15192
|
+
pathPattern?: string
|
|
15193
|
+
[k: string]: unknown | undefined
|
|
15194
|
+
} | {
|
|
15195
|
+
|
|
15196
|
+
match: "objectValues"
|
|
15197
|
+
|
|
15198
|
+
pathPattern?: string
|
|
15199
|
+
[k: string]: unknown | undefined
|
|
15200
|
+
})[]] | string)[]
|
|
15201
|
+
|
|
15202
|
+
tags?: ([string, ({
|
|
15203
|
+
|
|
15204
|
+
match: "strings"
|
|
15205
|
+
[k: string]: unknown | undefined
|
|
15206
|
+
} | {
|
|
15207
|
+
|
|
15208
|
+
match: "objectKeys"
|
|
15209
|
+
|
|
15210
|
+
pathPattern?: string
|
|
15211
|
+
[k: string]: unknown | undefined
|
|
15212
|
+
} | {
|
|
15213
|
+
|
|
15214
|
+
match: "objectValues"
|
|
15215
|
+
|
|
15216
|
+
pathPattern?: string
|
|
15217
|
+
[k: string]: unknown | undefined
|
|
15218
|
+
})[]] | string)[]
|
|
15219
|
+
|
|
15220
|
+
entryPoint?: string
|
|
15221
|
+
|
|
15222
|
+
tailwindConfig?: string
|
|
15223
|
+
|
|
15224
|
+
tsconfig?: string
|
|
15014
15225
|
}]
|
|
15015
|
-
// -----
|
|
15016
|
-
type
|
|
15017
|
-
|
|
15018
|
-
|
|
15019
|
-
|
|
15020
|
-
|
|
15021
|
-
|
|
15022
|
-
|
|
15023
|
-
|
|
15024
|
-
|
|
15025
|
-
|
|
15026
|
-
|
|
15027
|
-
|
|
15226
|
+
// ----- tailwindcss/no-duplicate-classes -----
|
|
15227
|
+
type TailwindcssNoDuplicateClasses = []|[{
|
|
15228
|
+
|
|
15229
|
+
callees?: ([string, ({
|
|
15230
|
+
|
|
15231
|
+
match: "strings"
|
|
15232
|
+
[k: string]: unknown | undefined
|
|
15233
|
+
} | {
|
|
15234
|
+
|
|
15235
|
+
match: "objectKeys"
|
|
15236
|
+
|
|
15237
|
+
pathPattern?: string
|
|
15238
|
+
[k: string]: unknown | undefined
|
|
15239
|
+
} | {
|
|
15240
|
+
|
|
15241
|
+
match: "objectValues"
|
|
15242
|
+
|
|
15243
|
+
pathPattern?: string
|
|
15244
|
+
[k: string]: unknown | undefined
|
|
15245
|
+
})[]] | string)[]
|
|
15246
|
+
|
|
15247
|
+
attributes?: (string | [string, ({
|
|
15248
|
+
|
|
15249
|
+
match: "strings"
|
|
15250
|
+
[k: string]: unknown | undefined
|
|
15251
|
+
} | {
|
|
15252
|
+
|
|
15253
|
+
match: "objectKeys"
|
|
15254
|
+
|
|
15255
|
+
pathPattern?: string
|
|
15256
|
+
[k: string]: unknown | undefined
|
|
15257
|
+
} | {
|
|
15258
|
+
|
|
15259
|
+
match: "objectValues"
|
|
15260
|
+
|
|
15261
|
+
pathPattern?: string
|
|
15262
|
+
[k: string]: unknown | undefined
|
|
15263
|
+
})[]])[]
|
|
15264
|
+
|
|
15265
|
+
variables?: ([string, ({
|
|
15266
|
+
|
|
15267
|
+
match: "strings"
|
|
15268
|
+
[k: string]: unknown | undefined
|
|
15269
|
+
} | {
|
|
15270
|
+
|
|
15271
|
+
match: "objectKeys"
|
|
15272
|
+
|
|
15273
|
+
pathPattern?: string
|
|
15274
|
+
[k: string]: unknown | undefined
|
|
15275
|
+
} | {
|
|
15276
|
+
|
|
15277
|
+
match: "objectValues"
|
|
15278
|
+
|
|
15279
|
+
pathPattern?: string
|
|
15280
|
+
[k: string]: unknown | undefined
|
|
15281
|
+
})[]] | string)[]
|
|
15282
|
+
|
|
15283
|
+
tags?: ([string, ({
|
|
15284
|
+
|
|
15285
|
+
match: "strings"
|
|
15286
|
+
[k: string]: unknown | undefined
|
|
15287
|
+
} | {
|
|
15288
|
+
|
|
15289
|
+
match: "objectKeys"
|
|
15290
|
+
|
|
15291
|
+
pathPattern?: string
|
|
15292
|
+
[k: string]: unknown | undefined
|
|
15293
|
+
} | {
|
|
15294
|
+
|
|
15295
|
+
match: "objectValues"
|
|
15296
|
+
|
|
15297
|
+
pathPattern?: string
|
|
15298
|
+
[k: string]: unknown | undefined
|
|
15299
|
+
})[]] | string)[]
|
|
15300
|
+
|
|
15301
|
+
entryPoint?: string
|
|
15302
|
+
|
|
15303
|
+
tailwindConfig?: string
|
|
15304
|
+
|
|
15305
|
+
tsconfig?: string
|
|
15028
15306
|
}]
|
|
15029
|
-
// -----
|
|
15030
|
-
type
|
|
15031
|
-
|
|
15032
|
-
|
|
15033
|
-
|
|
15307
|
+
// ----- tailwindcss/no-restricted-classes -----
|
|
15308
|
+
type TailwindcssNoRestrictedClasses = []|[{
|
|
15309
|
+
|
|
15310
|
+
callees?: ([string, ({
|
|
15311
|
+
|
|
15312
|
+
match: "strings"
|
|
15313
|
+
[k: string]: unknown | undefined
|
|
15314
|
+
} | {
|
|
15315
|
+
|
|
15316
|
+
match: "objectKeys"
|
|
15317
|
+
|
|
15318
|
+
pathPattern?: string
|
|
15319
|
+
[k: string]: unknown | undefined
|
|
15320
|
+
} | {
|
|
15321
|
+
|
|
15322
|
+
match: "objectValues"
|
|
15323
|
+
|
|
15324
|
+
pathPattern?: string
|
|
15325
|
+
[k: string]: unknown | undefined
|
|
15326
|
+
})[]] | string)[]
|
|
15327
|
+
|
|
15328
|
+
attributes?: (string | [string, ({
|
|
15329
|
+
|
|
15330
|
+
match: "strings"
|
|
15331
|
+
[k: string]: unknown | undefined
|
|
15332
|
+
} | {
|
|
15333
|
+
|
|
15334
|
+
match: "objectKeys"
|
|
15335
|
+
|
|
15336
|
+
pathPattern?: string
|
|
15337
|
+
[k: string]: unknown | undefined
|
|
15338
|
+
} | {
|
|
15339
|
+
|
|
15340
|
+
match: "objectValues"
|
|
15341
|
+
|
|
15342
|
+
pathPattern?: string
|
|
15343
|
+
[k: string]: unknown | undefined
|
|
15344
|
+
})[]])[]
|
|
15345
|
+
|
|
15346
|
+
variables?: ([string, ({
|
|
15347
|
+
|
|
15348
|
+
match: "strings"
|
|
15349
|
+
[k: string]: unknown | undefined
|
|
15350
|
+
} | {
|
|
15351
|
+
|
|
15352
|
+
match: "objectKeys"
|
|
15353
|
+
|
|
15354
|
+
pathPattern?: string
|
|
15355
|
+
[k: string]: unknown | undefined
|
|
15356
|
+
} | {
|
|
15357
|
+
|
|
15358
|
+
match: "objectValues"
|
|
15359
|
+
|
|
15360
|
+
pathPattern?: string
|
|
15361
|
+
[k: string]: unknown | undefined
|
|
15362
|
+
})[]] | string)[]
|
|
15363
|
+
|
|
15364
|
+
tags?: ([string, ({
|
|
15365
|
+
|
|
15366
|
+
match: "strings"
|
|
15367
|
+
[k: string]: unknown | undefined
|
|
15368
|
+
} | {
|
|
15369
|
+
|
|
15370
|
+
match: "objectKeys"
|
|
15371
|
+
|
|
15372
|
+
pathPattern?: string
|
|
15373
|
+
[k: string]: unknown | undefined
|
|
15374
|
+
} | {
|
|
15375
|
+
|
|
15376
|
+
match: "objectValues"
|
|
15377
|
+
|
|
15378
|
+
pathPattern?: string
|
|
15379
|
+
[k: string]: unknown | undefined
|
|
15380
|
+
})[]] | string)[]
|
|
15034
15381
|
|
|
15035
|
-
|
|
15036
|
-
|
|
15037
|
-
|
|
15038
|
-
|
|
15039
|
-
|
|
15040
|
-
|
|
15041
|
-
|
|
15042
|
-
|
|
15043
|
-
|
|
15044
|
-
|
|
15045
|
-
|
|
15046
|
-
|
|
15047
|
-
|
|
15048
|
-
|
|
15049
|
-
type SortVars = []|[{
|
|
15050
|
-
ignoreCase?: boolean
|
|
15051
|
-
}]
|
|
15052
|
-
// ----- space-before-blocks -----
|
|
15053
|
-
type SpaceBeforeBlocks = []|[(("always" | "never") | {
|
|
15054
|
-
keywords?: ("always" | "never" | "off")
|
|
15055
|
-
functions?: ("always" | "never" | "off")
|
|
15056
|
-
classes?: ("always" | "never" | "off")
|
|
15057
|
-
})]
|
|
15058
|
-
// ----- space-before-function-paren -----
|
|
15059
|
-
type SpaceBeforeFunctionParen = []|[(("always" | "never") | {
|
|
15060
|
-
anonymous?: ("always" | "never" | "ignore")
|
|
15061
|
-
named?: ("always" | "never" | "ignore")
|
|
15062
|
-
asyncArrow?: ("always" | "never" | "ignore")
|
|
15063
|
-
})]
|
|
15064
|
-
// ----- space-in-parens -----
|
|
15065
|
-
type SpaceInParens = []|[("always" | "never")]|[("always" | "never"), {
|
|
15066
|
-
exceptions?: ("{}" | "[]" | "()" | "empty")[]
|
|
15067
|
-
}]
|
|
15068
|
-
// ----- space-infix-ops -----
|
|
15069
|
-
type SpaceInfixOps = []|[{
|
|
15070
|
-
int32Hint?: boolean
|
|
15071
|
-
}]
|
|
15072
|
-
// ----- space-unary-ops -----
|
|
15073
|
-
type SpaceUnaryOps = []|[{
|
|
15074
|
-
words?: boolean
|
|
15075
|
-
nonwords?: boolean
|
|
15076
|
-
overrides?: {
|
|
15077
|
-
[k: string]: boolean | undefined
|
|
15078
|
-
}
|
|
15382
|
+
entryPoint?: string
|
|
15383
|
+
|
|
15384
|
+
tailwindConfig?: string
|
|
15385
|
+
|
|
15386
|
+
tsconfig?: string
|
|
15387
|
+
restrict?: ({
|
|
15388
|
+
|
|
15389
|
+
fix?: string
|
|
15390
|
+
|
|
15391
|
+
message?: string
|
|
15392
|
+
|
|
15393
|
+
pattern: string
|
|
15394
|
+
[k: string]: unknown | undefined
|
|
15395
|
+
} | string)[]
|
|
15079
15396
|
}]
|
|
15080
|
-
// -----
|
|
15081
|
-
type
|
|
15082
|
-
|
|
15083
|
-
|
|
15084
|
-
|
|
15085
|
-
|
|
15086
|
-
|
|
15087
|
-
}
|
|
15088
|
-
|
|
15089
|
-
|
|
15090
|
-
|
|
15091
|
-
|
|
15092
|
-
|
|
15397
|
+
// ----- tailwindcss/no-unknown-classes -----
|
|
15398
|
+
type TailwindcssNoUnknownClasses = []|[{
|
|
15399
|
+
|
|
15400
|
+
callees?: ([string, ({
|
|
15401
|
+
|
|
15402
|
+
match: "strings"
|
|
15403
|
+
[k: string]: unknown | undefined
|
|
15404
|
+
} | {
|
|
15405
|
+
|
|
15406
|
+
match: "objectKeys"
|
|
15407
|
+
|
|
15408
|
+
pathPattern?: string
|
|
15409
|
+
[k: string]: unknown | undefined
|
|
15410
|
+
} | {
|
|
15411
|
+
|
|
15412
|
+
match: "objectValues"
|
|
15413
|
+
|
|
15414
|
+
pathPattern?: string
|
|
15415
|
+
[k: string]: unknown | undefined
|
|
15416
|
+
})[]] | string)[]
|
|
15417
|
+
|
|
15418
|
+
attributes?: (string | [string, ({
|
|
15419
|
+
|
|
15420
|
+
match: "strings"
|
|
15421
|
+
[k: string]: unknown | undefined
|
|
15422
|
+
} | {
|
|
15423
|
+
|
|
15424
|
+
match: "objectKeys"
|
|
15425
|
+
|
|
15426
|
+
pathPattern?: string
|
|
15427
|
+
[k: string]: unknown | undefined
|
|
15428
|
+
} | {
|
|
15429
|
+
|
|
15430
|
+
match: "objectValues"
|
|
15431
|
+
|
|
15432
|
+
pathPattern?: string
|
|
15433
|
+
[k: string]: unknown | undefined
|
|
15434
|
+
})[]])[]
|
|
15435
|
+
|
|
15436
|
+
variables?: ([string, ({
|
|
15437
|
+
|
|
15438
|
+
match: "strings"
|
|
15439
|
+
[k: string]: unknown | undefined
|
|
15440
|
+
} | {
|
|
15441
|
+
|
|
15442
|
+
match: "objectKeys"
|
|
15443
|
+
|
|
15444
|
+
pathPattern?: string
|
|
15445
|
+
[k: string]: unknown | undefined
|
|
15446
|
+
} | {
|
|
15447
|
+
|
|
15448
|
+
match: "objectValues"
|
|
15449
|
+
|
|
15450
|
+
pathPattern?: string
|
|
15451
|
+
[k: string]: unknown | undefined
|
|
15452
|
+
})[]] | string)[]
|
|
15453
|
+
|
|
15454
|
+
tags?: ([string, ({
|
|
15455
|
+
|
|
15456
|
+
match: "strings"
|
|
15457
|
+
[k: string]: unknown | undefined
|
|
15458
|
+
} | {
|
|
15459
|
+
|
|
15460
|
+
match: "objectKeys"
|
|
15461
|
+
|
|
15462
|
+
pathPattern?: string
|
|
15463
|
+
[k: string]: unknown | undefined
|
|
15464
|
+
} | {
|
|
15465
|
+
|
|
15466
|
+
match: "objectValues"
|
|
15467
|
+
|
|
15468
|
+
pathPattern?: string
|
|
15469
|
+
[k: string]: unknown | undefined
|
|
15470
|
+
})[]] | string)[]
|
|
15471
|
+
|
|
15472
|
+
entryPoint?: string
|
|
15473
|
+
|
|
15474
|
+
tailwindConfig?: string
|
|
15475
|
+
|
|
15476
|
+
tsconfig?: string
|
|
15477
|
+
|
|
15478
|
+
detectComponentClasses?: boolean
|
|
15479
|
+
|
|
15480
|
+
ignore?: string[]
|
|
15093
15481
|
}]
|
|
15094
|
-
// -----
|
|
15095
|
-
type
|
|
15096
|
-
|
|
15097
|
-
|
|
15098
|
-
|
|
15099
|
-
|
|
15482
|
+
// ----- tailwindcss/no-unnecessary-whitespace -----
|
|
15483
|
+
type TailwindcssNoUnnecessaryWhitespace = []|[{
|
|
15484
|
+
|
|
15485
|
+
callees?: ([string, ({
|
|
15486
|
+
|
|
15487
|
+
match: "strings"
|
|
15488
|
+
[k: string]: unknown | undefined
|
|
15489
|
+
} | {
|
|
15490
|
+
|
|
15491
|
+
match: "objectKeys"
|
|
15492
|
+
|
|
15493
|
+
pathPattern?: string
|
|
15494
|
+
[k: string]: unknown | undefined
|
|
15495
|
+
} | {
|
|
15496
|
+
|
|
15497
|
+
match: "objectValues"
|
|
15498
|
+
|
|
15499
|
+
pathPattern?: string
|
|
15500
|
+
[k: string]: unknown | undefined
|
|
15501
|
+
})[]] | string)[]
|
|
15502
|
+
|
|
15503
|
+
attributes?: (string | [string, ({
|
|
15504
|
+
|
|
15505
|
+
match: "strings"
|
|
15506
|
+
[k: string]: unknown | undefined
|
|
15507
|
+
} | {
|
|
15508
|
+
|
|
15509
|
+
match: "objectKeys"
|
|
15510
|
+
|
|
15511
|
+
pathPattern?: string
|
|
15512
|
+
[k: string]: unknown | undefined
|
|
15513
|
+
} | {
|
|
15514
|
+
|
|
15515
|
+
match: "objectValues"
|
|
15516
|
+
|
|
15517
|
+
pathPattern?: string
|
|
15518
|
+
[k: string]: unknown | undefined
|
|
15519
|
+
})[]])[]
|
|
15520
|
+
|
|
15521
|
+
variables?: ([string, ({
|
|
15522
|
+
|
|
15523
|
+
match: "strings"
|
|
15524
|
+
[k: string]: unknown | undefined
|
|
15525
|
+
} | {
|
|
15526
|
+
|
|
15527
|
+
match: "objectKeys"
|
|
15528
|
+
|
|
15529
|
+
pathPattern?: string
|
|
15530
|
+
[k: string]: unknown | undefined
|
|
15531
|
+
} | {
|
|
15532
|
+
|
|
15533
|
+
match: "objectValues"
|
|
15534
|
+
|
|
15535
|
+
pathPattern?: string
|
|
15536
|
+
[k: string]: unknown | undefined
|
|
15537
|
+
})[]] | string)[]
|
|
15538
|
+
|
|
15539
|
+
tags?: ([string, ({
|
|
15540
|
+
|
|
15541
|
+
match: "strings"
|
|
15542
|
+
[k: string]: unknown | undefined
|
|
15543
|
+
} | {
|
|
15544
|
+
|
|
15545
|
+
match: "objectKeys"
|
|
15546
|
+
|
|
15547
|
+
pathPattern?: string
|
|
15548
|
+
[k: string]: unknown | undefined
|
|
15549
|
+
} | {
|
|
15550
|
+
|
|
15551
|
+
match: "objectValues"
|
|
15552
|
+
|
|
15553
|
+
pathPattern?: string
|
|
15554
|
+
[k: string]: unknown | undefined
|
|
15555
|
+
})[]] | string)[]
|
|
15556
|
+
|
|
15557
|
+
entryPoint?: string
|
|
15558
|
+
|
|
15559
|
+
tailwindConfig?: string
|
|
15560
|
+
|
|
15561
|
+
tsconfig?: string
|
|
15562
|
+
|
|
15563
|
+
allowMultiline?: boolean
|
|
15100
15564
|
}]
|
|
15101
15565
|
// ----- template-curly-spacing -----
|
|
15102
15566
|
type TemplateCurlySpacing = []|[("always" | "never")]
|
|
@@ -15464,6 +15928,8 @@ type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
|
15464
15928
|
|
|
15465
15929
|
ignoreRestSiblings?: boolean
|
|
15466
15930
|
|
|
15931
|
+
ignoreUsingDeclarations?: boolean
|
|
15932
|
+
|
|
15467
15933
|
reportUsedIgnorePattern?: boolean
|
|
15468
15934
|
|
|
15469
15935
|
vars?: ("all" | "local")
|
|
@@ -15487,6 +15953,8 @@ type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
15487
15953
|
|
|
15488
15954
|
ignoreRestSiblings?: boolean
|
|
15489
15955
|
|
|
15956
|
+
ignoreUsingDeclarations?: boolean
|
|
15957
|
+
|
|
15490
15958
|
reportUsedIgnorePattern?: boolean
|
|
15491
15959
|
|
|
15492
15960
|
vars?: ("all" | "local")
|
|
@@ -15783,6 +16251,16 @@ interface OptionsUnicorn extends OptionsOverrides {
|
|
|
15783
16251
|
*/
|
|
15784
16252
|
allRecommended?: boolean;
|
|
15785
16253
|
}
|
|
16254
|
+
interface HTMLOptions extends OptionsOverrides {
|
|
16255
|
+
/**
|
|
16256
|
+
* Custom template engine syntax to be recognized by the HTML parser.
|
|
16257
|
+
* This allows the parser to correctly handle template delimiters like `{{...}}` or `{%...%}`.
|
|
16258
|
+
*
|
|
16259
|
+
* @see https://html-eslint.org/docs/integrating-template-engine
|
|
16260
|
+
* @default { "{{": "}}", "{%": "%}" }
|
|
16261
|
+
*/
|
|
16262
|
+
templateEngineSyntax?: Record<string, string>;
|
|
16263
|
+
}
|
|
15786
16264
|
interface OptionsTailwindCSS extends OptionsOverrides {
|
|
15787
16265
|
/**
|
|
15788
16266
|
* Path to the Tailwind CSS config file.
|
|
@@ -15854,6 +16332,13 @@ interface OptionsConfig {
|
|
|
15854
16332
|
* @default true
|
|
15855
16333
|
*/
|
|
15856
16334
|
regexp?: boolean | OptionsOverrides;
|
|
16335
|
+
/**
|
|
16336
|
+
* Enable HTML linting.
|
|
16337
|
+
*
|
|
16338
|
+
* @see https://html-eslint.org/
|
|
16339
|
+
* @default true
|
|
16340
|
+
*/
|
|
16341
|
+
html?: boolean | HTMLOptions;
|
|
15857
16342
|
/**
|
|
15858
16343
|
* Enable Prettier support.
|
|
15859
16344
|
*
|
|
@@ -15899,6 +16384,8 @@ declare function comments(): FlatConfigItem[];
|
|
|
15899
16384
|
|
|
15900
16385
|
declare function deMorgan(): FlatConfigItem[];
|
|
15901
16386
|
|
|
16387
|
+
declare function html(options: HTMLOptions): Promise<FlatConfigItem[]>;
|
|
16388
|
+
|
|
15902
16389
|
declare function ignores(userIgnores?: string[]): FlatConfigItem[];
|
|
15903
16390
|
|
|
15904
16391
|
declare function imports(options?: OptionsHasNextJs): FlatConfigItem[];
|
|
@@ -15985,7 +16472,6 @@ declare const GLOB_YAML = "**/*.y?(a)ml";
|
|
|
15985
16472
|
declare const GLOB_TOML = "**/*.toml";
|
|
15986
16473
|
declare const GLOB_HTML = "**/*.htm?(l)";
|
|
15987
16474
|
declare const GLOB_MARKDOWN_CODE = "**/*.md/**/*.?([cm])[jt]s?(x)";
|
|
15988
|
-
declare const GLOB_TAILWINDCSS: string[];
|
|
15989
16475
|
declare const GLOB_ALL_SRC: string[];
|
|
15990
16476
|
declare const GLOB_NODE_MODULES: "**/node_modules";
|
|
15991
16477
|
declare const GLOB_DIST: "**/dist";
|
|
@@ -16028,4 +16514,4 @@ declare function ensurePackages(packages: (string | undefined)[]): void;
|
|
|
16028
16514
|
declare function composer(...items: Awaitable<FlatConfigItem[]>[]): Promise<FlatConfigItem[]>;
|
|
16029
16515
|
declare function toArray<T>(value: T | T[]): T[];
|
|
16030
16516
|
|
|
16031
|
-
export { type Awaitable, type FlatConfigItem, GLOB_ALL_SRC, GLOB_CSS, GLOB_DIST, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_NODE_MODULES, GLOB_POSTCSS, GLOB_REACT, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE,
|
|
16517
|
+
export { type Awaitable, type FlatConfigItem, GLOB_ALL_SRC, GLOB_CSS, GLOB_DIST, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_NODE_MODULES, GLOB_POSTCSS, GLOB_REACT, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_YAML, type HTMLOptions, type OptionsConfig, type OptionsFiles, type OptionsHasNextJs, type OptionsHasRegexp, type OptionsHasTanStackReactQuery, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsTailwindCSS, type OptionsTypeScriptParserOptions, type OptionsTypescript, type OptionsUnicorn, type ResolvedOptions, type Rules, type StyleConfig, type StyleOptions, combine, command, comments, composer, deMorgan, ensurePackages, getOverrides, hasNextJs, hasReact, hasTailwind, hasTanStackReactQuery, hasTypeScript, html, ignores, imports, interopDefault, isInEditorEnv, javascript, jsdoc, jsonc, markdown, ncontiero, nextJs, node, parserPlain, perfectionist, prettier, promise, react, regexp, resolveSubOptions, restrictedSyntaxJs, sortPackageJson, sortTsconfig, tailwindcss, toArray, toml, typescript, unicorn, yml };
|