@jsse/eslint-config 0.2.31 → 0.2.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/esm/fixable.js +2 -0
- package/dist/esm/generated/version.d.ts +1 -1
- package/dist/esm/generated/version.js +1 -1
- package/dist/esm/plugins.d.ts +1 -3
- package/dist/index.cjs +9 -8
- package/dist/index.d.cts +1982 -228
- package/dist/index.d.ts +1982 -228
- package/dist/index.js +6 -5
- package/package.json +26 -26
package/dist/index.d.ts
CHANGED
|
@@ -6713,31 +6713,31 @@ type JsoncSpaceUnaryOps =
|
|
|
6713
6713
|
|
|
6714
6714
|
interface MarkdownRuleOptions {
|
|
6715
6715
|
/**
|
|
6716
|
-
* Require languages for fenced code blocks
|
|
6716
|
+
* Require languages for fenced code blocks
|
|
6717
6717
|
*/
|
|
6718
6718
|
"markdown/fenced-code-language"?: Linter.RuleEntry<MarkdownFencedCodeLanguage>;
|
|
6719
6719
|
/**
|
|
6720
|
-
* Enforce heading levels increment by one
|
|
6720
|
+
* Enforce heading levels increment by one
|
|
6721
6721
|
*/
|
|
6722
6722
|
"markdown/heading-increment"?: Linter.RuleEntry<[]>;
|
|
6723
6723
|
/**
|
|
6724
|
-
* Disallow duplicate headings in the same document
|
|
6724
|
+
* Disallow duplicate headings in the same document
|
|
6725
6725
|
*/
|
|
6726
6726
|
"markdown/no-duplicate-headings"?: Linter.RuleEntry<[]>;
|
|
6727
6727
|
/**
|
|
6728
|
-
* Disallow empty links
|
|
6728
|
+
* Disallow empty links
|
|
6729
6729
|
*/
|
|
6730
6730
|
"markdown/no-empty-links"?: Linter.RuleEntry<[]>;
|
|
6731
6731
|
/**
|
|
6732
|
-
* Disallow HTML tags
|
|
6732
|
+
* Disallow HTML tags
|
|
6733
6733
|
*/
|
|
6734
6734
|
"markdown/no-html"?: Linter.RuleEntry<MarkdownNoHtml>;
|
|
6735
6735
|
/**
|
|
6736
|
-
* Disallow invalid label references
|
|
6736
|
+
* Disallow invalid label references
|
|
6737
6737
|
*/
|
|
6738
6738
|
"markdown/no-invalid-label-refs"?: Linter.RuleEntry<[]>;
|
|
6739
6739
|
/**
|
|
6740
|
-
* Disallow missing label references
|
|
6740
|
+
* Disallow missing label references
|
|
6741
6741
|
*/
|
|
6742
6742
|
"markdown/no-missing-label-refs"?: Linter.RuleEntry<[]>;
|
|
6743
6743
|
}
|
|
@@ -9977,6 +9977,13 @@ interface PerfectionistRuleOptions {
|
|
|
9977
9977
|
type PerfectionistSortArrayIncludes = {
|
|
9978
9978
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
9979
9979
|
|
|
9980
|
+
fallbackSort?: {
|
|
9981
|
+
order?: "asc" | "desc";
|
|
9982
|
+
|
|
9983
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
9984
|
+
[k: string]: unknown | undefined;
|
|
9985
|
+
};
|
|
9986
|
+
|
|
9980
9987
|
ignoreCase?: boolean;
|
|
9981
9988
|
|
|
9982
9989
|
alphabet?: string;
|
|
@@ -9985,6 +9992,8 @@ type PerfectionistSortArrayIncludes = {
|
|
|
9985
9992
|
|
|
9986
9993
|
order?: "asc" | "desc";
|
|
9987
9994
|
|
|
9995
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
9996
|
+
|
|
9988
9997
|
groupKind?: "mixed" | "literals-first" | "spreads-first";
|
|
9989
9998
|
|
|
9990
9999
|
customGroups?: (
|
|
@@ -9999,7 +10008,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
9999
10008
|
anyOf?: {
|
|
10000
10009
|
selector?: "literal" | "spread";
|
|
10001
10010
|
|
|
10002
|
-
elementNamePattern?:
|
|
10011
|
+
elementNamePattern?:
|
|
10012
|
+
| (
|
|
10013
|
+
| {
|
|
10014
|
+
pattern?: string;
|
|
10015
|
+
flags?: string;
|
|
10016
|
+
}
|
|
10017
|
+
| string
|
|
10018
|
+
)[]
|
|
10019
|
+
| (
|
|
10020
|
+
| {
|
|
10021
|
+
pattern?: string;
|
|
10022
|
+
flags?: string;
|
|
10023
|
+
}
|
|
10024
|
+
| string
|
|
10025
|
+
);
|
|
10003
10026
|
}[];
|
|
10004
10027
|
}
|
|
10005
10028
|
| {
|
|
@@ -10013,23 +10036,96 @@ type PerfectionistSortArrayIncludes = {
|
|
|
10013
10036
|
|
|
10014
10037
|
selector?: "literal" | "spread";
|
|
10015
10038
|
|
|
10016
|
-
elementNamePattern?:
|
|
10039
|
+
elementNamePattern?:
|
|
10040
|
+
| (
|
|
10041
|
+
| {
|
|
10042
|
+
pattern?: string;
|
|
10043
|
+
flags?: string;
|
|
10044
|
+
}
|
|
10045
|
+
| string
|
|
10046
|
+
)[]
|
|
10047
|
+
| (
|
|
10048
|
+
| {
|
|
10049
|
+
pattern?: string;
|
|
10050
|
+
flags?: string;
|
|
10051
|
+
}
|
|
10052
|
+
| string
|
|
10053
|
+
);
|
|
10017
10054
|
}
|
|
10018
10055
|
)[];
|
|
10019
10056
|
useConfigurationIf?: {
|
|
10020
|
-
allNamesMatchPattern?:
|
|
10057
|
+
allNamesMatchPattern?:
|
|
10058
|
+
| (
|
|
10059
|
+
| {
|
|
10060
|
+
pattern?: string;
|
|
10061
|
+
flags?: string;
|
|
10062
|
+
}
|
|
10063
|
+
| string
|
|
10064
|
+
)[]
|
|
10065
|
+
| (
|
|
10066
|
+
| {
|
|
10067
|
+
pattern?: string;
|
|
10068
|
+
flags?: string;
|
|
10069
|
+
}
|
|
10070
|
+
| string
|
|
10071
|
+
);
|
|
10021
10072
|
};
|
|
10022
10073
|
|
|
10023
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
10024
|
-
|
|
10025
10074
|
partitionByComment?:
|
|
10026
|
-
| string[]
|
|
10027
10075
|
| boolean
|
|
10028
|
-
|
|
|
10076
|
+
| (
|
|
10077
|
+
| (
|
|
10078
|
+
| {
|
|
10079
|
+
pattern?: string;
|
|
10080
|
+
flags?: string;
|
|
10081
|
+
}
|
|
10082
|
+
| string
|
|
10083
|
+
)[]
|
|
10084
|
+
| (
|
|
10085
|
+
| {
|
|
10086
|
+
pattern?: string;
|
|
10087
|
+
flags?: string;
|
|
10088
|
+
}
|
|
10089
|
+
| string
|
|
10090
|
+
)
|
|
10091
|
+
)
|
|
10029
10092
|
| {
|
|
10030
|
-
block?:
|
|
10031
|
-
|
|
10032
|
-
|
|
10093
|
+
block?:
|
|
10094
|
+
| boolean
|
|
10095
|
+
| (
|
|
10096
|
+
| (
|
|
10097
|
+
| {
|
|
10098
|
+
pattern?: string;
|
|
10099
|
+
flags?: string;
|
|
10100
|
+
}
|
|
10101
|
+
| string
|
|
10102
|
+
)[]
|
|
10103
|
+
| (
|
|
10104
|
+
| {
|
|
10105
|
+
pattern?: string;
|
|
10106
|
+
flags?: string;
|
|
10107
|
+
}
|
|
10108
|
+
| string
|
|
10109
|
+
)
|
|
10110
|
+
);
|
|
10111
|
+
line?:
|
|
10112
|
+
| boolean
|
|
10113
|
+
| (
|
|
10114
|
+
| (
|
|
10115
|
+
| {
|
|
10116
|
+
pattern?: string;
|
|
10117
|
+
flags?: string;
|
|
10118
|
+
}
|
|
10119
|
+
| string
|
|
10120
|
+
)[]
|
|
10121
|
+
| (
|
|
10122
|
+
| {
|
|
10123
|
+
pattern?: string;
|
|
10124
|
+
flags?: string;
|
|
10125
|
+
}
|
|
10126
|
+
| string
|
|
10127
|
+
)
|
|
10128
|
+
);
|
|
10033
10129
|
};
|
|
10034
10130
|
|
|
10035
10131
|
partitionByNewLine?: boolean;
|
|
@@ -10041,7 +10137,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
10041
10137
|
| string[]
|
|
10042
10138
|
| {
|
|
10043
10139
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10044
|
-
[k: string]: unknown | undefined;
|
|
10045
10140
|
}
|
|
10046
10141
|
)[];
|
|
10047
10142
|
}[];
|
|
@@ -10052,6 +10147,18 @@ type PerfectionistSortClasses =
|
|
|
10052
10147
|
{
|
|
10053
10148
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10054
10149
|
|
|
10150
|
+
fallbackSort?: {
|
|
10151
|
+
order?: "asc" | "desc";
|
|
10152
|
+
|
|
10153
|
+
type?:
|
|
10154
|
+
| "alphabetical"
|
|
10155
|
+
| "natural"
|
|
10156
|
+
| "line-length"
|
|
10157
|
+
| "custom"
|
|
10158
|
+
| "unsorted";
|
|
10159
|
+
[k: string]: unknown | undefined;
|
|
10160
|
+
};
|
|
10161
|
+
|
|
10055
10162
|
ignoreCase?: boolean;
|
|
10056
10163
|
|
|
10057
10164
|
alphabet?: string;
|
|
@@ -10060,7 +10167,12 @@ type PerfectionistSortClasses =
|
|
|
10060
10167
|
|
|
10061
10168
|
order?: "asc" | "desc";
|
|
10062
10169
|
|
|
10063
|
-
|
|
10170
|
+
type?:
|
|
10171
|
+
| "alphabetical"
|
|
10172
|
+
| "natural"
|
|
10173
|
+
| "line-length"
|
|
10174
|
+
| "custom"
|
|
10175
|
+
| "unsorted";
|
|
10064
10176
|
|
|
10065
10177
|
customGroups?: (
|
|
10066
10178
|
| {
|
|
@@ -10072,8 +10184,6 @@ type PerfectionistSortClasses =
|
|
|
10072
10184
|
|
|
10073
10185
|
newlinesInside?: "always" | "never";
|
|
10074
10186
|
anyOf?: {
|
|
10075
|
-
decoratorNamePattern?: string;
|
|
10076
|
-
|
|
10077
10187
|
modifiers?: (
|
|
10078
10188
|
| "async"
|
|
10079
10189
|
| "protected"
|
|
@@ -10099,9 +10209,53 @@ type PerfectionistSortClasses =
|
|
|
10099
10209
|
| "property"
|
|
10100
10210
|
| "method";
|
|
10101
10211
|
|
|
10102
|
-
|
|
10103
|
-
|
|
10104
|
-
|
|
10212
|
+
decoratorNamePattern?:
|
|
10213
|
+
| (
|
|
10214
|
+
| {
|
|
10215
|
+
pattern?: string;
|
|
10216
|
+
flags?: string;
|
|
10217
|
+
}
|
|
10218
|
+
| string
|
|
10219
|
+
)[]
|
|
10220
|
+
| (
|
|
10221
|
+
| {
|
|
10222
|
+
pattern?: string;
|
|
10223
|
+
flags?: string;
|
|
10224
|
+
}
|
|
10225
|
+
| string
|
|
10226
|
+
);
|
|
10227
|
+
|
|
10228
|
+
elementValuePattern?:
|
|
10229
|
+
| (
|
|
10230
|
+
| {
|
|
10231
|
+
pattern?: string;
|
|
10232
|
+
flags?: string;
|
|
10233
|
+
}
|
|
10234
|
+
| string
|
|
10235
|
+
)[]
|
|
10236
|
+
| (
|
|
10237
|
+
| {
|
|
10238
|
+
pattern?: string;
|
|
10239
|
+
flags?: string;
|
|
10240
|
+
}
|
|
10241
|
+
| string
|
|
10242
|
+
);
|
|
10243
|
+
|
|
10244
|
+
elementNamePattern?:
|
|
10245
|
+
| (
|
|
10246
|
+
| {
|
|
10247
|
+
pattern?: string;
|
|
10248
|
+
flags?: string;
|
|
10249
|
+
}
|
|
10250
|
+
| string
|
|
10251
|
+
)[]
|
|
10252
|
+
| (
|
|
10253
|
+
| {
|
|
10254
|
+
pattern?: string;
|
|
10255
|
+
flags?: string;
|
|
10256
|
+
}
|
|
10257
|
+
| string
|
|
10258
|
+
);
|
|
10105
10259
|
}[];
|
|
10106
10260
|
}
|
|
10107
10261
|
| {
|
|
@@ -10113,8 +10267,6 @@ type PerfectionistSortClasses =
|
|
|
10113
10267
|
|
|
10114
10268
|
newlinesInside?: "always" | "never";
|
|
10115
10269
|
|
|
10116
|
-
decoratorNamePattern?: string;
|
|
10117
|
-
|
|
10118
10270
|
modifiers?: (
|
|
10119
10271
|
| "async"
|
|
10120
10272
|
| "protected"
|
|
@@ -10140,34 +10292,138 @@ type PerfectionistSortClasses =
|
|
|
10140
10292
|
| "property"
|
|
10141
10293
|
| "method";
|
|
10142
10294
|
|
|
10143
|
-
|
|
10144
|
-
|
|
10145
|
-
|
|
10295
|
+
decoratorNamePattern?:
|
|
10296
|
+
| (
|
|
10297
|
+
| {
|
|
10298
|
+
pattern?: string;
|
|
10299
|
+
flags?: string;
|
|
10300
|
+
}
|
|
10301
|
+
| string
|
|
10302
|
+
)[]
|
|
10303
|
+
| (
|
|
10304
|
+
| {
|
|
10305
|
+
pattern?: string;
|
|
10306
|
+
flags?: string;
|
|
10307
|
+
}
|
|
10308
|
+
| string
|
|
10309
|
+
);
|
|
10310
|
+
|
|
10311
|
+
elementValuePattern?:
|
|
10312
|
+
| (
|
|
10313
|
+
| {
|
|
10314
|
+
pattern?: string;
|
|
10315
|
+
flags?: string;
|
|
10316
|
+
}
|
|
10317
|
+
| string
|
|
10318
|
+
)[]
|
|
10319
|
+
| (
|
|
10320
|
+
| {
|
|
10321
|
+
pattern?: string;
|
|
10322
|
+
flags?: string;
|
|
10323
|
+
}
|
|
10324
|
+
| string
|
|
10325
|
+
);
|
|
10326
|
+
|
|
10327
|
+
elementNamePattern?:
|
|
10328
|
+
| (
|
|
10329
|
+
| {
|
|
10330
|
+
pattern?: string;
|
|
10331
|
+
flags?: string;
|
|
10332
|
+
}
|
|
10333
|
+
| string
|
|
10334
|
+
)[]
|
|
10335
|
+
| (
|
|
10336
|
+
| {
|
|
10337
|
+
pattern?: string;
|
|
10338
|
+
flags?: string;
|
|
10339
|
+
}
|
|
10340
|
+
| string
|
|
10341
|
+
);
|
|
10146
10342
|
}
|
|
10147
10343
|
)[];
|
|
10148
10344
|
|
|
10345
|
+
ignoreCallbackDependenciesPatterns?:
|
|
10346
|
+
| (
|
|
10347
|
+
| {
|
|
10348
|
+
pattern?: string;
|
|
10349
|
+
flags?: string;
|
|
10350
|
+
}
|
|
10351
|
+
| string
|
|
10352
|
+
)[]
|
|
10353
|
+
| (
|
|
10354
|
+
| {
|
|
10355
|
+
pattern?: string;
|
|
10356
|
+
flags?: string;
|
|
10357
|
+
}
|
|
10358
|
+
| string
|
|
10359
|
+
);
|
|
10360
|
+
|
|
10149
10361
|
partitionByComment?:
|
|
10150
|
-
| string[]
|
|
10151
10362
|
| boolean
|
|
10152
|
-
|
|
|
10363
|
+
| (
|
|
10364
|
+
| (
|
|
10365
|
+
| {
|
|
10366
|
+
pattern?: string;
|
|
10367
|
+
flags?: string;
|
|
10368
|
+
}
|
|
10369
|
+
| string
|
|
10370
|
+
)[]
|
|
10371
|
+
| (
|
|
10372
|
+
| {
|
|
10373
|
+
pattern?: string;
|
|
10374
|
+
flags?: string;
|
|
10375
|
+
}
|
|
10376
|
+
| string
|
|
10377
|
+
)
|
|
10378
|
+
)
|
|
10153
10379
|
| {
|
|
10154
|
-
block?:
|
|
10155
|
-
|
|
10156
|
-
|
|
10380
|
+
block?:
|
|
10381
|
+
| boolean
|
|
10382
|
+
| (
|
|
10383
|
+
| (
|
|
10384
|
+
| {
|
|
10385
|
+
pattern?: string;
|
|
10386
|
+
flags?: string;
|
|
10387
|
+
}
|
|
10388
|
+
| string
|
|
10389
|
+
)[]
|
|
10390
|
+
| (
|
|
10391
|
+
| {
|
|
10392
|
+
pattern?: string;
|
|
10393
|
+
flags?: string;
|
|
10394
|
+
}
|
|
10395
|
+
| string
|
|
10396
|
+
)
|
|
10397
|
+
);
|
|
10398
|
+
line?:
|
|
10399
|
+
| boolean
|
|
10400
|
+
| (
|
|
10401
|
+
| (
|
|
10402
|
+
| {
|
|
10403
|
+
pattern?: string;
|
|
10404
|
+
flags?: string;
|
|
10405
|
+
}
|
|
10406
|
+
| string
|
|
10407
|
+
)[]
|
|
10408
|
+
| (
|
|
10409
|
+
| {
|
|
10410
|
+
pattern?: string;
|
|
10411
|
+
flags?: string;
|
|
10412
|
+
}
|
|
10413
|
+
| string
|
|
10414
|
+
)
|
|
10415
|
+
);
|
|
10157
10416
|
};
|
|
10158
10417
|
|
|
10159
10418
|
partitionByNewLine?: boolean;
|
|
10160
10419
|
|
|
10161
10420
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10162
10421
|
|
|
10163
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10164
|
-
|
|
10165
10422
|
groups?: (
|
|
10166
10423
|
| string
|
|
10167
10424
|
| string[]
|
|
10168
10425
|
| {
|
|
10169
10426
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10170
|
-
[k: string]: unknown | undefined;
|
|
10171
10427
|
}
|
|
10172
10428
|
)[];
|
|
10173
10429
|
},
|
|
@@ -10179,6 +10435,18 @@ type PerfectionistSortDecorators =
|
|
|
10179
10435
|
{
|
|
10180
10436
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10181
10437
|
|
|
10438
|
+
fallbackSort?: {
|
|
10439
|
+
order?: "asc" | "desc";
|
|
10440
|
+
|
|
10441
|
+
type?:
|
|
10442
|
+
| "alphabetical"
|
|
10443
|
+
| "natural"
|
|
10444
|
+
| "line-length"
|
|
10445
|
+
| "custom"
|
|
10446
|
+
| "unsorted";
|
|
10447
|
+
[k: string]: unknown | undefined;
|
|
10448
|
+
};
|
|
10449
|
+
|
|
10182
10450
|
ignoreCase?: boolean;
|
|
10183
10451
|
|
|
10184
10452
|
alphabet?: string;
|
|
@@ -10187,6 +10455,13 @@ type PerfectionistSortDecorators =
|
|
|
10187
10455
|
|
|
10188
10456
|
order?: "asc" | "desc";
|
|
10189
10457
|
|
|
10458
|
+
type?:
|
|
10459
|
+
| "alphabetical"
|
|
10460
|
+
| "natural"
|
|
10461
|
+
| "line-length"
|
|
10462
|
+
| "custom"
|
|
10463
|
+
| "unsorted";
|
|
10464
|
+
|
|
10190
10465
|
sortOnParameters?: boolean;
|
|
10191
10466
|
|
|
10192
10467
|
sortOnProperties?: boolean;
|
|
@@ -10198,27 +10473,71 @@ type PerfectionistSortDecorators =
|
|
|
10198
10473
|
sortOnClasses?: boolean;
|
|
10199
10474
|
|
|
10200
10475
|
partitionByComment?:
|
|
10201
|
-
| string[]
|
|
10202
10476
|
| boolean
|
|
10203
|
-
|
|
|
10477
|
+
| (
|
|
10478
|
+
| (
|
|
10479
|
+
| {
|
|
10480
|
+
pattern?: string;
|
|
10481
|
+
flags?: string;
|
|
10482
|
+
}
|
|
10483
|
+
| string
|
|
10484
|
+
)[]
|
|
10485
|
+
| (
|
|
10486
|
+
| {
|
|
10487
|
+
pattern?: string;
|
|
10488
|
+
flags?: string;
|
|
10489
|
+
}
|
|
10490
|
+
| string
|
|
10491
|
+
)
|
|
10492
|
+
)
|
|
10204
10493
|
| {
|
|
10205
|
-
block?:
|
|
10206
|
-
|
|
10207
|
-
|
|
10494
|
+
block?:
|
|
10495
|
+
| boolean
|
|
10496
|
+
| (
|
|
10497
|
+
| (
|
|
10498
|
+
| {
|
|
10499
|
+
pattern?: string;
|
|
10500
|
+
flags?: string;
|
|
10501
|
+
}
|
|
10502
|
+
| string
|
|
10503
|
+
)[]
|
|
10504
|
+
| (
|
|
10505
|
+
| {
|
|
10506
|
+
pattern?: string;
|
|
10507
|
+
flags?: string;
|
|
10508
|
+
}
|
|
10509
|
+
| string
|
|
10510
|
+
)
|
|
10511
|
+
);
|
|
10512
|
+
line?:
|
|
10513
|
+
| boolean
|
|
10514
|
+
| (
|
|
10515
|
+
| (
|
|
10516
|
+
| {
|
|
10517
|
+
pattern?: string;
|
|
10518
|
+
flags?: string;
|
|
10519
|
+
}
|
|
10520
|
+
| string
|
|
10521
|
+
)[]
|
|
10522
|
+
| (
|
|
10523
|
+
| {
|
|
10524
|
+
pattern?: string;
|
|
10525
|
+
flags?: string;
|
|
10526
|
+
}
|
|
10527
|
+
| string
|
|
10528
|
+
)
|
|
10529
|
+
);
|
|
10208
10530
|
};
|
|
10209
10531
|
|
|
10210
10532
|
customGroups?: {
|
|
10211
10533
|
[k: string]: (string | string[]) | undefined;
|
|
10212
10534
|
};
|
|
10213
10535
|
|
|
10214
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10215
|
-
|
|
10216
10536
|
groups?: (
|
|
10217
10537
|
| string
|
|
10218
10538
|
| string[]
|
|
10219
10539
|
| {
|
|
10220
10540
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10221
|
-
[k: string]: unknown | undefined;
|
|
10222
10541
|
}
|
|
10223
10542
|
)[];
|
|
10224
10543
|
},
|
|
@@ -10230,6 +10549,18 @@ type PerfectionistSortEnums =
|
|
|
10230
10549
|
{
|
|
10231
10550
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10232
10551
|
|
|
10552
|
+
fallbackSort?: {
|
|
10553
|
+
order?: "asc" | "desc";
|
|
10554
|
+
|
|
10555
|
+
type?:
|
|
10556
|
+
| "alphabetical"
|
|
10557
|
+
| "natural"
|
|
10558
|
+
| "line-length"
|
|
10559
|
+
| "custom"
|
|
10560
|
+
| "unsorted";
|
|
10561
|
+
[k: string]: unknown | undefined;
|
|
10562
|
+
};
|
|
10563
|
+
|
|
10233
10564
|
ignoreCase?: boolean;
|
|
10234
10565
|
|
|
10235
10566
|
alphabet?: string;
|
|
@@ -10238,23 +10569,182 @@ type PerfectionistSortEnums =
|
|
|
10238
10569
|
|
|
10239
10570
|
order?: "asc" | "desc";
|
|
10240
10571
|
|
|
10572
|
+
type?:
|
|
10573
|
+
| "alphabetical"
|
|
10574
|
+
| "natural"
|
|
10575
|
+
| "line-length"
|
|
10576
|
+
| "custom"
|
|
10577
|
+
| "unsorted";
|
|
10578
|
+
|
|
10241
10579
|
forceNumericSort?: boolean;
|
|
10580
|
+
customGroups?:
|
|
10581
|
+
| {
|
|
10582
|
+
[k: string]: (string | string[]) | undefined;
|
|
10583
|
+
}
|
|
10584
|
+
| (
|
|
10585
|
+
| {
|
|
10586
|
+
groupName?: string;
|
|
10587
|
+
|
|
10588
|
+
type?:
|
|
10589
|
+
| "alphabetical"
|
|
10590
|
+
| "line-length"
|
|
10591
|
+
| "natural"
|
|
10592
|
+
| "unsorted";
|
|
10593
|
+
|
|
10594
|
+
order?: "desc" | "asc";
|
|
10595
|
+
|
|
10596
|
+
newlinesInside?: "always" | "never";
|
|
10597
|
+
anyOf?: {
|
|
10598
|
+
elementValuePattern?:
|
|
10599
|
+
| (
|
|
10600
|
+
| {
|
|
10601
|
+
pattern?: string;
|
|
10602
|
+
flags?: string;
|
|
10603
|
+
}
|
|
10604
|
+
| string
|
|
10605
|
+
)[]
|
|
10606
|
+
| (
|
|
10607
|
+
| {
|
|
10608
|
+
pattern?: string;
|
|
10609
|
+
flags?: string;
|
|
10610
|
+
}
|
|
10611
|
+
| string
|
|
10612
|
+
);
|
|
10613
|
+
|
|
10614
|
+
elementNamePattern?:
|
|
10615
|
+
| (
|
|
10616
|
+
| {
|
|
10617
|
+
pattern?: string;
|
|
10618
|
+
flags?: string;
|
|
10619
|
+
}
|
|
10620
|
+
| string
|
|
10621
|
+
)[]
|
|
10622
|
+
| (
|
|
10623
|
+
| {
|
|
10624
|
+
pattern?: string;
|
|
10625
|
+
flags?: string;
|
|
10626
|
+
}
|
|
10627
|
+
| string
|
|
10628
|
+
);
|
|
10629
|
+
}[];
|
|
10630
|
+
}
|
|
10631
|
+
| {
|
|
10632
|
+
groupName?: string;
|
|
10633
|
+
|
|
10634
|
+
type?:
|
|
10635
|
+
| "alphabetical"
|
|
10636
|
+
| "line-length"
|
|
10637
|
+
| "natural"
|
|
10638
|
+
| "unsorted";
|
|
10639
|
+
|
|
10640
|
+
order?: "desc" | "asc";
|
|
10641
|
+
|
|
10642
|
+
newlinesInside?: "always" | "never";
|
|
10643
|
+
|
|
10644
|
+
elementValuePattern?:
|
|
10645
|
+
| (
|
|
10646
|
+
| {
|
|
10647
|
+
pattern?: string;
|
|
10648
|
+
flags?: string;
|
|
10649
|
+
}
|
|
10650
|
+
| string
|
|
10651
|
+
)[]
|
|
10652
|
+
| (
|
|
10653
|
+
| {
|
|
10654
|
+
pattern?: string;
|
|
10655
|
+
flags?: string;
|
|
10656
|
+
}
|
|
10657
|
+
| string
|
|
10658
|
+
);
|
|
10659
|
+
|
|
10660
|
+
elementNamePattern?:
|
|
10661
|
+
| (
|
|
10662
|
+
| {
|
|
10663
|
+
pattern?: string;
|
|
10664
|
+
flags?: string;
|
|
10665
|
+
}
|
|
10666
|
+
| string
|
|
10667
|
+
)[]
|
|
10668
|
+
| (
|
|
10669
|
+
| {
|
|
10670
|
+
pattern?: string;
|
|
10671
|
+
flags?: string;
|
|
10672
|
+
}
|
|
10673
|
+
| string
|
|
10674
|
+
);
|
|
10675
|
+
}
|
|
10676
|
+
)[];
|
|
10242
10677
|
|
|
10243
10678
|
sortByValue?: boolean;
|
|
10244
10679
|
|
|
10245
10680
|
partitionByComment?:
|
|
10246
|
-
| string[]
|
|
10247
10681
|
| boolean
|
|
10248
|
-
|
|
|
10682
|
+
| (
|
|
10683
|
+
| (
|
|
10684
|
+
| {
|
|
10685
|
+
pattern?: string;
|
|
10686
|
+
flags?: string;
|
|
10687
|
+
}
|
|
10688
|
+
| string
|
|
10689
|
+
)[]
|
|
10690
|
+
| (
|
|
10691
|
+
| {
|
|
10692
|
+
pattern?: string;
|
|
10693
|
+
flags?: string;
|
|
10694
|
+
}
|
|
10695
|
+
| string
|
|
10696
|
+
)
|
|
10697
|
+
)
|
|
10249
10698
|
| {
|
|
10250
|
-
block?:
|
|
10251
|
-
|
|
10252
|
-
|
|
10699
|
+
block?:
|
|
10700
|
+
| boolean
|
|
10701
|
+
| (
|
|
10702
|
+
| (
|
|
10703
|
+
| {
|
|
10704
|
+
pattern?: string;
|
|
10705
|
+
flags?: string;
|
|
10706
|
+
}
|
|
10707
|
+
| string
|
|
10708
|
+
)[]
|
|
10709
|
+
| (
|
|
10710
|
+
| {
|
|
10711
|
+
pattern?: string;
|
|
10712
|
+
flags?: string;
|
|
10713
|
+
}
|
|
10714
|
+
| string
|
|
10715
|
+
)
|
|
10716
|
+
);
|
|
10717
|
+
line?:
|
|
10718
|
+
| boolean
|
|
10719
|
+
| (
|
|
10720
|
+
| (
|
|
10721
|
+
| {
|
|
10722
|
+
pattern?: string;
|
|
10723
|
+
flags?: string;
|
|
10724
|
+
}
|
|
10725
|
+
| string
|
|
10726
|
+
)[]
|
|
10727
|
+
| (
|
|
10728
|
+
| {
|
|
10729
|
+
pattern?: string;
|
|
10730
|
+
flags?: string;
|
|
10731
|
+
}
|
|
10732
|
+
| string
|
|
10733
|
+
)
|
|
10734
|
+
);
|
|
10253
10735
|
};
|
|
10254
10736
|
|
|
10255
10737
|
partitionByNewLine?: boolean;
|
|
10256
10738
|
|
|
10257
|
-
|
|
10739
|
+
newlinesBetween?: "ignore" | "always" | "never";
|
|
10740
|
+
|
|
10741
|
+
groups?: (
|
|
10742
|
+
| string
|
|
10743
|
+
| string[]
|
|
10744
|
+
| {
|
|
10745
|
+
newlinesBetween?: "ignore" | "always" | "never";
|
|
10746
|
+
}
|
|
10747
|
+
)[];
|
|
10258
10748
|
},
|
|
10259
10749
|
];
|
|
10260
10750
|
// ----- perfectionist/sort-exports -----
|
|
@@ -10264,6 +10754,18 @@ type PerfectionistSortExports =
|
|
|
10264
10754
|
{
|
|
10265
10755
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10266
10756
|
|
|
10757
|
+
fallbackSort?: {
|
|
10758
|
+
order?: "asc" | "desc";
|
|
10759
|
+
|
|
10760
|
+
type?:
|
|
10761
|
+
| "alphabetical"
|
|
10762
|
+
| "natural"
|
|
10763
|
+
| "line-length"
|
|
10764
|
+
| "custom"
|
|
10765
|
+
| "unsorted";
|
|
10766
|
+
[k: string]: unknown | undefined;
|
|
10767
|
+
};
|
|
10768
|
+
|
|
10267
10769
|
ignoreCase?: boolean;
|
|
10268
10770
|
|
|
10269
10771
|
alphabet?: string;
|
|
@@ -10272,21 +10774,73 @@ type PerfectionistSortExports =
|
|
|
10272
10774
|
|
|
10273
10775
|
order?: "asc" | "desc";
|
|
10274
10776
|
|
|
10777
|
+
type?:
|
|
10778
|
+
| "alphabetical"
|
|
10779
|
+
| "natural"
|
|
10780
|
+
| "line-length"
|
|
10781
|
+
| "custom"
|
|
10782
|
+
| "unsorted";
|
|
10783
|
+
|
|
10275
10784
|
groupKind?: "mixed" | "values-first" | "types-first";
|
|
10276
10785
|
|
|
10277
10786
|
partitionByComment?:
|
|
10278
|
-
| string[]
|
|
10279
10787
|
| boolean
|
|
10280
|
-
|
|
|
10788
|
+
| (
|
|
10789
|
+
| (
|
|
10790
|
+
| {
|
|
10791
|
+
pattern?: string;
|
|
10792
|
+
flags?: string;
|
|
10793
|
+
}
|
|
10794
|
+
| string
|
|
10795
|
+
)[]
|
|
10796
|
+
| (
|
|
10797
|
+
| {
|
|
10798
|
+
pattern?: string;
|
|
10799
|
+
flags?: string;
|
|
10800
|
+
}
|
|
10801
|
+
| string
|
|
10802
|
+
)
|
|
10803
|
+
)
|
|
10281
10804
|
| {
|
|
10282
|
-
block?:
|
|
10283
|
-
|
|
10284
|
-
|
|
10805
|
+
block?:
|
|
10806
|
+
| boolean
|
|
10807
|
+
| (
|
|
10808
|
+
| (
|
|
10809
|
+
| {
|
|
10810
|
+
pattern?: string;
|
|
10811
|
+
flags?: string;
|
|
10812
|
+
}
|
|
10813
|
+
| string
|
|
10814
|
+
)[]
|
|
10815
|
+
| (
|
|
10816
|
+
| {
|
|
10817
|
+
pattern?: string;
|
|
10818
|
+
flags?: string;
|
|
10819
|
+
}
|
|
10820
|
+
| string
|
|
10821
|
+
)
|
|
10822
|
+
);
|
|
10823
|
+
line?:
|
|
10824
|
+
| boolean
|
|
10825
|
+
| (
|
|
10826
|
+
| (
|
|
10827
|
+
| {
|
|
10828
|
+
pattern?: string;
|
|
10829
|
+
flags?: string;
|
|
10830
|
+
}
|
|
10831
|
+
| string
|
|
10832
|
+
)[]
|
|
10833
|
+
| (
|
|
10834
|
+
| {
|
|
10835
|
+
pattern?: string;
|
|
10836
|
+
flags?: string;
|
|
10837
|
+
}
|
|
10838
|
+
| string
|
|
10839
|
+
)
|
|
10840
|
+
);
|
|
10285
10841
|
};
|
|
10286
10842
|
|
|
10287
10843
|
partitionByNewLine?: boolean;
|
|
10288
|
-
|
|
10289
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10290
10844
|
},
|
|
10291
10845
|
];
|
|
10292
10846
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
@@ -10296,6 +10850,18 @@ type PerfectionistSortHeritageClauses =
|
|
|
10296
10850
|
{
|
|
10297
10851
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10298
10852
|
|
|
10853
|
+
fallbackSort?: {
|
|
10854
|
+
order?: "asc" | "desc";
|
|
10855
|
+
|
|
10856
|
+
type?:
|
|
10857
|
+
| "alphabetical"
|
|
10858
|
+
| "natural"
|
|
10859
|
+
| "line-length"
|
|
10860
|
+
| "custom"
|
|
10861
|
+
| "unsorted";
|
|
10862
|
+
[k: string]: unknown | undefined;
|
|
10863
|
+
};
|
|
10864
|
+
|
|
10299
10865
|
ignoreCase?: boolean;
|
|
10300
10866
|
|
|
10301
10867
|
alphabet?: string;
|
|
@@ -10304,18 +10870,22 @@ type PerfectionistSortHeritageClauses =
|
|
|
10304
10870
|
|
|
10305
10871
|
order?: "asc" | "desc";
|
|
10306
10872
|
|
|
10873
|
+
type?:
|
|
10874
|
+
| "alphabetical"
|
|
10875
|
+
| "natural"
|
|
10876
|
+
| "line-length"
|
|
10877
|
+
| "custom"
|
|
10878
|
+
| "unsorted";
|
|
10879
|
+
|
|
10307
10880
|
customGroups?: {
|
|
10308
10881
|
[k: string]: (string | string[]) | undefined;
|
|
10309
10882
|
};
|
|
10310
10883
|
|
|
10311
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10312
|
-
|
|
10313
10884
|
groups?: (
|
|
10314
10885
|
| string
|
|
10315
10886
|
| string[]
|
|
10316
10887
|
| {
|
|
10317
10888
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10318
|
-
[k: string]: unknown | undefined;
|
|
10319
10889
|
}
|
|
10320
10890
|
)[];
|
|
10321
10891
|
},
|
|
@@ -10326,6 +10896,13 @@ type _PerfectionistSortImportsSortImports =
|
|
|
10326
10896
|
_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
10327
10897
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10328
10898
|
|
|
10899
|
+
fallbackSort?: {
|
|
10900
|
+
order?: "asc" | "desc";
|
|
10901
|
+
|
|
10902
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
10903
|
+
[k: string]: unknown | undefined;
|
|
10904
|
+
};
|
|
10905
|
+
|
|
10329
10906
|
ignoreCase?: boolean;
|
|
10330
10907
|
|
|
10331
10908
|
alphabet?: string;
|
|
@@ -10334,6 +10911,8 @@ type _PerfectionistSortImportsSortImports =
|
|
|
10334
10911
|
|
|
10335
10912
|
order?: "asc" | "desc";
|
|
10336
10913
|
|
|
10914
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
10915
|
+
|
|
10337
10916
|
customGroups?: {
|
|
10338
10917
|
value?: {
|
|
10339
10918
|
[k: string]: unknown | undefined;
|
|
@@ -10344,8 +10923,6 @@ type _PerfectionistSortImportsSortImports =
|
|
|
10344
10923
|
};
|
|
10345
10924
|
};
|
|
10346
10925
|
|
|
10347
|
-
internalPattern?: string[];
|
|
10348
|
-
|
|
10349
10926
|
maxLineLength?: number;
|
|
10350
10927
|
|
|
10351
10928
|
sortSideEffects?: boolean;
|
|
@@ -10355,27 +10932,87 @@ type _PerfectionistSortImportsSortImports =
|
|
|
10355
10932
|
tsconfigRootDir?: string;
|
|
10356
10933
|
|
|
10357
10934
|
partitionByComment?:
|
|
10358
|
-
| string[]
|
|
10359
10935
|
| boolean
|
|
10360
|
-
|
|
|
10936
|
+
| (
|
|
10937
|
+
| (
|
|
10938
|
+
| {
|
|
10939
|
+
pattern?: string;
|
|
10940
|
+
flags?: string;
|
|
10941
|
+
}
|
|
10942
|
+
| string
|
|
10943
|
+
)[]
|
|
10944
|
+
| (
|
|
10945
|
+
| {
|
|
10946
|
+
pattern?: string;
|
|
10947
|
+
flags?: string;
|
|
10948
|
+
}
|
|
10949
|
+
| string
|
|
10950
|
+
)
|
|
10951
|
+
)
|
|
10361
10952
|
| {
|
|
10362
|
-
block?:
|
|
10363
|
-
|
|
10364
|
-
|
|
10953
|
+
block?:
|
|
10954
|
+
| boolean
|
|
10955
|
+
| (
|
|
10956
|
+
| (
|
|
10957
|
+
| {
|
|
10958
|
+
pattern?: string;
|
|
10959
|
+
flags?: string;
|
|
10960
|
+
}
|
|
10961
|
+
| string
|
|
10962
|
+
)[]
|
|
10963
|
+
| (
|
|
10964
|
+
| {
|
|
10965
|
+
pattern?: string;
|
|
10966
|
+
flags?: string;
|
|
10967
|
+
}
|
|
10968
|
+
| string
|
|
10969
|
+
)
|
|
10970
|
+
);
|
|
10971
|
+
line?:
|
|
10972
|
+
| boolean
|
|
10973
|
+
| (
|
|
10974
|
+
| (
|
|
10975
|
+
| {
|
|
10976
|
+
pattern?: string;
|
|
10977
|
+
flags?: string;
|
|
10978
|
+
}
|
|
10979
|
+
| string
|
|
10980
|
+
)[]
|
|
10981
|
+
| (
|
|
10982
|
+
| {
|
|
10983
|
+
pattern?: string;
|
|
10984
|
+
flags?: string;
|
|
10985
|
+
}
|
|
10986
|
+
| string
|
|
10987
|
+
)
|
|
10988
|
+
);
|
|
10365
10989
|
};
|
|
10366
10990
|
|
|
10367
10991
|
partitionByNewLine?: boolean;
|
|
10368
10992
|
|
|
10369
10993
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10370
10994
|
|
|
10371
|
-
|
|
10995
|
+
internalPattern?:
|
|
10996
|
+
| (
|
|
10997
|
+
| {
|
|
10998
|
+
pattern?: string;
|
|
10999
|
+
flags?: string;
|
|
11000
|
+
}
|
|
11001
|
+
| string
|
|
11002
|
+
)[]
|
|
11003
|
+
| (
|
|
11004
|
+
| {
|
|
11005
|
+
pattern?: string;
|
|
11006
|
+
flags?: string;
|
|
11007
|
+
}
|
|
11008
|
+
| string
|
|
11009
|
+
);
|
|
10372
11010
|
|
|
10373
11011
|
groups?: (
|
|
10374
11012
|
| string
|
|
10375
11013
|
| string[]
|
|
10376
11014
|
| {
|
|
10377
11015
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10378
|
-
[k: string]: unknown | undefined;
|
|
10379
11016
|
}
|
|
10380
11017
|
)[];
|
|
10381
11018
|
};
|
|
@@ -10392,6 +11029,13 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
10392
11029
|
type PerfectionistSortInterfaces = {
|
|
10393
11030
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10394
11031
|
|
|
11032
|
+
fallbackSort?: {
|
|
11033
|
+
order?: "asc" | "desc";
|
|
11034
|
+
|
|
11035
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
11036
|
+
[k: string]: unknown | undefined;
|
|
11037
|
+
};
|
|
11038
|
+
|
|
10395
11039
|
ignoreCase?: boolean;
|
|
10396
11040
|
|
|
10397
11041
|
alphabet?: string;
|
|
@@ -10400,11 +11044,7 @@ type PerfectionistSortInterfaces = {
|
|
|
10400
11044
|
|
|
10401
11045
|
order?: "asc" | "desc";
|
|
10402
11046
|
|
|
10403
|
-
|
|
10404
|
-
useConfigurationIf?: {
|
|
10405
|
-
allNamesMatchPattern?: string;
|
|
10406
|
-
declarationMatchesPattern?: string;
|
|
10407
|
-
};
|
|
11047
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
10408
11048
|
customGroups?:
|
|
10409
11049
|
| {
|
|
10410
11050
|
[k: string]: (string | string[]) | undefined;
|
|
@@ -10428,7 +11068,21 @@ type PerfectionistSortInterfaces = {
|
|
|
10428
11068
|
| "multiline"
|
|
10429
11069
|
| "property";
|
|
10430
11070
|
|
|
10431
|
-
elementNamePattern?:
|
|
11071
|
+
elementNamePattern?:
|
|
11072
|
+
| (
|
|
11073
|
+
| {
|
|
11074
|
+
pattern?: string;
|
|
11075
|
+
flags?: string;
|
|
11076
|
+
}
|
|
11077
|
+
| string
|
|
11078
|
+
)[]
|
|
11079
|
+
| (
|
|
11080
|
+
| {
|
|
11081
|
+
pattern?: string;
|
|
11082
|
+
flags?: string;
|
|
11083
|
+
}
|
|
11084
|
+
| string
|
|
11085
|
+
);
|
|
10432
11086
|
}[];
|
|
10433
11087
|
}
|
|
10434
11088
|
| {
|
|
@@ -10449,34 +11103,141 @@ type PerfectionistSortInterfaces = {
|
|
|
10449
11103
|
| "multiline"
|
|
10450
11104
|
| "property";
|
|
10451
11105
|
|
|
10452
|
-
elementNamePattern?:
|
|
11106
|
+
elementNamePattern?:
|
|
11107
|
+
| (
|
|
11108
|
+
| {
|
|
11109
|
+
pattern?: string;
|
|
11110
|
+
flags?: string;
|
|
11111
|
+
}
|
|
11112
|
+
| string
|
|
11113
|
+
)[]
|
|
11114
|
+
| (
|
|
11115
|
+
| {
|
|
11116
|
+
pattern?: string;
|
|
11117
|
+
flags?: string;
|
|
11118
|
+
}
|
|
11119
|
+
| string
|
|
11120
|
+
);
|
|
10453
11121
|
}
|
|
10454
11122
|
)[];
|
|
11123
|
+
useConfigurationIf?: {
|
|
11124
|
+
allNamesMatchPattern?:
|
|
11125
|
+
| (
|
|
11126
|
+
| {
|
|
11127
|
+
pattern?: string;
|
|
11128
|
+
flags?: string;
|
|
11129
|
+
}
|
|
11130
|
+
| string
|
|
11131
|
+
)[]
|
|
11132
|
+
| (
|
|
11133
|
+
| {
|
|
11134
|
+
pattern?: string;
|
|
11135
|
+
flags?: string;
|
|
11136
|
+
}
|
|
11137
|
+
| string
|
|
11138
|
+
);
|
|
10455
11139
|
|
|
10456
|
-
|
|
11140
|
+
declarationMatchesPattern?:
|
|
11141
|
+
| (
|
|
11142
|
+
| {
|
|
11143
|
+
pattern?: string;
|
|
11144
|
+
flags?: string;
|
|
11145
|
+
}
|
|
11146
|
+
| string
|
|
11147
|
+
)[]
|
|
11148
|
+
| (
|
|
11149
|
+
| {
|
|
11150
|
+
pattern?: string;
|
|
11151
|
+
flags?: string;
|
|
11152
|
+
}
|
|
11153
|
+
| string
|
|
11154
|
+
);
|
|
11155
|
+
};
|
|
10457
11156
|
|
|
10458
|
-
|
|
11157
|
+
groupKind?: "mixed" | "required-first" | "optional-first";
|
|
10459
11158
|
|
|
10460
11159
|
partitionByComment?:
|
|
10461
|
-
| string[]
|
|
10462
11160
|
| boolean
|
|
10463
|
-
|
|
|
11161
|
+
| (
|
|
11162
|
+
| (
|
|
11163
|
+
| {
|
|
11164
|
+
pattern?: string;
|
|
11165
|
+
flags?: string;
|
|
11166
|
+
}
|
|
11167
|
+
| string
|
|
11168
|
+
)[]
|
|
11169
|
+
| (
|
|
11170
|
+
| {
|
|
11171
|
+
pattern?: string;
|
|
11172
|
+
flags?: string;
|
|
11173
|
+
}
|
|
11174
|
+
| string
|
|
11175
|
+
)
|
|
11176
|
+
)
|
|
10464
11177
|
| {
|
|
10465
|
-
block?:
|
|
10466
|
-
|
|
10467
|
-
|
|
11178
|
+
block?:
|
|
11179
|
+
| boolean
|
|
11180
|
+
| (
|
|
11181
|
+
| (
|
|
11182
|
+
| {
|
|
11183
|
+
pattern?: string;
|
|
11184
|
+
flags?: string;
|
|
11185
|
+
}
|
|
11186
|
+
| string
|
|
11187
|
+
)[]
|
|
11188
|
+
| (
|
|
11189
|
+
| {
|
|
11190
|
+
pattern?: string;
|
|
11191
|
+
flags?: string;
|
|
11192
|
+
}
|
|
11193
|
+
| string
|
|
11194
|
+
)
|
|
11195
|
+
);
|
|
11196
|
+
line?:
|
|
11197
|
+
| boolean
|
|
11198
|
+
| (
|
|
11199
|
+
| (
|
|
11200
|
+
| {
|
|
11201
|
+
pattern?: string;
|
|
11202
|
+
flags?: string;
|
|
11203
|
+
}
|
|
11204
|
+
| string
|
|
11205
|
+
)[]
|
|
11206
|
+
| (
|
|
11207
|
+
| {
|
|
11208
|
+
pattern?: string;
|
|
11209
|
+
flags?: string;
|
|
11210
|
+
}
|
|
11211
|
+
| string
|
|
11212
|
+
)
|
|
11213
|
+
);
|
|
10468
11214
|
};
|
|
10469
11215
|
|
|
10470
11216
|
partitionByNewLine?: boolean;
|
|
10471
11217
|
|
|
10472
11218
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10473
11219
|
|
|
11220
|
+
ignorePattern?:
|
|
11221
|
+
| (
|
|
11222
|
+
| {
|
|
11223
|
+
pattern?: string;
|
|
11224
|
+
flags?: string;
|
|
11225
|
+
}
|
|
11226
|
+
| string
|
|
11227
|
+
)[]
|
|
11228
|
+
| (
|
|
11229
|
+
| {
|
|
11230
|
+
pattern?: string;
|
|
11231
|
+
flags?: string;
|
|
11232
|
+
}
|
|
11233
|
+
| string
|
|
11234
|
+
);
|
|
11235
|
+
|
|
10474
11236
|
groups?: (
|
|
10475
11237
|
| string
|
|
10476
11238
|
| string[]
|
|
10477
11239
|
| {
|
|
10478
11240
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10479
|
-
[k: string]: unknown | undefined;
|
|
10480
11241
|
}
|
|
10481
11242
|
)[];
|
|
10482
11243
|
}[];
|
|
@@ -10487,6 +11248,18 @@ type PerfectionistSortIntersectionTypes =
|
|
|
10487
11248
|
{
|
|
10488
11249
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10489
11250
|
|
|
11251
|
+
fallbackSort?: {
|
|
11252
|
+
order?: "asc" | "desc";
|
|
11253
|
+
|
|
11254
|
+
type?:
|
|
11255
|
+
| "alphabetical"
|
|
11256
|
+
| "natural"
|
|
11257
|
+
| "line-length"
|
|
11258
|
+
| "custom"
|
|
11259
|
+
| "unsorted";
|
|
11260
|
+
[k: string]: unknown | undefined;
|
|
11261
|
+
};
|
|
11262
|
+
|
|
10490
11263
|
ignoreCase?: boolean;
|
|
10491
11264
|
|
|
10492
11265
|
alphabet?: string;
|
|
@@ -10495,73 +11268,180 @@ type PerfectionistSortIntersectionTypes =
|
|
|
10495
11268
|
|
|
10496
11269
|
order?: "asc" | "desc";
|
|
10497
11270
|
|
|
11271
|
+
type?:
|
|
11272
|
+
| "alphabetical"
|
|
11273
|
+
| "natural"
|
|
11274
|
+
| "line-length"
|
|
11275
|
+
| "custom"
|
|
11276
|
+
| "unsorted";
|
|
11277
|
+
|
|
10498
11278
|
partitionByComment?:
|
|
10499
|
-
| string[]
|
|
10500
11279
|
| boolean
|
|
10501
|
-
|
|
|
11280
|
+
| (
|
|
11281
|
+
| (
|
|
11282
|
+
| {
|
|
11283
|
+
pattern?: string;
|
|
11284
|
+
flags?: string;
|
|
11285
|
+
}
|
|
11286
|
+
| string
|
|
11287
|
+
)[]
|
|
11288
|
+
| (
|
|
11289
|
+
| {
|
|
11290
|
+
pattern?: string;
|
|
11291
|
+
flags?: string;
|
|
11292
|
+
}
|
|
11293
|
+
| string
|
|
11294
|
+
)
|
|
11295
|
+
)
|
|
10502
11296
|
| {
|
|
10503
|
-
block?:
|
|
10504
|
-
|
|
10505
|
-
|
|
11297
|
+
block?:
|
|
11298
|
+
| boolean
|
|
11299
|
+
| (
|
|
11300
|
+
| (
|
|
11301
|
+
| {
|
|
11302
|
+
pattern?: string;
|
|
11303
|
+
flags?: string;
|
|
11304
|
+
}
|
|
11305
|
+
| string
|
|
11306
|
+
)[]
|
|
11307
|
+
| (
|
|
11308
|
+
| {
|
|
11309
|
+
pattern?: string;
|
|
11310
|
+
flags?: string;
|
|
11311
|
+
}
|
|
11312
|
+
| string
|
|
11313
|
+
)
|
|
11314
|
+
);
|
|
11315
|
+
line?:
|
|
11316
|
+
| boolean
|
|
11317
|
+
| (
|
|
11318
|
+
| (
|
|
11319
|
+
| {
|
|
11320
|
+
pattern?: string;
|
|
11321
|
+
flags?: string;
|
|
11322
|
+
}
|
|
11323
|
+
| string
|
|
11324
|
+
)[]
|
|
11325
|
+
| (
|
|
11326
|
+
| {
|
|
11327
|
+
pattern?: string;
|
|
11328
|
+
flags?: string;
|
|
11329
|
+
}
|
|
11330
|
+
| string
|
|
11331
|
+
)
|
|
11332
|
+
);
|
|
10506
11333
|
};
|
|
10507
11334
|
|
|
10508
11335
|
partitionByNewLine?: boolean;
|
|
10509
11336
|
|
|
10510
11337
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10511
11338
|
|
|
10512
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10513
|
-
|
|
10514
11339
|
groups?: (
|
|
10515
11340
|
| string
|
|
10516
11341
|
| string[]
|
|
10517
11342
|
| {
|
|
10518
11343
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10519
|
-
[k: string]: unknown | undefined;
|
|
10520
11344
|
}
|
|
10521
11345
|
)[];
|
|
10522
11346
|
},
|
|
10523
11347
|
];
|
|
10524
11348
|
// ----- perfectionist/sort-jsx-props -----
|
|
10525
|
-
type PerfectionistSortJsxProps =
|
|
10526
|
-
|
|
|
10527
|
-
| [
|
|
10528
|
-
{
|
|
10529
|
-
specialCharacters?: "remove" | "trim" | "keep";
|
|
10530
|
-
|
|
10531
|
-
ignoreCase?: boolean;
|
|
10532
|
-
|
|
10533
|
-
alphabet?: string;
|
|
11349
|
+
type PerfectionistSortJsxProps = {
|
|
11350
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10534
11351
|
|
|
10535
|
-
|
|
11352
|
+
fallbackSort?: {
|
|
11353
|
+
order?: "asc" | "desc";
|
|
10536
11354
|
|
|
10537
|
-
|
|
11355
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
11356
|
+
[k: string]: unknown | undefined;
|
|
11357
|
+
};
|
|
10538
11358
|
|
|
10539
|
-
|
|
11359
|
+
ignoreCase?: boolean;
|
|
10540
11360
|
|
|
10541
|
-
|
|
11361
|
+
alphabet?: string;
|
|
10542
11362
|
|
|
10543
|
-
|
|
11363
|
+
locales?: string | string[];
|
|
10544
11364
|
|
|
10545
|
-
|
|
10546
|
-
[k: string]: (string | string[]) | undefined;
|
|
10547
|
-
};
|
|
11365
|
+
order?: "asc" | "desc";
|
|
10548
11366
|
|
|
10549
|
-
|
|
11367
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
11368
|
+
useConfigurationIf?: {
|
|
11369
|
+
allNamesMatchPattern?:
|
|
11370
|
+
| (
|
|
11371
|
+
| {
|
|
11372
|
+
pattern?: string;
|
|
11373
|
+
flags?: string;
|
|
11374
|
+
}
|
|
11375
|
+
| string
|
|
11376
|
+
)[]
|
|
11377
|
+
| (
|
|
11378
|
+
| {
|
|
11379
|
+
pattern?: string;
|
|
11380
|
+
flags?: string;
|
|
11381
|
+
}
|
|
11382
|
+
| string
|
|
11383
|
+
);
|
|
10550
11384
|
|
|
10551
|
-
|
|
11385
|
+
tagMatchesPattern?:
|
|
11386
|
+
| (
|
|
11387
|
+
| {
|
|
11388
|
+
pattern?: string;
|
|
11389
|
+
flags?: string;
|
|
11390
|
+
}
|
|
10552
11391
|
| string
|
|
10553
|
-
|
|
11392
|
+
)[]
|
|
11393
|
+
| (
|
|
10554
11394
|
| {
|
|
10555
|
-
|
|
10556
|
-
|
|
11395
|
+
pattern?: string;
|
|
11396
|
+
flags?: string;
|
|
10557
11397
|
}
|
|
10558
|
-
|
|
10559
|
-
|
|
10560
|
-
|
|
11398
|
+
| string
|
|
11399
|
+
);
|
|
11400
|
+
};
|
|
11401
|
+
|
|
11402
|
+
partitionByNewLine?: boolean;
|
|
11403
|
+
|
|
11404
|
+
newlinesBetween?: "ignore" | "always" | "never";
|
|
11405
|
+
|
|
11406
|
+
customGroups?: {
|
|
11407
|
+
[k: string]: (string | string[]) | undefined;
|
|
11408
|
+
};
|
|
11409
|
+
|
|
11410
|
+
ignorePattern?:
|
|
11411
|
+
| (
|
|
11412
|
+
| {
|
|
11413
|
+
pattern?: string;
|
|
11414
|
+
flags?: string;
|
|
11415
|
+
}
|
|
11416
|
+
| string
|
|
11417
|
+
)[]
|
|
11418
|
+
| (
|
|
11419
|
+
| {
|
|
11420
|
+
pattern?: string;
|
|
11421
|
+
flags?: string;
|
|
11422
|
+
}
|
|
11423
|
+
| string
|
|
11424
|
+
);
|
|
11425
|
+
|
|
11426
|
+
groups?: (
|
|
11427
|
+
| string
|
|
11428
|
+
| string[]
|
|
11429
|
+
| {
|
|
11430
|
+
newlinesBetween?: "ignore" | "always" | "never";
|
|
11431
|
+
}
|
|
11432
|
+
)[];
|
|
11433
|
+
}[];
|
|
10561
11434
|
// ----- perfectionist/sort-maps -----
|
|
10562
11435
|
type PerfectionistSortMaps = {
|
|
10563
11436
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10564
11437
|
|
|
11438
|
+
fallbackSort?: {
|
|
11439
|
+
order?: "asc" | "desc";
|
|
11440
|
+
|
|
11441
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
11442
|
+
[k: string]: unknown | undefined;
|
|
11443
|
+
};
|
|
11444
|
+
|
|
10565
11445
|
ignoreCase?: boolean;
|
|
10566
11446
|
|
|
10567
11447
|
alphabet?: string;
|
|
@@ -10570,6 +11450,8 @@ type PerfectionistSortMaps = {
|
|
|
10570
11450
|
|
|
10571
11451
|
order?: "asc" | "desc";
|
|
10572
11452
|
|
|
11453
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
11454
|
+
|
|
10573
11455
|
customGroups?: (
|
|
10574
11456
|
| {
|
|
10575
11457
|
groupName?: string;
|
|
@@ -10580,7 +11462,21 @@ type PerfectionistSortMaps = {
|
|
|
10580
11462
|
|
|
10581
11463
|
newlinesInside?: "always" | "never";
|
|
10582
11464
|
anyOf?: {
|
|
10583
|
-
elementNamePattern?:
|
|
11465
|
+
elementNamePattern?:
|
|
11466
|
+
| (
|
|
11467
|
+
| {
|
|
11468
|
+
pattern?: string;
|
|
11469
|
+
flags?: string;
|
|
11470
|
+
}
|
|
11471
|
+
| string
|
|
11472
|
+
)[]
|
|
11473
|
+
| (
|
|
11474
|
+
| {
|
|
11475
|
+
pattern?: string;
|
|
11476
|
+
flags?: string;
|
|
11477
|
+
}
|
|
11478
|
+
| string
|
|
11479
|
+
);
|
|
10584
11480
|
}[];
|
|
10585
11481
|
}
|
|
10586
11482
|
| {
|
|
@@ -10592,35 +11488,107 @@ type PerfectionistSortMaps = {
|
|
|
10592
11488
|
|
|
10593
11489
|
newlinesInside?: "always" | "never";
|
|
10594
11490
|
|
|
10595
|
-
elementNamePattern?:
|
|
11491
|
+
elementNamePattern?:
|
|
11492
|
+
| (
|
|
11493
|
+
| {
|
|
11494
|
+
pattern?: string;
|
|
11495
|
+
flags?: string;
|
|
11496
|
+
}
|
|
11497
|
+
| string
|
|
11498
|
+
)[]
|
|
11499
|
+
| (
|
|
11500
|
+
| {
|
|
11501
|
+
pattern?: string;
|
|
11502
|
+
flags?: string;
|
|
11503
|
+
}
|
|
11504
|
+
| string
|
|
11505
|
+
);
|
|
10596
11506
|
}
|
|
10597
11507
|
)[];
|
|
10598
11508
|
useConfigurationIf?: {
|
|
10599
|
-
allNamesMatchPattern?:
|
|
11509
|
+
allNamesMatchPattern?:
|
|
11510
|
+
| (
|
|
11511
|
+
| {
|
|
11512
|
+
pattern?: string;
|
|
11513
|
+
flags?: string;
|
|
11514
|
+
}
|
|
11515
|
+
| string
|
|
11516
|
+
)[]
|
|
11517
|
+
| (
|
|
11518
|
+
| {
|
|
11519
|
+
pattern?: string;
|
|
11520
|
+
flags?: string;
|
|
11521
|
+
}
|
|
11522
|
+
| string
|
|
11523
|
+
);
|
|
10600
11524
|
};
|
|
10601
11525
|
|
|
10602
11526
|
partitionByComment?:
|
|
10603
|
-
| string[]
|
|
10604
11527
|
| boolean
|
|
10605
|
-
|
|
|
11528
|
+
| (
|
|
11529
|
+
| (
|
|
11530
|
+
| {
|
|
11531
|
+
pattern?: string;
|
|
11532
|
+
flags?: string;
|
|
11533
|
+
}
|
|
11534
|
+
| string
|
|
11535
|
+
)[]
|
|
11536
|
+
| (
|
|
11537
|
+
| {
|
|
11538
|
+
pattern?: string;
|
|
11539
|
+
flags?: string;
|
|
11540
|
+
}
|
|
11541
|
+
| string
|
|
11542
|
+
)
|
|
11543
|
+
)
|
|
10606
11544
|
| {
|
|
10607
|
-
block?:
|
|
10608
|
-
|
|
10609
|
-
|
|
11545
|
+
block?:
|
|
11546
|
+
| boolean
|
|
11547
|
+
| (
|
|
11548
|
+
| (
|
|
11549
|
+
| {
|
|
11550
|
+
pattern?: string;
|
|
11551
|
+
flags?: string;
|
|
11552
|
+
}
|
|
11553
|
+
| string
|
|
11554
|
+
)[]
|
|
11555
|
+
| (
|
|
11556
|
+
| {
|
|
11557
|
+
pattern?: string;
|
|
11558
|
+
flags?: string;
|
|
11559
|
+
}
|
|
11560
|
+
| string
|
|
11561
|
+
)
|
|
11562
|
+
);
|
|
11563
|
+
line?:
|
|
11564
|
+
| boolean
|
|
11565
|
+
| (
|
|
11566
|
+
| (
|
|
11567
|
+
| {
|
|
11568
|
+
pattern?: string;
|
|
11569
|
+
flags?: string;
|
|
11570
|
+
}
|
|
11571
|
+
| string
|
|
11572
|
+
)[]
|
|
11573
|
+
| (
|
|
11574
|
+
| {
|
|
11575
|
+
pattern?: string;
|
|
11576
|
+
flags?: string;
|
|
11577
|
+
}
|
|
11578
|
+
| string
|
|
11579
|
+
)
|
|
11580
|
+
);
|
|
10610
11581
|
};
|
|
10611
11582
|
|
|
10612
11583
|
partitionByNewLine?: boolean;
|
|
10613
11584
|
|
|
10614
11585
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10615
11586
|
|
|
10616
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10617
|
-
|
|
10618
11587
|
groups?: (
|
|
10619
11588
|
| string
|
|
10620
11589
|
| string[]
|
|
10621
11590
|
| {
|
|
10622
11591
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10623
|
-
[k: string]: unknown | undefined;
|
|
10624
11592
|
}
|
|
10625
11593
|
)[];
|
|
10626
11594
|
}[];
|
|
@@ -10631,6 +11599,18 @@ type PerfectionistSortModules =
|
|
|
10631
11599
|
{
|
|
10632
11600
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10633
11601
|
|
|
11602
|
+
fallbackSort?: {
|
|
11603
|
+
order?: "asc" | "desc";
|
|
11604
|
+
|
|
11605
|
+
type?:
|
|
11606
|
+
| "alphabetical"
|
|
11607
|
+
| "natural"
|
|
11608
|
+
| "line-length"
|
|
11609
|
+
| "custom"
|
|
11610
|
+
| "unsorted";
|
|
11611
|
+
[k: string]: unknown | undefined;
|
|
11612
|
+
};
|
|
11613
|
+
|
|
10634
11614
|
ignoreCase?: boolean;
|
|
10635
11615
|
|
|
10636
11616
|
alphabet?: string;
|
|
@@ -10639,6 +11619,13 @@ type PerfectionistSortModules =
|
|
|
10639
11619
|
|
|
10640
11620
|
order?: "asc" | "desc";
|
|
10641
11621
|
|
|
11622
|
+
type?:
|
|
11623
|
+
| "alphabetical"
|
|
11624
|
+
| "natural"
|
|
11625
|
+
| "line-length"
|
|
11626
|
+
| "custom"
|
|
11627
|
+
| "unsorted";
|
|
11628
|
+
|
|
10642
11629
|
customGroups?: (
|
|
10643
11630
|
| {
|
|
10644
11631
|
groupName?: string;
|
|
@@ -10649,8 +11636,6 @@ type PerfectionistSortModules =
|
|
|
10649
11636
|
|
|
10650
11637
|
newlinesInside?: "always" | "never";
|
|
10651
11638
|
anyOf?: {
|
|
10652
|
-
decoratorNamePattern?: string;
|
|
10653
|
-
|
|
10654
11639
|
modifiers?: (
|
|
10655
11640
|
| "async"
|
|
10656
11641
|
| "declare"
|
|
@@ -10661,7 +11646,37 @@ type PerfectionistSortModules =
|
|
|
10661
11646
|
|
|
10662
11647
|
selector?: "enum" | "function" | "interface" | "type" | "class";
|
|
10663
11648
|
|
|
10664
|
-
|
|
11649
|
+
decoratorNamePattern?:
|
|
11650
|
+
| (
|
|
11651
|
+
| {
|
|
11652
|
+
pattern?: string;
|
|
11653
|
+
flags?: string;
|
|
11654
|
+
}
|
|
11655
|
+
| string
|
|
11656
|
+
)[]
|
|
11657
|
+
| (
|
|
11658
|
+
| {
|
|
11659
|
+
pattern?: string;
|
|
11660
|
+
flags?: string;
|
|
11661
|
+
}
|
|
11662
|
+
| string
|
|
11663
|
+
);
|
|
11664
|
+
|
|
11665
|
+
elementNamePattern?:
|
|
11666
|
+
| (
|
|
11667
|
+
| {
|
|
11668
|
+
pattern?: string;
|
|
11669
|
+
flags?: string;
|
|
11670
|
+
}
|
|
11671
|
+
| string
|
|
11672
|
+
)[]
|
|
11673
|
+
| (
|
|
11674
|
+
| {
|
|
11675
|
+
pattern?: string;
|
|
11676
|
+
flags?: string;
|
|
11677
|
+
}
|
|
11678
|
+
| string
|
|
11679
|
+
);
|
|
10665
11680
|
}[];
|
|
10666
11681
|
}
|
|
10667
11682
|
| {
|
|
@@ -10673,8 +11688,6 @@ type PerfectionistSortModules =
|
|
|
10673
11688
|
|
|
10674
11689
|
newlinesInside?: "always" | "never";
|
|
10675
11690
|
|
|
10676
|
-
decoratorNamePattern?: string;
|
|
10677
|
-
|
|
10678
11691
|
modifiers?: (
|
|
10679
11692
|
| "async"
|
|
10680
11693
|
| "declare"
|
|
@@ -10685,32 +11698,106 @@ type PerfectionistSortModules =
|
|
|
10685
11698
|
|
|
10686
11699
|
selector?: "enum" | "function" | "interface" | "type" | "class";
|
|
10687
11700
|
|
|
10688
|
-
|
|
11701
|
+
decoratorNamePattern?:
|
|
11702
|
+
| (
|
|
11703
|
+
| {
|
|
11704
|
+
pattern?: string;
|
|
11705
|
+
flags?: string;
|
|
11706
|
+
}
|
|
11707
|
+
| string
|
|
11708
|
+
)[]
|
|
11709
|
+
| (
|
|
11710
|
+
| {
|
|
11711
|
+
pattern?: string;
|
|
11712
|
+
flags?: string;
|
|
11713
|
+
}
|
|
11714
|
+
| string
|
|
11715
|
+
);
|
|
11716
|
+
|
|
11717
|
+
elementNamePattern?:
|
|
11718
|
+
| (
|
|
11719
|
+
| {
|
|
11720
|
+
pattern?: string;
|
|
11721
|
+
flags?: string;
|
|
11722
|
+
}
|
|
11723
|
+
| string
|
|
11724
|
+
)[]
|
|
11725
|
+
| (
|
|
11726
|
+
| {
|
|
11727
|
+
pattern?: string;
|
|
11728
|
+
flags?: string;
|
|
11729
|
+
}
|
|
11730
|
+
| string
|
|
11731
|
+
);
|
|
10689
11732
|
}
|
|
10690
11733
|
)[];
|
|
10691
11734
|
|
|
10692
11735
|
partitionByComment?:
|
|
10693
|
-
| string[]
|
|
10694
11736
|
| boolean
|
|
10695
|
-
|
|
|
11737
|
+
| (
|
|
11738
|
+
| (
|
|
11739
|
+
| {
|
|
11740
|
+
pattern?: string;
|
|
11741
|
+
flags?: string;
|
|
11742
|
+
}
|
|
11743
|
+
| string
|
|
11744
|
+
)[]
|
|
11745
|
+
| (
|
|
11746
|
+
| {
|
|
11747
|
+
pattern?: string;
|
|
11748
|
+
flags?: string;
|
|
11749
|
+
}
|
|
11750
|
+
| string
|
|
11751
|
+
)
|
|
11752
|
+
)
|
|
10696
11753
|
| {
|
|
10697
|
-
block?:
|
|
10698
|
-
|
|
10699
|
-
|
|
11754
|
+
block?:
|
|
11755
|
+
| boolean
|
|
11756
|
+
| (
|
|
11757
|
+
| (
|
|
11758
|
+
| {
|
|
11759
|
+
pattern?: string;
|
|
11760
|
+
flags?: string;
|
|
11761
|
+
}
|
|
11762
|
+
| string
|
|
11763
|
+
)[]
|
|
11764
|
+
| (
|
|
11765
|
+
| {
|
|
11766
|
+
pattern?: string;
|
|
11767
|
+
flags?: string;
|
|
11768
|
+
}
|
|
11769
|
+
| string
|
|
11770
|
+
)
|
|
11771
|
+
);
|
|
11772
|
+
line?:
|
|
11773
|
+
| boolean
|
|
11774
|
+
| (
|
|
11775
|
+
| (
|
|
11776
|
+
| {
|
|
11777
|
+
pattern?: string;
|
|
11778
|
+
flags?: string;
|
|
11779
|
+
}
|
|
11780
|
+
| string
|
|
11781
|
+
)[]
|
|
11782
|
+
| (
|
|
11783
|
+
| {
|
|
11784
|
+
pattern?: string;
|
|
11785
|
+
flags?: string;
|
|
11786
|
+
}
|
|
11787
|
+
| string
|
|
11788
|
+
)
|
|
11789
|
+
);
|
|
10700
11790
|
};
|
|
10701
11791
|
|
|
10702
11792
|
partitionByNewLine?: boolean;
|
|
10703
11793
|
|
|
10704
11794
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10705
11795
|
|
|
10706
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10707
|
-
|
|
10708
11796
|
groups?: (
|
|
10709
11797
|
| string
|
|
10710
11798
|
| string[]
|
|
10711
11799
|
| {
|
|
10712
11800
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10713
|
-
[k: string]: unknown | undefined;
|
|
10714
11801
|
}
|
|
10715
11802
|
)[];
|
|
10716
11803
|
},
|
|
@@ -10722,6 +11809,18 @@ type PerfectionistSortNamedExports =
|
|
|
10722
11809
|
{
|
|
10723
11810
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10724
11811
|
|
|
11812
|
+
fallbackSort?: {
|
|
11813
|
+
order?: "asc" | "desc";
|
|
11814
|
+
|
|
11815
|
+
type?:
|
|
11816
|
+
| "alphabetical"
|
|
11817
|
+
| "natural"
|
|
11818
|
+
| "line-length"
|
|
11819
|
+
| "custom"
|
|
11820
|
+
| "unsorted";
|
|
11821
|
+
[k: string]: unknown | undefined;
|
|
11822
|
+
};
|
|
11823
|
+
|
|
10725
11824
|
ignoreCase?: boolean;
|
|
10726
11825
|
|
|
10727
11826
|
alphabet?: string;
|
|
@@ -10730,21 +11829,75 @@ type PerfectionistSortNamedExports =
|
|
|
10730
11829
|
|
|
10731
11830
|
order?: "asc" | "desc";
|
|
10732
11831
|
|
|
11832
|
+
type?:
|
|
11833
|
+
| "alphabetical"
|
|
11834
|
+
| "natural"
|
|
11835
|
+
| "line-length"
|
|
11836
|
+
| "custom"
|
|
11837
|
+
| "unsorted";
|
|
11838
|
+
|
|
10733
11839
|
groupKind?: "mixed" | "values-first" | "types-first";
|
|
10734
11840
|
|
|
11841
|
+
ignoreAlias?: boolean;
|
|
11842
|
+
|
|
10735
11843
|
partitionByComment?:
|
|
10736
|
-
| string[]
|
|
10737
11844
|
| boolean
|
|
10738
|
-
|
|
|
11845
|
+
| (
|
|
11846
|
+
| (
|
|
11847
|
+
| {
|
|
11848
|
+
pattern?: string;
|
|
11849
|
+
flags?: string;
|
|
11850
|
+
}
|
|
11851
|
+
| string
|
|
11852
|
+
)[]
|
|
11853
|
+
| (
|
|
11854
|
+
| {
|
|
11855
|
+
pattern?: string;
|
|
11856
|
+
flags?: string;
|
|
11857
|
+
}
|
|
11858
|
+
| string
|
|
11859
|
+
)
|
|
11860
|
+
)
|
|
10739
11861
|
| {
|
|
10740
|
-
block?:
|
|
10741
|
-
|
|
10742
|
-
|
|
11862
|
+
block?:
|
|
11863
|
+
| boolean
|
|
11864
|
+
| (
|
|
11865
|
+
| (
|
|
11866
|
+
| {
|
|
11867
|
+
pattern?: string;
|
|
11868
|
+
flags?: string;
|
|
11869
|
+
}
|
|
11870
|
+
| string
|
|
11871
|
+
)[]
|
|
11872
|
+
| (
|
|
11873
|
+
| {
|
|
11874
|
+
pattern?: string;
|
|
11875
|
+
flags?: string;
|
|
11876
|
+
}
|
|
11877
|
+
| string
|
|
11878
|
+
)
|
|
11879
|
+
);
|
|
11880
|
+
line?:
|
|
11881
|
+
| boolean
|
|
11882
|
+
| (
|
|
11883
|
+
| (
|
|
11884
|
+
| {
|
|
11885
|
+
pattern?: string;
|
|
11886
|
+
flags?: string;
|
|
11887
|
+
}
|
|
11888
|
+
| string
|
|
11889
|
+
)[]
|
|
11890
|
+
| (
|
|
11891
|
+
| {
|
|
11892
|
+
pattern?: string;
|
|
11893
|
+
flags?: string;
|
|
11894
|
+
}
|
|
11895
|
+
| string
|
|
11896
|
+
)
|
|
11897
|
+
);
|
|
10743
11898
|
};
|
|
10744
11899
|
|
|
10745
11900
|
partitionByNewLine?: boolean;
|
|
10746
|
-
|
|
10747
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10748
11901
|
},
|
|
10749
11902
|
];
|
|
10750
11903
|
// ----- perfectionist/sort-named-imports -----
|
|
@@ -10754,6 +11907,18 @@ type PerfectionistSortNamedImports =
|
|
|
10754
11907
|
{
|
|
10755
11908
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10756
11909
|
|
|
11910
|
+
fallbackSort?: {
|
|
11911
|
+
order?: "asc" | "desc";
|
|
11912
|
+
|
|
11913
|
+
type?:
|
|
11914
|
+
| "alphabetical"
|
|
11915
|
+
| "natural"
|
|
11916
|
+
| "line-length"
|
|
11917
|
+
| "custom"
|
|
11918
|
+
| "unsorted";
|
|
11919
|
+
[k: string]: unknown | undefined;
|
|
11920
|
+
};
|
|
11921
|
+
|
|
10757
11922
|
ignoreCase?: boolean;
|
|
10758
11923
|
|
|
10759
11924
|
alphabet?: string;
|
|
@@ -10762,29 +11927,88 @@ type PerfectionistSortNamedImports =
|
|
|
10762
11927
|
|
|
10763
11928
|
order?: "asc" | "desc";
|
|
10764
11929
|
|
|
11930
|
+
type?:
|
|
11931
|
+
| "alphabetical"
|
|
11932
|
+
| "natural"
|
|
11933
|
+
| "line-length"
|
|
11934
|
+
| "custom"
|
|
11935
|
+
| "unsorted";
|
|
11936
|
+
|
|
10765
11937
|
groupKind?: "mixed" | "values-first" | "types-first";
|
|
10766
11938
|
|
|
10767
11939
|
ignoreAlias?: boolean;
|
|
10768
11940
|
|
|
10769
11941
|
partitionByComment?:
|
|
10770
|
-
| string[]
|
|
10771
11942
|
| boolean
|
|
10772
|
-
|
|
|
11943
|
+
| (
|
|
11944
|
+
| (
|
|
11945
|
+
| {
|
|
11946
|
+
pattern?: string;
|
|
11947
|
+
flags?: string;
|
|
11948
|
+
}
|
|
11949
|
+
| string
|
|
11950
|
+
)[]
|
|
11951
|
+
| (
|
|
11952
|
+
| {
|
|
11953
|
+
pattern?: string;
|
|
11954
|
+
flags?: string;
|
|
11955
|
+
}
|
|
11956
|
+
| string
|
|
11957
|
+
)
|
|
11958
|
+
)
|
|
10773
11959
|
| {
|
|
10774
|
-
block?:
|
|
10775
|
-
|
|
10776
|
-
|
|
11960
|
+
block?:
|
|
11961
|
+
| boolean
|
|
11962
|
+
| (
|
|
11963
|
+
| (
|
|
11964
|
+
| {
|
|
11965
|
+
pattern?: string;
|
|
11966
|
+
flags?: string;
|
|
11967
|
+
}
|
|
11968
|
+
| string
|
|
11969
|
+
)[]
|
|
11970
|
+
| (
|
|
11971
|
+
| {
|
|
11972
|
+
pattern?: string;
|
|
11973
|
+
flags?: string;
|
|
11974
|
+
}
|
|
11975
|
+
| string
|
|
11976
|
+
)
|
|
11977
|
+
);
|
|
11978
|
+
line?:
|
|
11979
|
+
| boolean
|
|
11980
|
+
| (
|
|
11981
|
+
| (
|
|
11982
|
+
| {
|
|
11983
|
+
pattern?: string;
|
|
11984
|
+
flags?: string;
|
|
11985
|
+
}
|
|
11986
|
+
| string
|
|
11987
|
+
)[]
|
|
11988
|
+
| (
|
|
11989
|
+
| {
|
|
11990
|
+
pattern?: string;
|
|
11991
|
+
flags?: string;
|
|
11992
|
+
}
|
|
11993
|
+
| string
|
|
11994
|
+
)
|
|
11995
|
+
);
|
|
10777
11996
|
};
|
|
10778
11997
|
|
|
10779
11998
|
partitionByNewLine?: boolean;
|
|
10780
|
-
|
|
10781
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
10782
11999
|
},
|
|
10783
12000
|
];
|
|
10784
12001
|
// ----- perfectionist/sort-object-types -----
|
|
10785
12002
|
type PerfectionistSortObjectTypes = {
|
|
10786
12003
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10787
12004
|
|
|
12005
|
+
fallbackSort?: {
|
|
12006
|
+
order?: "asc" | "desc";
|
|
12007
|
+
|
|
12008
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12009
|
+
[k: string]: unknown | undefined;
|
|
12010
|
+
};
|
|
12011
|
+
|
|
10788
12012
|
ignoreCase?: boolean;
|
|
10789
12013
|
|
|
10790
12014
|
alphabet?: string;
|
|
@@ -10793,11 +12017,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
10793
12017
|
|
|
10794
12018
|
order?: "asc" | "desc";
|
|
10795
12019
|
|
|
10796
|
-
|
|
10797
|
-
useConfigurationIf?: {
|
|
10798
|
-
allNamesMatchPattern?: string;
|
|
10799
|
-
declarationMatchesPattern?: string;
|
|
10800
|
-
};
|
|
12020
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
10801
12021
|
customGroups?:
|
|
10802
12022
|
| {
|
|
10803
12023
|
[k: string]: (string | string[]) | undefined;
|
|
@@ -10821,7 +12041,21 @@ type PerfectionistSortObjectTypes = {
|
|
|
10821
12041
|
| "multiline"
|
|
10822
12042
|
| "property";
|
|
10823
12043
|
|
|
10824
|
-
elementNamePattern?:
|
|
12044
|
+
elementNamePattern?:
|
|
12045
|
+
| (
|
|
12046
|
+
| {
|
|
12047
|
+
pattern?: string;
|
|
12048
|
+
flags?: string;
|
|
12049
|
+
}
|
|
12050
|
+
| string
|
|
12051
|
+
)[]
|
|
12052
|
+
| (
|
|
12053
|
+
| {
|
|
12054
|
+
pattern?: string;
|
|
12055
|
+
flags?: string;
|
|
12056
|
+
}
|
|
12057
|
+
| string
|
|
12058
|
+
);
|
|
10825
12059
|
}[];
|
|
10826
12060
|
}
|
|
10827
12061
|
| {
|
|
@@ -10842,34 +12076,141 @@ type PerfectionistSortObjectTypes = {
|
|
|
10842
12076
|
| "multiline"
|
|
10843
12077
|
| "property";
|
|
10844
12078
|
|
|
10845
|
-
elementNamePattern?:
|
|
10846
|
-
|
|
10847
|
-
|
|
12079
|
+
elementNamePattern?:
|
|
12080
|
+
| (
|
|
12081
|
+
| {
|
|
12082
|
+
pattern?: string;
|
|
12083
|
+
flags?: string;
|
|
12084
|
+
}
|
|
12085
|
+
| string
|
|
12086
|
+
)[]
|
|
12087
|
+
| (
|
|
12088
|
+
| {
|
|
12089
|
+
pattern?: string;
|
|
12090
|
+
flags?: string;
|
|
12091
|
+
}
|
|
12092
|
+
| string
|
|
12093
|
+
);
|
|
12094
|
+
}
|
|
12095
|
+
)[];
|
|
12096
|
+
useConfigurationIf?: {
|
|
12097
|
+
allNamesMatchPattern?:
|
|
12098
|
+
| (
|
|
12099
|
+
| {
|
|
12100
|
+
pattern?: string;
|
|
12101
|
+
flags?: string;
|
|
12102
|
+
}
|
|
12103
|
+
| string
|
|
12104
|
+
)[]
|
|
12105
|
+
| (
|
|
12106
|
+
| {
|
|
12107
|
+
pattern?: string;
|
|
12108
|
+
flags?: string;
|
|
12109
|
+
}
|
|
12110
|
+
| string
|
|
12111
|
+
);
|
|
12112
|
+
|
|
12113
|
+
declarationMatchesPattern?:
|
|
12114
|
+
| (
|
|
12115
|
+
| {
|
|
12116
|
+
pattern?: string;
|
|
12117
|
+
flags?: string;
|
|
12118
|
+
}
|
|
12119
|
+
| string
|
|
12120
|
+
)[]
|
|
12121
|
+
| (
|
|
12122
|
+
| {
|
|
12123
|
+
pattern?: string;
|
|
12124
|
+
flags?: string;
|
|
12125
|
+
}
|
|
12126
|
+
| string
|
|
12127
|
+
);
|
|
12128
|
+
};
|
|
10848
12129
|
|
|
10849
12130
|
groupKind?: "mixed" | "required-first" | "optional-first";
|
|
10850
12131
|
|
|
10851
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
10852
|
-
|
|
10853
12132
|
partitionByComment?:
|
|
10854
|
-
| string[]
|
|
10855
12133
|
| boolean
|
|
10856
|
-
|
|
|
12134
|
+
| (
|
|
12135
|
+
| (
|
|
12136
|
+
| {
|
|
12137
|
+
pattern?: string;
|
|
12138
|
+
flags?: string;
|
|
12139
|
+
}
|
|
12140
|
+
| string
|
|
12141
|
+
)[]
|
|
12142
|
+
| (
|
|
12143
|
+
| {
|
|
12144
|
+
pattern?: string;
|
|
12145
|
+
flags?: string;
|
|
12146
|
+
}
|
|
12147
|
+
| string
|
|
12148
|
+
)
|
|
12149
|
+
)
|
|
10857
12150
|
| {
|
|
10858
|
-
block?:
|
|
10859
|
-
|
|
10860
|
-
|
|
12151
|
+
block?:
|
|
12152
|
+
| boolean
|
|
12153
|
+
| (
|
|
12154
|
+
| (
|
|
12155
|
+
| {
|
|
12156
|
+
pattern?: string;
|
|
12157
|
+
flags?: string;
|
|
12158
|
+
}
|
|
12159
|
+
| string
|
|
12160
|
+
)[]
|
|
12161
|
+
| (
|
|
12162
|
+
| {
|
|
12163
|
+
pattern?: string;
|
|
12164
|
+
flags?: string;
|
|
12165
|
+
}
|
|
12166
|
+
| string
|
|
12167
|
+
)
|
|
12168
|
+
);
|
|
12169
|
+
line?:
|
|
12170
|
+
| boolean
|
|
12171
|
+
| (
|
|
12172
|
+
| (
|
|
12173
|
+
| {
|
|
12174
|
+
pattern?: string;
|
|
12175
|
+
flags?: string;
|
|
12176
|
+
}
|
|
12177
|
+
| string
|
|
12178
|
+
)[]
|
|
12179
|
+
| (
|
|
12180
|
+
| {
|
|
12181
|
+
pattern?: string;
|
|
12182
|
+
flags?: string;
|
|
12183
|
+
}
|
|
12184
|
+
| string
|
|
12185
|
+
)
|
|
12186
|
+
);
|
|
10861
12187
|
};
|
|
10862
12188
|
|
|
10863
12189
|
partitionByNewLine?: boolean;
|
|
10864
12190
|
|
|
10865
12191
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10866
12192
|
|
|
12193
|
+
ignorePattern?:
|
|
12194
|
+
| (
|
|
12195
|
+
| {
|
|
12196
|
+
pattern?: string;
|
|
12197
|
+
flags?: string;
|
|
12198
|
+
}
|
|
12199
|
+
| string
|
|
12200
|
+
)[]
|
|
12201
|
+
| (
|
|
12202
|
+
| {
|
|
12203
|
+
pattern?: string;
|
|
12204
|
+
flags?: string;
|
|
12205
|
+
}
|
|
12206
|
+
| string
|
|
12207
|
+
);
|
|
12208
|
+
|
|
10867
12209
|
groups?: (
|
|
10868
12210
|
| string
|
|
10869
12211
|
| string[]
|
|
10870
12212
|
| {
|
|
10871
12213
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10872
|
-
[k: string]: unknown | undefined;
|
|
10873
12214
|
}
|
|
10874
12215
|
)[];
|
|
10875
12216
|
}[];
|
|
@@ -10877,6 +12218,13 @@ type PerfectionistSortObjectTypes = {
|
|
|
10877
12218
|
type PerfectionistSortObjects = {
|
|
10878
12219
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10879
12220
|
|
|
12221
|
+
fallbackSort?: {
|
|
12222
|
+
order?: "asc" | "desc";
|
|
12223
|
+
|
|
12224
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12225
|
+
[k: string]: unknown | undefined;
|
|
12226
|
+
};
|
|
12227
|
+
|
|
10880
12228
|
ignoreCase?: boolean;
|
|
10881
12229
|
|
|
10882
12230
|
alphabet?: string;
|
|
@@ -10885,17 +12233,13 @@ type PerfectionistSortObjects = {
|
|
|
10885
12233
|
|
|
10886
12234
|
order?: "asc" | "desc";
|
|
10887
12235
|
|
|
12236
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12237
|
+
|
|
10888
12238
|
destructuredObjects?:
|
|
10889
12239
|
| boolean
|
|
10890
12240
|
| {
|
|
10891
12241
|
groups?: boolean;
|
|
10892
12242
|
};
|
|
10893
|
-
|
|
10894
|
-
ignorePattern?: string[];
|
|
10895
|
-
useConfigurationIf?: {
|
|
10896
|
-
allNamesMatchPattern?: string;
|
|
10897
|
-
callingFunctionNamePattern?: string;
|
|
10898
|
-
};
|
|
10899
12243
|
customGroups?:
|
|
10900
12244
|
| {
|
|
10901
12245
|
[k: string]: (string | string[]) | undefined;
|
|
@@ -10914,9 +12258,37 @@ type PerfectionistSortObjects = {
|
|
|
10914
12258
|
|
|
10915
12259
|
selector?: "member" | "method" | "multiline" | "property";
|
|
10916
12260
|
|
|
10917
|
-
elementValuePattern?:
|
|
10918
|
-
|
|
10919
|
-
|
|
12261
|
+
elementValuePattern?:
|
|
12262
|
+
| (
|
|
12263
|
+
| {
|
|
12264
|
+
pattern?: string;
|
|
12265
|
+
flags?: string;
|
|
12266
|
+
}
|
|
12267
|
+
| string
|
|
12268
|
+
)[]
|
|
12269
|
+
| (
|
|
12270
|
+
| {
|
|
12271
|
+
pattern?: string;
|
|
12272
|
+
flags?: string;
|
|
12273
|
+
}
|
|
12274
|
+
| string
|
|
12275
|
+
);
|
|
12276
|
+
|
|
12277
|
+
elementNamePattern?:
|
|
12278
|
+
| (
|
|
12279
|
+
| {
|
|
12280
|
+
pattern?: string;
|
|
12281
|
+
flags?: string;
|
|
12282
|
+
}
|
|
12283
|
+
| string
|
|
12284
|
+
)[]
|
|
12285
|
+
| (
|
|
12286
|
+
| {
|
|
12287
|
+
pattern?: string;
|
|
12288
|
+
flags?: string;
|
|
12289
|
+
}
|
|
12290
|
+
| string
|
|
12291
|
+
);
|
|
10920
12292
|
}[];
|
|
10921
12293
|
}
|
|
10922
12294
|
| {
|
|
@@ -10932,11 +12304,72 @@ type PerfectionistSortObjects = {
|
|
|
10932
12304
|
|
|
10933
12305
|
selector?: "member" | "method" | "multiline" | "property";
|
|
10934
12306
|
|
|
10935
|
-
elementValuePattern?:
|
|
10936
|
-
|
|
10937
|
-
|
|
12307
|
+
elementValuePattern?:
|
|
12308
|
+
| (
|
|
12309
|
+
| {
|
|
12310
|
+
pattern?: string;
|
|
12311
|
+
flags?: string;
|
|
12312
|
+
}
|
|
12313
|
+
| string
|
|
12314
|
+
)[]
|
|
12315
|
+
| (
|
|
12316
|
+
| {
|
|
12317
|
+
pattern?: string;
|
|
12318
|
+
flags?: string;
|
|
12319
|
+
}
|
|
12320
|
+
| string
|
|
12321
|
+
);
|
|
12322
|
+
|
|
12323
|
+
elementNamePattern?:
|
|
12324
|
+
| (
|
|
12325
|
+
| {
|
|
12326
|
+
pattern?: string;
|
|
12327
|
+
flags?: string;
|
|
12328
|
+
}
|
|
12329
|
+
| string
|
|
12330
|
+
)[]
|
|
12331
|
+
| (
|
|
12332
|
+
| {
|
|
12333
|
+
pattern?: string;
|
|
12334
|
+
flags?: string;
|
|
12335
|
+
}
|
|
12336
|
+
| string
|
|
12337
|
+
);
|
|
10938
12338
|
}
|
|
10939
12339
|
)[];
|
|
12340
|
+
useConfigurationIf?: {
|
|
12341
|
+
allNamesMatchPattern?:
|
|
12342
|
+
| (
|
|
12343
|
+
| {
|
|
12344
|
+
pattern?: string;
|
|
12345
|
+
flags?: string;
|
|
12346
|
+
}
|
|
12347
|
+
| string
|
|
12348
|
+
)[]
|
|
12349
|
+
| (
|
|
12350
|
+
| {
|
|
12351
|
+
pattern?: string;
|
|
12352
|
+
flags?: string;
|
|
12353
|
+
}
|
|
12354
|
+
| string
|
|
12355
|
+
);
|
|
12356
|
+
|
|
12357
|
+
callingFunctionNamePattern?:
|
|
12358
|
+
| (
|
|
12359
|
+
| {
|
|
12360
|
+
pattern?: string;
|
|
12361
|
+
flags?: string;
|
|
12362
|
+
}
|
|
12363
|
+
| string
|
|
12364
|
+
)[]
|
|
12365
|
+
| (
|
|
12366
|
+
| {
|
|
12367
|
+
pattern?: string;
|
|
12368
|
+
flags?: string;
|
|
12369
|
+
}
|
|
12370
|
+
| string
|
|
12371
|
+
);
|
|
12372
|
+
};
|
|
10940
12373
|
|
|
10941
12374
|
destructureOnly?: boolean;
|
|
10942
12375
|
|
|
@@ -10944,28 +12377,88 @@ type PerfectionistSortObjects = {
|
|
|
10944
12377
|
|
|
10945
12378
|
styledComponents?: boolean;
|
|
10946
12379
|
|
|
10947
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
10948
|
-
|
|
10949
12380
|
partitionByComment?:
|
|
10950
|
-
| string[]
|
|
10951
12381
|
| boolean
|
|
10952
|
-
|
|
|
12382
|
+
| (
|
|
12383
|
+
| (
|
|
12384
|
+
| {
|
|
12385
|
+
pattern?: string;
|
|
12386
|
+
flags?: string;
|
|
12387
|
+
}
|
|
12388
|
+
| string
|
|
12389
|
+
)[]
|
|
12390
|
+
| (
|
|
12391
|
+
| {
|
|
12392
|
+
pattern?: string;
|
|
12393
|
+
flags?: string;
|
|
12394
|
+
}
|
|
12395
|
+
| string
|
|
12396
|
+
)
|
|
12397
|
+
)
|
|
10953
12398
|
| {
|
|
10954
|
-
block?:
|
|
10955
|
-
|
|
10956
|
-
|
|
12399
|
+
block?:
|
|
12400
|
+
| boolean
|
|
12401
|
+
| (
|
|
12402
|
+
| (
|
|
12403
|
+
| {
|
|
12404
|
+
pattern?: string;
|
|
12405
|
+
flags?: string;
|
|
12406
|
+
}
|
|
12407
|
+
| string
|
|
12408
|
+
)[]
|
|
12409
|
+
| (
|
|
12410
|
+
| {
|
|
12411
|
+
pattern?: string;
|
|
12412
|
+
flags?: string;
|
|
12413
|
+
}
|
|
12414
|
+
| string
|
|
12415
|
+
)
|
|
12416
|
+
);
|
|
12417
|
+
line?:
|
|
12418
|
+
| boolean
|
|
12419
|
+
| (
|
|
12420
|
+
| (
|
|
12421
|
+
| {
|
|
12422
|
+
pattern?: string;
|
|
12423
|
+
flags?: string;
|
|
12424
|
+
}
|
|
12425
|
+
| string
|
|
12426
|
+
)[]
|
|
12427
|
+
| (
|
|
12428
|
+
| {
|
|
12429
|
+
pattern?: string;
|
|
12430
|
+
flags?: string;
|
|
12431
|
+
}
|
|
12432
|
+
| string
|
|
12433
|
+
)
|
|
12434
|
+
);
|
|
10957
12435
|
};
|
|
10958
12436
|
|
|
10959
12437
|
partitionByNewLine?: boolean;
|
|
10960
12438
|
|
|
10961
12439
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10962
12440
|
|
|
12441
|
+
ignorePattern?:
|
|
12442
|
+
| (
|
|
12443
|
+
| {
|
|
12444
|
+
pattern?: string;
|
|
12445
|
+
flags?: string;
|
|
12446
|
+
}
|
|
12447
|
+
| string
|
|
12448
|
+
)[]
|
|
12449
|
+
| (
|
|
12450
|
+
| {
|
|
12451
|
+
pattern?: string;
|
|
12452
|
+
flags?: string;
|
|
12453
|
+
}
|
|
12454
|
+
| string
|
|
12455
|
+
);
|
|
12456
|
+
|
|
10963
12457
|
groups?: (
|
|
10964
12458
|
| string
|
|
10965
12459
|
| string[]
|
|
10966
12460
|
| {
|
|
10967
12461
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
10968
|
-
[k: string]: unknown | undefined;
|
|
10969
12462
|
}
|
|
10970
12463
|
)[];
|
|
10971
12464
|
}[];
|
|
@@ -10973,6 +12466,13 @@ type PerfectionistSortObjects = {
|
|
|
10973
12466
|
type PerfectionistSortSets = {
|
|
10974
12467
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
10975
12468
|
|
|
12469
|
+
fallbackSort?: {
|
|
12470
|
+
order?: "asc" | "desc";
|
|
12471
|
+
|
|
12472
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12473
|
+
[k: string]: unknown | undefined;
|
|
12474
|
+
};
|
|
12475
|
+
|
|
10976
12476
|
ignoreCase?: boolean;
|
|
10977
12477
|
|
|
10978
12478
|
alphabet?: string;
|
|
@@ -10981,6 +12481,8 @@ type PerfectionistSortSets = {
|
|
|
10981
12481
|
|
|
10982
12482
|
order?: "asc" | "desc";
|
|
10983
12483
|
|
|
12484
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12485
|
+
|
|
10984
12486
|
groupKind?: "mixed" | "literals-first" | "spreads-first";
|
|
10985
12487
|
|
|
10986
12488
|
customGroups?: (
|
|
@@ -10995,7 +12497,21 @@ type PerfectionistSortSets = {
|
|
|
10995
12497
|
anyOf?: {
|
|
10996
12498
|
selector?: "literal" | "spread";
|
|
10997
12499
|
|
|
10998
|
-
elementNamePattern?:
|
|
12500
|
+
elementNamePattern?:
|
|
12501
|
+
| (
|
|
12502
|
+
| {
|
|
12503
|
+
pattern?: string;
|
|
12504
|
+
flags?: string;
|
|
12505
|
+
}
|
|
12506
|
+
| string
|
|
12507
|
+
)[]
|
|
12508
|
+
| (
|
|
12509
|
+
| {
|
|
12510
|
+
pattern?: string;
|
|
12511
|
+
flags?: string;
|
|
12512
|
+
}
|
|
12513
|
+
| string
|
|
12514
|
+
);
|
|
10999
12515
|
}[];
|
|
11000
12516
|
}
|
|
11001
12517
|
| {
|
|
@@ -11009,23 +12525,96 @@ type PerfectionistSortSets = {
|
|
|
11009
12525
|
|
|
11010
12526
|
selector?: "literal" | "spread";
|
|
11011
12527
|
|
|
11012
|
-
elementNamePattern?:
|
|
12528
|
+
elementNamePattern?:
|
|
12529
|
+
| (
|
|
12530
|
+
| {
|
|
12531
|
+
pattern?: string;
|
|
12532
|
+
flags?: string;
|
|
12533
|
+
}
|
|
12534
|
+
| string
|
|
12535
|
+
)[]
|
|
12536
|
+
| (
|
|
12537
|
+
| {
|
|
12538
|
+
pattern?: string;
|
|
12539
|
+
flags?: string;
|
|
12540
|
+
}
|
|
12541
|
+
| string
|
|
12542
|
+
);
|
|
11013
12543
|
}
|
|
11014
12544
|
)[];
|
|
11015
12545
|
useConfigurationIf?: {
|
|
11016
|
-
allNamesMatchPattern?:
|
|
12546
|
+
allNamesMatchPattern?:
|
|
12547
|
+
| (
|
|
12548
|
+
| {
|
|
12549
|
+
pattern?: string;
|
|
12550
|
+
flags?: string;
|
|
12551
|
+
}
|
|
12552
|
+
| string
|
|
12553
|
+
)[]
|
|
12554
|
+
| (
|
|
12555
|
+
| {
|
|
12556
|
+
pattern?: string;
|
|
12557
|
+
flags?: string;
|
|
12558
|
+
}
|
|
12559
|
+
| string
|
|
12560
|
+
);
|
|
11017
12561
|
};
|
|
11018
12562
|
|
|
11019
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
11020
|
-
|
|
11021
12563
|
partitionByComment?:
|
|
11022
|
-
| string[]
|
|
11023
12564
|
| boolean
|
|
11024
|
-
|
|
|
12565
|
+
| (
|
|
12566
|
+
| (
|
|
12567
|
+
| {
|
|
12568
|
+
pattern?: string;
|
|
12569
|
+
flags?: string;
|
|
12570
|
+
}
|
|
12571
|
+
| string
|
|
12572
|
+
)[]
|
|
12573
|
+
| (
|
|
12574
|
+
| {
|
|
12575
|
+
pattern?: string;
|
|
12576
|
+
flags?: string;
|
|
12577
|
+
}
|
|
12578
|
+
| string
|
|
12579
|
+
)
|
|
12580
|
+
)
|
|
11025
12581
|
| {
|
|
11026
|
-
block?:
|
|
11027
|
-
|
|
11028
|
-
|
|
12582
|
+
block?:
|
|
12583
|
+
| boolean
|
|
12584
|
+
| (
|
|
12585
|
+
| (
|
|
12586
|
+
| {
|
|
12587
|
+
pattern?: string;
|
|
12588
|
+
flags?: string;
|
|
12589
|
+
}
|
|
12590
|
+
| string
|
|
12591
|
+
)[]
|
|
12592
|
+
| (
|
|
12593
|
+
| {
|
|
12594
|
+
pattern?: string;
|
|
12595
|
+
flags?: string;
|
|
12596
|
+
}
|
|
12597
|
+
| string
|
|
12598
|
+
)
|
|
12599
|
+
);
|
|
12600
|
+
line?:
|
|
12601
|
+
| boolean
|
|
12602
|
+
| (
|
|
12603
|
+
| (
|
|
12604
|
+
| {
|
|
12605
|
+
pattern?: string;
|
|
12606
|
+
flags?: string;
|
|
12607
|
+
}
|
|
12608
|
+
| string
|
|
12609
|
+
)[]
|
|
12610
|
+
| (
|
|
12611
|
+
| {
|
|
12612
|
+
pattern?: string;
|
|
12613
|
+
flags?: string;
|
|
12614
|
+
}
|
|
12615
|
+
| string
|
|
12616
|
+
)
|
|
12617
|
+
);
|
|
11029
12618
|
};
|
|
11030
12619
|
|
|
11031
12620
|
partitionByNewLine?: boolean;
|
|
@@ -11037,7 +12626,6 @@ type PerfectionistSortSets = {
|
|
|
11037
12626
|
| string[]
|
|
11038
12627
|
| {
|
|
11039
12628
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
11040
|
-
[k: string]: unknown | undefined;
|
|
11041
12629
|
}
|
|
11042
12630
|
)[];
|
|
11043
12631
|
}[];
|
|
@@ -11048,6 +12636,18 @@ type PerfectionistSortSwitchCase =
|
|
|
11048
12636
|
{
|
|
11049
12637
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
11050
12638
|
|
|
12639
|
+
fallbackSort?: {
|
|
12640
|
+
order?: "asc" | "desc";
|
|
12641
|
+
|
|
12642
|
+
type?:
|
|
12643
|
+
| "alphabetical"
|
|
12644
|
+
| "natural"
|
|
12645
|
+
| "line-length"
|
|
12646
|
+
| "custom"
|
|
12647
|
+
| "unsorted";
|
|
12648
|
+
[k: string]: unknown | undefined;
|
|
12649
|
+
};
|
|
12650
|
+
|
|
11051
12651
|
ignoreCase?: boolean;
|
|
11052
12652
|
|
|
11053
12653
|
alphabet?: string;
|
|
@@ -11056,7 +12656,12 @@ type PerfectionistSortSwitchCase =
|
|
|
11056
12656
|
|
|
11057
12657
|
order?: "asc" | "desc";
|
|
11058
12658
|
|
|
11059
|
-
type?:
|
|
12659
|
+
type?:
|
|
12660
|
+
| "alphabetical"
|
|
12661
|
+
| "natural"
|
|
12662
|
+
| "line-length"
|
|
12663
|
+
| "custom"
|
|
12664
|
+
| "unsorted";
|
|
11060
12665
|
},
|
|
11061
12666
|
];
|
|
11062
12667
|
// ----- perfectionist/sort-union-types -----
|
|
@@ -11066,6 +12671,18 @@ type PerfectionistSortUnionTypes =
|
|
|
11066
12671
|
{
|
|
11067
12672
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
11068
12673
|
|
|
12674
|
+
fallbackSort?: {
|
|
12675
|
+
order?: "asc" | "desc";
|
|
12676
|
+
|
|
12677
|
+
type?:
|
|
12678
|
+
| "alphabetical"
|
|
12679
|
+
| "natural"
|
|
12680
|
+
| "line-length"
|
|
12681
|
+
| "custom"
|
|
12682
|
+
| "unsorted";
|
|
12683
|
+
[k: string]: unknown | undefined;
|
|
12684
|
+
};
|
|
12685
|
+
|
|
11069
12686
|
ignoreCase?: boolean;
|
|
11070
12687
|
|
|
11071
12688
|
alphabet?: string;
|
|
@@ -11074,28 +12691,79 @@ type PerfectionistSortUnionTypes =
|
|
|
11074
12691
|
|
|
11075
12692
|
order?: "asc" | "desc";
|
|
11076
12693
|
|
|
12694
|
+
type?:
|
|
12695
|
+
| "alphabetical"
|
|
12696
|
+
| "natural"
|
|
12697
|
+
| "line-length"
|
|
12698
|
+
| "custom"
|
|
12699
|
+
| "unsorted";
|
|
12700
|
+
|
|
11077
12701
|
partitionByComment?:
|
|
11078
|
-
| string[]
|
|
11079
12702
|
| boolean
|
|
11080
|
-
|
|
|
12703
|
+
| (
|
|
12704
|
+
| (
|
|
12705
|
+
| {
|
|
12706
|
+
pattern?: string;
|
|
12707
|
+
flags?: string;
|
|
12708
|
+
}
|
|
12709
|
+
| string
|
|
12710
|
+
)[]
|
|
12711
|
+
| (
|
|
12712
|
+
| {
|
|
12713
|
+
pattern?: string;
|
|
12714
|
+
flags?: string;
|
|
12715
|
+
}
|
|
12716
|
+
| string
|
|
12717
|
+
)
|
|
12718
|
+
)
|
|
11081
12719
|
| {
|
|
11082
|
-
block?:
|
|
11083
|
-
|
|
11084
|
-
|
|
12720
|
+
block?:
|
|
12721
|
+
| boolean
|
|
12722
|
+
| (
|
|
12723
|
+
| (
|
|
12724
|
+
| {
|
|
12725
|
+
pattern?: string;
|
|
12726
|
+
flags?: string;
|
|
12727
|
+
}
|
|
12728
|
+
| string
|
|
12729
|
+
)[]
|
|
12730
|
+
| (
|
|
12731
|
+
| {
|
|
12732
|
+
pattern?: string;
|
|
12733
|
+
flags?: string;
|
|
12734
|
+
}
|
|
12735
|
+
| string
|
|
12736
|
+
)
|
|
12737
|
+
);
|
|
12738
|
+
line?:
|
|
12739
|
+
| boolean
|
|
12740
|
+
| (
|
|
12741
|
+
| (
|
|
12742
|
+
| {
|
|
12743
|
+
pattern?: string;
|
|
12744
|
+
flags?: string;
|
|
12745
|
+
}
|
|
12746
|
+
| string
|
|
12747
|
+
)[]
|
|
12748
|
+
| (
|
|
12749
|
+
| {
|
|
12750
|
+
pattern?: string;
|
|
12751
|
+
flags?: string;
|
|
12752
|
+
}
|
|
12753
|
+
| string
|
|
12754
|
+
)
|
|
12755
|
+
);
|
|
11085
12756
|
};
|
|
11086
12757
|
|
|
11087
12758
|
partitionByNewLine?: boolean;
|
|
11088
12759
|
|
|
11089
12760
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
11090
12761
|
|
|
11091
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
11092
|
-
|
|
11093
12762
|
groups?: (
|
|
11094
12763
|
| string
|
|
11095
12764
|
| string[]
|
|
11096
12765
|
| {
|
|
11097
12766
|
newlinesBetween?: "ignore" | "always" | "never";
|
|
11098
|
-
[k: string]: unknown | undefined;
|
|
11099
12767
|
}
|
|
11100
12768
|
)[];
|
|
11101
12769
|
},
|
|
@@ -11107,6 +12775,18 @@ type PerfectionistSortVariableDeclarations =
|
|
|
11107
12775
|
{
|
|
11108
12776
|
specialCharacters?: "remove" | "trim" | "keep";
|
|
11109
12777
|
|
|
12778
|
+
fallbackSort?: {
|
|
12779
|
+
order?: "asc" | "desc";
|
|
12780
|
+
|
|
12781
|
+
type?:
|
|
12782
|
+
| "alphabetical"
|
|
12783
|
+
| "natural"
|
|
12784
|
+
| "line-length"
|
|
12785
|
+
| "custom"
|
|
12786
|
+
| "unsorted";
|
|
12787
|
+
[k: string]: unknown | undefined;
|
|
12788
|
+
};
|
|
12789
|
+
|
|
11110
12790
|
ignoreCase?: boolean;
|
|
11111
12791
|
|
|
11112
12792
|
alphabet?: string;
|
|
@@ -11115,19 +12795,71 @@ type PerfectionistSortVariableDeclarations =
|
|
|
11115
12795
|
|
|
11116
12796
|
order?: "asc" | "desc";
|
|
11117
12797
|
|
|
12798
|
+
type?:
|
|
12799
|
+
| "alphabetical"
|
|
12800
|
+
| "natural"
|
|
12801
|
+
| "line-length"
|
|
12802
|
+
| "custom"
|
|
12803
|
+
| "unsorted";
|
|
12804
|
+
|
|
11118
12805
|
partitionByComment?:
|
|
11119
|
-
| string[]
|
|
11120
12806
|
| boolean
|
|
11121
|
-
|
|
|
12807
|
+
| (
|
|
12808
|
+
| (
|
|
12809
|
+
| {
|
|
12810
|
+
pattern?: string;
|
|
12811
|
+
flags?: string;
|
|
12812
|
+
}
|
|
12813
|
+
| string
|
|
12814
|
+
)[]
|
|
12815
|
+
| (
|
|
12816
|
+
| {
|
|
12817
|
+
pattern?: string;
|
|
12818
|
+
flags?: string;
|
|
12819
|
+
}
|
|
12820
|
+
| string
|
|
12821
|
+
)
|
|
12822
|
+
)
|
|
11122
12823
|
| {
|
|
11123
|
-
block?:
|
|
11124
|
-
|
|
11125
|
-
|
|
12824
|
+
block?:
|
|
12825
|
+
| boolean
|
|
12826
|
+
| (
|
|
12827
|
+
| (
|
|
12828
|
+
| {
|
|
12829
|
+
pattern?: string;
|
|
12830
|
+
flags?: string;
|
|
12831
|
+
}
|
|
12832
|
+
| string
|
|
12833
|
+
)[]
|
|
12834
|
+
| (
|
|
12835
|
+
| {
|
|
12836
|
+
pattern?: string;
|
|
12837
|
+
flags?: string;
|
|
12838
|
+
}
|
|
12839
|
+
| string
|
|
12840
|
+
)
|
|
12841
|
+
);
|
|
12842
|
+
line?:
|
|
12843
|
+
| boolean
|
|
12844
|
+
| (
|
|
12845
|
+
| (
|
|
12846
|
+
| {
|
|
12847
|
+
pattern?: string;
|
|
12848
|
+
flags?: string;
|
|
12849
|
+
}
|
|
12850
|
+
| string
|
|
12851
|
+
)[]
|
|
12852
|
+
| (
|
|
12853
|
+
| {
|
|
12854
|
+
pattern?: string;
|
|
12855
|
+
flags?: string;
|
|
12856
|
+
}
|
|
12857
|
+
| string
|
|
12858
|
+
)
|
|
12859
|
+
);
|
|
11126
12860
|
};
|
|
11127
12861
|
|
|
11128
12862
|
partitionByNewLine?: boolean;
|
|
11129
|
-
|
|
11130
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom";
|
|
11131
12863
|
},
|
|
11132
12864
|
];
|
|
11133
12865
|
|
|
@@ -14831,7 +16563,9 @@ type StylisticQuotes =
|
|
|
14831
16563
|
| "avoid-escape"
|
|
14832
16564
|
| {
|
|
14833
16565
|
avoidEscape?: boolean;
|
|
14834
|
-
allowTemplateLiterals?:
|
|
16566
|
+
allowTemplateLiterals?:
|
|
16567
|
+
| boolean
|
|
16568
|
+
| ("never" | "avoidEscape" | "always");
|
|
14835
16569
|
ignoreStringLiterals?: boolean;
|
|
14836
16570
|
}
|
|
14837
16571
|
),
|
|
@@ -15226,6 +16960,11 @@ interface VitestRuleOptions {
|
|
|
15226
16960
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-spy-on.md
|
|
15227
16961
|
*/
|
|
15228
16962
|
"vitest/prefer-spy-on"?: Linter.RuleEntry<[]>;
|
|
16963
|
+
/**
|
|
16964
|
+
* enforce using `toBe(true)` and `toBe(false)` over matchers that coerce types to boolean
|
|
16965
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-boolean-matchers.md
|
|
16966
|
+
*/
|
|
16967
|
+
"vitest/prefer-strict-boolean-matchers"?: Linter.RuleEntry<[]>;
|
|
15229
16968
|
/**
|
|
15230
16969
|
* enforce strict equal over equal
|
|
15231
16970
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-equal.md
|
|
@@ -15283,6 +17022,11 @@ interface VitestRuleOptions {
|
|
|
15283
17022
|
"vitest/require-local-test-context-for-concurrent-snapshots"?: Linter.RuleEntry<
|
|
15284
17023
|
[]
|
|
15285
17024
|
>;
|
|
17025
|
+
/**
|
|
17026
|
+
* enforce using type parameters with vitest mock functions
|
|
17027
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-mock-type-parameters.md
|
|
17028
|
+
*/
|
|
17029
|
+
"vitest/require-mock-type-parameters"?: Linter.RuleEntry<VitestRequireMockTypeParameters>;
|
|
15286
17030
|
/**
|
|
15287
17031
|
* require toThrow() to be called with an error message
|
|
15288
17032
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-to-throw-message.md
|
|
@@ -15442,6 +17186,14 @@ type VitestRequireHook =
|
|
|
15442
17186
|
allowedFunctionCalls?: string[];
|
|
15443
17187
|
},
|
|
15444
17188
|
];
|
|
17189
|
+
// ----- vitest/require-mock-type-parameters -----
|
|
17190
|
+
type VitestRequireMockTypeParameters =
|
|
17191
|
+
| []
|
|
17192
|
+
| [
|
|
17193
|
+
{
|
|
17194
|
+
checkImportFunctions?: boolean;
|
|
17195
|
+
},
|
|
17196
|
+
];
|
|
15445
17197
|
// ----- vitest/require-top-level-describe -----
|
|
15446
17198
|
type VitestRequireTopLevelDescribe =
|
|
15447
17199
|
| []
|
|
@@ -15902,7 +17654,7 @@ interface TypescriptRuleOptions {
|
|
|
15902
17654
|
*/
|
|
15903
17655
|
"@typescript-eslint/no-for-in-array"?: Linter.RuleEntry<[]>;
|
|
15904
17656
|
/**
|
|
15905
|
-
* Disallow the use of `eval()`-like
|
|
17657
|
+
* Disallow the use of `eval()`-like functions
|
|
15906
17658
|
* @see https://typescript-eslint.io/rules/no-implied-eval
|
|
15907
17659
|
*/
|
|
15908
17660
|
"@typescript-eslint/no-implied-eval"?: Linter.RuleEntry<[]>;
|
|
@@ -19781,6 +21533,8 @@ type TypescriptEslintNoUnnecessaryBooleanLiteralCompare =
|
|
|
19781
21533
|
allowComparingNullableBooleansToFalse?: boolean;
|
|
19782
21534
|
|
|
19783
21535
|
allowComparingNullableBooleansToTrue?: boolean;
|
|
21536
|
+
|
|
21537
|
+
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
|
|
19784
21538
|
},
|
|
19785
21539
|
];
|
|
19786
21540
|
// ----- @typescript-eslint/no-unnecessary-condition -----
|
|
@@ -19788,7 +21542,9 @@ type TypescriptEslintNoUnnecessaryCondition =
|
|
|
19788
21542
|
| []
|
|
19789
21543
|
| [
|
|
19790
21544
|
{
|
|
19791
|
-
allowConstantLoopConditions?:
|
|
21545
|
+
allowConstantLoopConditions?:
|
|
21546
|
+
| boolean
|
|
21547
|
+
| ("always" | "never" | "only-allowed-literals");
|
|
19792
21548
|
|
|
19793
21549
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
|
|
19794
21550
|
|
|
@@ -22468,7 +24224,7 @@ declare function jsse(options?: OptionsConfig & TypedFlatConfigItem, ...userConf
|
|
|
22468
24224
|
declare function defineConfig(options?: OptionsConfig & TypedFlatConfigItem, ...userConfigs: (TypedFlatConfigItem | TypedFlatConfigItem[])[]): Promise<TypedFlatConfigItem[]>;
|
|
22469
24225
|
type DefineConfig = typeof defineConfig;
|
|
22470
24226
|
|
|
22471
|
-
declare const VERSION = "0.2.
|
|
24227
|
+
declare const VERSION = "0.2.33";
|
|
22472
24228
|
|
|
22473
24229
|
declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
|
|
22474
24230
|
declare const GLOB_JS_SRC_EXT = "?([cm])js?(x)";
|
|
@@ -24053,9 +25809,7 @@ declare function importYmlLibs(): Promise<{
|
|
|
24053
25809
|
};
|
|
24054
25810
|
}>;
|
|
24055
25811
|
declare function importPluginMarkdown(): Promise<{
|
|
24056
|
-
pluginMarkdown:
|
|
24057
|
-
languages: Record<string, _eslint_markdown.Language>;
|
|
24058
|
-
};
|
|
25812
|
+
pluginMarkdown: typeof _eslint_markdown.default;
|
|
24059
25813
|
}>;
|
|
24060
25814
|
declare function importPluginJsdoc(): Promise<{
|
|
24061
25815
|
pluginJsdoc: eslint.ESLint.Plugin & {
|