@svifty7/eslint-config 0.0.8 → 0.0.9
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 +1 -0
- package/dist/index.d.cts +579 -202
- package/dist/index.d.mts +579 -202
- package/package.json +19 -19
package/dist/index.d.mts
CHANGED
|
@@ -3466,6 +3466,7 @@ interface RuleOptions {
|
|
|
3466
3466
|
/**
|
|
3467
3467
|
* Enforce props alphabetical sorting
|
|
3468
3468
|
* @see https://eslint.style/rules/jsx-sort-props
|
|
3469
|
+
* @deprecated
|
|
3469
3470
|
*/
|
|
3470
3471
|
'style/jsx-sort-props'?: Linter.RuleEntry<StyleJsxSortProps>;
|
|
3471
3472
|
/**
|
|
@@ -3820,7 +3821,7 @@ interface RuleOptions {
|
|
|
3820
3821
|
* disallow conditional expects
|
|
3821
3822
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-conditional-expect.md
|
|
3822
3823
|
*/
|
|
3823
|
-
'test/no-conditional-expect'?: Linter.RuleEntry<
|
|
3824
|
+
'test/no-conditional-expect'?: Linter.RuleEntry<TestNoConditionalExpect>;
|
|
3824
3825
|
/**
|
|
3825
3826
|
* disallow conditional tests
|
|
3826
3827
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-conditional-in-test.md
|
|
@@ -4137,6 +4138,11 @@ interface RuleOptions {
|
|
|
4137
4138
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-mock-type-parameters.md
|
|
4138
4139
|
*/
|
|
4139
4140
|
'test/require-mock-type-parameters'?: Linter.RuleEntry<TestRequireMockTypeParameters>;
|
|
4141
|
+
/**
|
|
4142
|
+
* require tests to declare a timeout
|
|
4143
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-test-timeout.md
|
|
4144
|
+
*/
|
|
4145
|
+
'test/require-test-timeout'?: Linter.RuleEntry<[]>;
|
|
4140
4146
|
/**
|
|
4141
4147
|
* require toThrow() to be called with an error message
|
|
4142
4148
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-to-throw-message.md
|
|
@@ -4924,6 +4930,11 @@ interface RuleOptions {
|
|
|
4924
4930
|
* @see https://typescript-eslint.io/rules/strict-boolean-expressions
|
|
4925
4931
|
*/
|
|
4926
4932
|
'ts/strict-boolean-expressions'?: Linter.RuleEntry<TsStrictBooleanExpressions>;
|
|
4933
|
+
/**
|
|
4934
|
+
* Disallow passing a value-returning function in a position accepting a void function
|
|
4935
|
+
* @see https://typescript-eslint.io/rules/strict-void-return
|
|
4936
|
+
*/
|
|
4937
|
+
'ts/strict-void-return'?: Linter.RuleEntry<TsStrictVoidReturn>;
|
|
4927
4938
|
/**
|
|
4928
4939
|
* Require switch-case statements to be exhaustive
|
|
4929
4940
|
* @see https://typescript-eslint.io/rules/switch-exhaustiveness-check
|
|
@@ -7404,6 +7415,7 @@ type FormatDprint = [] | [{
|
|
|
7404
7415
|
languageOptions?: {
|
|
7405
7416
|
[k: string]: unknown | undefined;
|
|
7406
7417
|
};
|
|
7418
|
+
plugins?: unknown[];
|
|
7407
7419
|
[k: string]: unknown | undefined;
|
|
7408
7420
|
}];
|
|
7409
7421
|
// ----- format/prettier -----
|
|
@@ -8096,6 +8108,7 @@ type JsdocRequireHyphenBeforeParamDescription = [] | [("always" | "never")] | [(
|
|
|
8096
8108
|
}];
|
|
8097
8109
|
// ----- jsdoc/require-jsdoc -----
|
|
8098
8110
|
type JsdocRequireJsdoc = [] | [{
|
|
8111
|
+
checkAllFunctionExpressions?: boolean;
|
|
8099
8112
|
checkConstructors?: boolean;
|
|
8100
8113
|
checkGetters?: (boolean | "no-setter");
|
|
8101
8114
|
checkSetters?: (boolean | "no-getter");
|
|
@@ -9946,10 +9959,10 @@ type PaddingLineBetweenStatements = {
|
|
|
9946
9959
|
// ----- perfectionist/sort-array-includes -----
|
|
9947
9960
|
type PerfectionistSortArrayIncludes = {
|
|
9948
9961
|
fallbackSort?: {
|
|
9949
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
9962
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
9950
9963
|
order?: ("asc" | "desc");
|
|
9951
9964
|
};
|
|
9952
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
9965
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
9953
9966
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
9954
9967
|
ignoreCase?: boolean;
|
|
9955
9968
|
alphabet?: string;
|
|
@@ -9957,14 +9970,23 @@ type PerfectionistSortArrayIncludes = {
|
|
|
9957
9970
|
order?: ("asc" | "desc");
|
|
9958
9971
|
customGroups?: ({
|
|
9959
9972
|
fallbackSort?: {
|
|
9960
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
9973
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
9961
9974
|
order?: ("asc" | "desc");
|
|
9962
9975
|
};
|
|
9963
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
9976
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
9964
9977
|
groupName: string;
|
|
9965
9978
|
newlinesInside?: ("ignore" | number);
|
|
9966
9979
|
order?: ("asc" | "desc");
|
|
9967
|
-
anyOf: {
|
|
9980
|
+
anyOf: [{
|
|
9981
|
+
elementNamePattern?: (({
|
|
9982
|
+
pattern: string;
|
|
9983
|
+
flags?: string;
|
|
9984
|
+
} | string)[] | ({
|
|
9985
|
+
pattern: string;
|
|
9986
|
+
flags?: string;
|
|
9987
|
+
} | string));
|
|
9988
|
+
selector?: ("literal" | "spread");
|
|
9989
|
+
}, ...({
|
|
9968
9990
|
elementNamePattern?: (({
|
|
9969
9991
|
pattern: string;
|
|
9970
9992
|
flags?: string;
|
|
@@ -9973,13 +9995,13 @@ type PerfectionistSortArrayIncludes = {
|
|
|
9973
9995
|
flags?: string;
|
|
9974
9996
|
} | string));
|
|
9975
9997
|
selector?: ("literal" | "spread");
|
|
9976
|
-
}[];
|
|
9998
|
+
})[]];
|
|
9977
9999
|
} | {
|
|
9978
10000
|
fallbackSort?: {
|
|
9979
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10001
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
9980
10002
|
order?: ("asc" | "desc");
|
|
9981
10003
|
};
|
|
9982
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10004
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
9983
10005
|
groupName: string;
|
|
9984
10006
|
newlinesInside?: ("ignore" | number);
|
|
9985
10007
|
order?: ("asc" | "desc");
|
|
@@ -9997,8 +10019,12 @@ type PerfectionistSortArrayIncludes = {
|
|
|
9997
10019
|
newlinesBetween: ("ignore" | number);
|
|
9998
10020
|
} | {
|
|
9999
10021
|
group: (string | [string, ...(string)[]]);
|
|
10022
|
+
fallbackSort?: {
|
|
10023
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10024
|
+
order?: ("asc" | "desc");
|
|
10025
|
+
};
|
|
10000
10026
|
commentAbove?: string;
|
|
10001
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10027
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10002
10028
|
newlinesInside?: ("ignore" | number);
|
|
10003
10029
|
order?: ("asc" | "desc");
|
|
10004
10030
|
})[];
|
|
@@ -10039,10 +10065,10 @@ type PerfectionistSortArrayIncludes = {
|
|
|
10039
10065
|
// ----- perfectionist/sort-classes -----
|
|
10040
10066
|
type PerfectionistSortClasses = [] | [{
|
|
10041
10067
|
fallbackSort?: {
|
|
10042
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10068
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10043
10069
|
order?: ("asc" | "desc");
|
|
10044
10070
|
};
|
|
10045
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10071
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10046
10072
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10047
10073
|
ignoreCase?: boolean;
|
|
10048
10074
|
alphabet?: string;
|
|
@@ -10050,14 +10076,38 @@ type PerfectionistSortClasses = [] | [{
|
|
|
10050
10076
|
order?: ("asc" | "desc");
|
|
10051
10077
|
customGroups?: ({
|
|
10052
10078
|
fallbackSort?: {
|
|
10053
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10079
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10054
10080
|
order?: ("asc" | "desc");
|
|
10055
10081
|
};
|
|
10056
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10082
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10057
10083
|
groupName: string;
|
|
10058
10084
|
newlinesInside?: ("ignore" | number);
|
|
10059
10085
|
order?: ("asc" | "desc");
|
|
10060
|
-
anyOf: {
|
|
10086
|
+
anyOf: [{
|
|
10087
|
+
elementNamePattern?: (({
|
|
10088
|
+
pattern: string;
|
|
10089
|
+
flags?: string;
|
|
10090
|
+
} | string)[] | ({
|
|
10091
|
+
pattern: string;
|
|
10092
|
+
flags?: string;
|
|
10093
|
+
} | string));
|
|
10094
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[];
|
|
10095
|
+
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method");
|
|
10096
|
+
decoratorNamePattern?: (({
|
|
10097
|
+
pattern: string;
|
|
10098
|
+
flags?: string;
|
|
10099
|
+
} | string)[] | ({
|
|
10100
|
+
pattern: string;
|
|
10101
|
+
flags?: string;
|
|
10102
|
+
} | string));
|
|
10103
|
+
elementValuePattern?: (({
|
|
10104
|
+
pattern: string;
|
|
10105
|
+
flags?: string;
|
|
10106
|
+
} | string)[] | ({
|
|
10107
|
+
pattern: string;
|
|
10108
|
+
flags?: string;
|
|
10109
|
+
} | string));
|
|
10110
|
+
}, ...({
|
|
10061
10111
|
elementNamePattern?: (({
|
|
10062
10112
|
pattern: string;
|
|
10063
10113
|
flags?: string;
|
|
@@ -10081,13 +10131,13 @@ type PerfectionistSortClasses = [] | [{
|
|
|
10081
10131
|
pattern: string;
|
|
10082
10132
|
flags?: string;
|
|
10083
10133
|
} | string));
|
|
10084
|
-
}[];
|
|
10134
|
+
})[]];
|
|
10085
10135
|
} | {
|
|
10086
10136
|
fallbackSort?: {
|
|
10087
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10137
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10088
10138
|
order?: ("asc" | "desc");
|
|
10089
10139
|
};
|
|
10090
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10140
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10091
10141
|
groupName: string;
|
|
10092
10142
|
newlinesInside?: ("ignore" | number);
|
|
10093
10143
|
order?: ("asc" | "desc");
|
|
@@ -10120,8 +10170,12 @@ type PerfectionistSortClasses = [] | [{
|
|
|
10120
10170
|
newlinesBetween: ("ignore" | number);
|
|
10121
10171
|
} | {
|
|
10122
10172
|
group: (string | [string, ...(string)[]]);
|
|
10173
|
+
fallbackSort?: {
|
|
10174
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10175
|
+
order?: ("asc" | "desc");
|
|
10176
|
+
};
|
|
10123
10177
|
commentAbove?: string;
|
|
10124
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10178
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10125
10179
|
newlinesInside?: ("ignore" | number);
|
|
10126
10180
|
order?: ("asc" | "desc");
|
|
10127
10181
|
})[];
|
|
@@ -10160,10 +10214,10 @@ type PerfectionistSortClasses = [] | [{
|
|
|
10160
10214
|
// ----- perfectionist/sort-decorators -----
|
|
10161
10215
|
type PerfectionistSortDecorators = {
|
|
10162
10216
|
fallbackSort?: {
|
|
10163
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10217
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10164
10218
|
order?: ("asc" | "desc");
|
|
10165
10219
|
};
|
|
10166
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10220
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10167
10221
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10168
10222
|
ignoreCase?: boolean;
|
|
10169
10223
|
alphabet?: string;
|
|
@@ -10171,14 +10225,22 @@ type PerfectionistSortDecorators = {
|
|
|
10171
10225
|
order?: ("asc" | "desc");
|
|
10172
10226
|
customGroups?: ({
|
|
10173
10227
|
fallbackSort?: {
|
|
10174
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10228
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10175
10229
|
order?: ("asc" | "desc");
|
|
10176
10230
|
};
|
|
10177
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10231
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10178
10232
|
groupName: string;
|
|
10179
10233
|
newlinesInside?: ("ignore" | number);
|
|
10180
10234
|
order?: ("asc" | "desc");
|
|
10181
|
-
anyOf: {
|
|
10235
|
+
anyOf: [{
|
|
10236
|
+
elementNamePattern?: (({
|
|
10237
|
+
pattern: string;
|
|
10238
|
+
flags?: string;
|
|
10239
|
+
} | string)[] | ({
|
|
10240
|
+
pattern: string;
|
|
10241
|
+
flags?: string;
|
|
10242
|
+
} | string));
|
|
10243
|
+
}, ...({
|
|
10182
10244
|
elementNamePattern?: (({
|
|
10183
10245
|
pattern: string;
|
|
10184
10246
|
flags?: string;
|
|
@@ -10186,13 +10248,13 @@ type PerfectionistSortDecorators = {
|
|
|
10186
10248
|
pattern: string;
|
|
10187
10249
|
flags?: string;
|
|
10188
10250
|
} | string));
|
|
10189
|
-
}[];
|
|
10251
|
+
})[]];
|
|
10190
10252
|
} | {
|
|
10191
10253
|
fallbackSort?: {
|
|
10192
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10254
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10193
10255
|
order?: ("asc" | "desc");
|
|
10194
10256
|
};
|
|
10195
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10257
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10196
10258
|
groupName: string;
|
|
10197
10259
|
newlinesInside?: ("ignore" | number);
|
|
10198
10260
|
order?: ("asc" | "desc");
|
|
@@ -10209,8 +10271,12 @@ type PerfectionistSortDecorators = {
|
|
|
10209
10271
|
newlinesBetween: ("ignore" | number);
|
|
10210
10272
|
} | {
|
|
10211
10273
|
group: (string | [string, ...(string)[]]);
|
|
10274
|
+
fallbackSort?: {
|
|
10275
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10276
|
+
order?: ("asc" | "desc");
|
|
10277
|
+
};
|
|
10212
10278
|
commentAbove?: string;
|
|
10213
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10279
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10214
10280
|
newlinesInside?: ("ignore" | number);
|
|
10215
10281
|
order?: ("asc" | "desc");
|
|
10216
10282
|
})[];
|
|
@@ -10247,10 +10313,10 @@ type PerfectionistSortDecorators = {
|
|
|
10247
10313
|
// ----- perfectionist/sort-enums -----
|
|
10248
10314
|
type PerfectionistSortEnums = [] | [{
|
|
10249
10315
|
fallbackSort?: {
|
|
10250
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10316
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10251
10317
|
order?: ("asc" | "desc");
|
|
10252
10318
|
};
|
|
10253
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10319
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10254
10320
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10255
10321
|
ignoreCase?: boolean;
|
|
10256
10322
|
alphabet?: string;
|
|
@@ -10258,14 +10324,29 @@ type PerfectionistSortEnums = [] | [{
|
|
|
10258
10324
|
order?: ("asc" | "desc");
|
|
10259
10325
|
customGroups?: ({
|
|
10260
10326
|
fallbackSort?: {
|
|
10261
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10327
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10262
10328
|
order?: ("asc" | "desc");
|
|
10263
10329
|
};
|
|
10264
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10330
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10265
10331
|
groupName: string;
|
|
10266
10332
|
newlinesInside?: ("ignore" | number);
|
|
10267
10333
|
order?: ("asc" | "desc");
|
|
10268
|
-
anyOf: {
|
|
10334
|
+
anyOf: [{
|
|
10335
|
+
elementNamePattern?: (({
|
|
10336
|
+
pattern: string;
|
|
10337
|
+
flags?: string;
|
|
10338
|
+
} | string)[] | ({
|
|
10339
|
+
pattern: string;
|
|
10340
|
+
flags?: string;
|
|
10341
|
+
} | string));
|
|
10342
|
+
elementValuePattern?: (({
|
|
10343
|
+
pattern: string;
|
|
10344
|
+
flags?: string;
|
|
10345
|
+
} | string)[] | ({
|
|
10346
|
+
pattern: string;
|
|
10347
|
+
flags?: string;
|
|
10348
|
+
} | string));
|
|
10349
|
+
}, ...({
|
|
10269
10350
|
elementNamePattern?: (({
|
|
10270
10351
|
pattern: string;
|
|
10271
10352
|
flags?: string;
|
|
@@ -10280,13 +10361,13 @@ type PerfectionistSortEnums = [] | [{
|
|
|
10280
10361
|
pattern: string;
|
|
10281
10362
|
flags?: string;
|
|
10282
10363
|
} | string));
|
|
10283
|
-
}[];
|
|
10364
|
+
})[]];
|
|
10284
10365
|
} | {
|
|
10285
10366
|
fallbackSort?: {
|
|
10286
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10367
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10287
10368
|
order?: ("asc" | "desc");
|
|
10288
10369
|
};
|
|
10289
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10370
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10290
10371
|
groupName: string;
|
|
10291
10372
|
newlinesInside?: ("ignore" | number);
|
|
10292
10373
|
order?: ("asc" | "desc");
|
|
@@ -10310,8 +10391,12 @@ type PerfectionistSortEnums = [] | [{
|
|
|
10310
10391
|
newlinesBetween: ("ignore" | number);
|
|
10311
10392
|
} | {
|
|
10312
10393
|
group: (string | [string, ...(string)[]]);
|
|
10394
|
+
fallbackSort?: {
|
|
10395
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10396
|
+
order?: ("asc" | "desc");
|
|
10397
|
+
};
|
|
10313
10398
|
commentAbove?: string;
|
|
10314
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10399
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10315
10400
|
newlinesInside?: ("ignore" | number);
|
|
10316
10401
|
order?: ("asc" | "desc");
|
|
10317
10402
|
})[];
|
|
@@ -10344,10 +10429,10 @@ type PerfectionistSortEnums = [] | [{
|
|
|
10344
10429
|
// ----- perfectionist/sort-export-attributes -----
|
|
10345
10430
|
type PerfectionistSortExportAttributes = {
|
|
10346
10431
|
fallbackSort?: {
|
|
10347
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10432
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10348
10433
|
order?: ("asc" | "desc");
|
|
10349
10434
|
};
|
|
10350
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10435
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10351
10436
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10352
10437
|
ignoreCase?: boolean;
|
|
10353
10438
|
alphabet?: string;
|
|
@@ -10355,14 +10440,22 @@ type PerfectionistSortExportAttributes = {
|
|
|
10355
10440
|
order?: ("asc" | "desc");
|
|
10356
10441
|
customGroups?: ({
|
|
10357
10442
|
fallbackSort?: {
|
|
10358
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10443
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10359
10444
|
order?: ("asc" | "desc");
|
|
10360
10445
|
};
|
|
10361
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10446
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10362
10447
|
groupName: string;
|
|
10363
10448
|
newlinesInside?: ("ignore" | number);
|
|
10364
10449
|
order?: ("asc" | "desc");
|
|
10365
|
-
anyOf: {
|
|
10450
|
+
anyOf: [{
|
|
10451
|
+
elementNamePattern?: (({
|
|
10452
|
+
pattern: string;
|
|
10453
|
+
flags?: string;
|
|
10454
|
+
} | string)[] | ({
|
|
10455
|
+
pattern: string;
|
|
10456
|
+
flags?: string;
|
|
10457
|
+
} | string));
|
|
10458
|
+
}, ...({
|
|
10366
10459
|
elementNamePattern?: (({
|
|
10367
10460
|
pattern: string;
|
|
10368
10461
|
flags?: string;
|
|
@@ -10370,13 +10463,13 @@ type PerfectionistSortExportAttributes = {
|
|
|
10370
10463
|
pattern: string;
|
|
10371
10464
|
flags?: string;
|
|
10372
10465
|
} | string));
|
|
10373
|
-
}[];
|
|
10466
|
+
})[]];
|
|
10374
10467
|
} | {
|
|
10375
10468
|
fallbackSort?: {
|
|
10376
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10469
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10377
10470
|
order?: ("asc" | "desc");
|
|
10378
10471
|
};
|
|
10379
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10472
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10380
10473
|
groupName: string;
|
|
10381
10474
|
newlinesInside?: ("ignore" | number);
|
|
10382
10475
|
order?: ("asc" | "desc");
|
|
@@ -10393,8 +10486,12 @@ type PerfectionistSortExportAttributes = {
|
|
|
10393
10486
|
newlinesBetween: ("ignore" | number);
|
|
10394
10487
|
} | {
|
|
10395
10488
|
group: (string | [string, ...(string)[]]);
|
|
10489
|
+
fallbackSort?: {
|
|
10490
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10491
|
+
order?: ("asc" | "desc");
|
|
10492
|
+
};
|
|
10396
10493
|
commentAbove?: string;
|
|
10397
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10494
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10398
10495
|
newlinesInside?: ("ignore" | number);
|
|
10399
10496
|
order?: ("asc" | "desc");
|
|
10400
10497
|
})[];
|
|
@@ -10426,10 +10523,10 @@ type PerfectionistSortExportAttributes = {
|
|
|
10426
10523
|
// ----- perfectionist/sort-exports -----
|
|
10427
10524
|
type PerfectionistSortExports = {
|
|
10428
10525
|
fallbackSort?: {
|
|
10429
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10526
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10430
10527
|
order?: ("asc" | "desc");
|
|
10431
10528
|
};
|
|
10432
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10529
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10433
10530
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10434
10531
|
ignoreCase?: boolean;
|
|
10435
10532
|
alphabet?: string;
|
|
@@ -10437,14 +10534,24 @@ type PerfectionistSortExports = {
|
|
|
10437
10534
|
order?: ("asc" | "desc");
|
|
10438
10535
|
customGroups?: ({
|
|
10439
10536
|
fallbackSort?: {
|
|
10440
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10537
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10441
10538
|
order?: ("asc" | "desc");
|
|
10442
10539
|
};
|
|
10443
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10540
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10444
10541
|
groupName: string;
|
|
10445
10542
|
newlinesInside?: ("ignore" | number);
|
|
10446
10543
|
order?: ("asc" | "desc");
|
|
10447
|
-
anyOf: {
|
|
10544
|
+
anyOf: [{
|
|
10545
|
+
elementNamePattern?: (({
|
|
10546
|
+
pattern: string;
|
|
10547
|
+
flags?: string;
|
|
10548
|
+
} | string)[] | ({
|
|
10549
|
+
pattern: string;
|
|
10550
|
+
flags?: string;
|
|
10551
|
+
} | string));
|
|
10552
|
+
modifiers?: ("value" | "type" | "named" | "wildcard" | "multiline" | "singleline")[];
|
|
10553
|
+
selector?: "export";
|
|
10554
|
+
}, ...({
|
|
10448
10555
|
elementNamePattern?: (({
|
|
10449
10556
|
pattern: string;
|
|
10450
10557
|
flags?: string;
|
|
@@ -10454,13 +10561,13 @@ type PerfectionistSortExports = {
|
|
|
10454
10561
|
} | string));
|
|
10455
10562
|
modifiers?: ("value" | "type" | "named" | "wildcard" | "multiline" | "singleline")[];
|
|
10456
10563
|
selector?: "export";
|
|
10457
|
-
}[];
|
|
10564
|
+
})[]];
|
|
10458
10565
|
} | {
|
|
10459
10566
|
fallbackSort?: {
|
|
10460
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10567
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10461
10568
|
order?: ("asc" | "desc");
|
|
10462
10569
|
};
|
|
10463
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10570
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10464
10571
|
groupName: string;
|
|
10465
10572
|
newlinesInside?: ("ignore" | number);
|
|
10466
10573
|
order?: ("asc" | "desc");
|
|
@@ -10479,8 +10586,12 @@ type PerfectionistSortExports = {
|
|
|
10479
10586
|
newlinesBetween: ("ignore" | number);
|
|
10480
10587
|
} | {
|
|
10481
10588
|
group: (string | [string, ...(string)[]]);
|
|
10589
|
+
fallbackSort?: {
|
|
10590
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10591
|
+
order?: ("asc" | "desc");
|
|
10592
|
+
};
|
|
10482
10593
|
commentAbove?: string;
|
|
10483
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10594
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10484
10595
|
newlinesInside?: ("ignore" | number);
|
|
10485
10596
|
order?: ("asc" | "desc");
|
|
10486
10597
|
})[];
|
|
@@ -10512,10 +10623,10 @@ type PerfectionistSortExports = {
|
|
|
10512
10623
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
10513
10624
|
type PerfectionistSortHeritageClauses = {
|
|
10514
10625
|
fallbackSort?: {
|
|
10515
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10626
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10516
10627
|
order?: ("asc" | "desc");
|
|
10517
10628
|
};
|
|
10518
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10629
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10519
10630
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10520
10631
|
ignoreCase?: boolean;
|
|
10521
10632
|
alphabet?: string;
|
|
@@ -10523,14 +10634,22 @@ type PerfectionistSortHeritageClauses = {
|
|
|
10523
10634
|
order?: ("asc" | "desc");
|
|
10524
10635
|
customGroups?: ({
|
|
10525
10636
|
fallbackSort?: {
|
|
10526
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10637
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10527
10638
|
order?: ("asc" | "desc");
|
|
10528
10639
|
};
|
|
10529
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10640
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10530
10641
|
groupName: string;
|
|
10531
10642
|
newlinesInside?: ("ignore" | number);
|
|
10532
10643
|
order?: ("asc" | "desc");
|
|
10533
|
-
anyOf: {
|
|
10644
|
+
anyOf: [{
|
|
10645
|
+
elementNamePattern?: (({
|
|
10646
|
+
pattern: string;
|
|
10647
|
+
flags?: string;
|
|
10648
|
+
} | string)[] | ({
|
|
10649
|
+
pattern: string;
|
|
10650
|
+
flags?: string;
|
|
10651
|
+
} | string));
|
|
10652
|
+
}, ...({
|
|
10534
10653
|
elementNamePattern?: (({
|
|
10535
10654
|
pattern: string;
|
|
10536
10655
|
flags?: string;
|
|
@@ -10538,13 +10657,13 @@ type PerfectionistSortHeritageClauses = {
|
|
|
10538
10657
|
pattern: string;
|
|
10539
10658
|
flags?: string;
|
|
10540
10659
|
} | string));
|
|
10541
|
-
}[];
|
|
10660
|
+
})[]];
|
|
10542
10661
|
} | {
|
|
10543
10662
|
fallbackSort?: {
|
|
10544
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10663
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10545
10664
|
order?: ("asc" | "desc");
|
|
10546
10665
|
};
|
|
10547
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10666
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10548
10667
|
groupName: string;
|
|
10549
10668
|
newlinesInside?: ("ignore" | number);
|
|
10550
10669
|
order?: ("asc" | "desc");
|
|
@@ -10561,8 +10680,12 @@ type PerfectionistSortHeritageClauses = {
|
|
|
10561
10680
|
newlinesBetween: ("ignore" | number);
|
|
10562
10681
|
} | {
|
|
10563
10682
|
group: (string | [string, ...(string)[]]);
|
|
10683
|
+
fallbackSort?: {
|
|
10684
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10685
|
+
order?: ("asc" | "desc");
|
|
10686
|
+
};
|
|
10564
10687
|
commentAbove?: string;
|
|
10565
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10688
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10566
10689
|
newlinesInside?: ("ignore" | number);
|
|
10567
10690
|
order?: ("asc" | "desc");
|
|
10568
10691
|
})[];
|
|
@@ -10594,10 +10717,10 @@ type PerfectionistSortHeritageClauses = {
|
|
|
10594
10717
|
// ----- perfectionist/sort-import-attributes -----
|
|
10595
10718
|
type PerfectionistSortImportAttributes = {
|
|
10596
10719
|
fallbackSort?: {
|
|
10597
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10720
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10598
10721
|
order?: ("asc" | "desc");
|
|
10599
10722
|
};
|
|
10600
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10723
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10601
10724
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10602
10725
|
ignoreCase?: boolean;
|
|
10603
10726
|
alphabet?: string;
|
|
@@ -10605,14 +10728,22 @@ type PerfectionistSortImportAttributes = {
|
|
|
10605
10728
|
order?: ("asc" | "desc");
|
|
10606
10729
|
customGroups?: ({
|
|
10607
10730
|
fallbackSort?: {
|
|
10608
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10731
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10609
10732
|
order?: ("asc" | "desc");
|
|
10610
10733
|
};
|
|
10611
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10734
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10612
10735
|
groupName: string;
|
|
10613
10736
|
newlinesInside?: ("ignore" | number);
|
|
10614
10737
|
order?: ("asc" | "desc");
|
|
10615
|
-
anyOf: {
|
|
10738
|
+
anyOf: [{
|
|
10739
|
+
elementNamePattern?: (({
|
|
10740
|
+
pattern: string;
|
|
10741
|
+
flags?: string;
|
|
10742
|
+
} | string)[] | ({
|
|
10743
|
+
pattern: string;
|
|
10744
|
+
flags?: string;
|
|
10745
|
+
} | string));
|
|
10746
|
+
}, ...({
|
|
10616
10747
|
elementNamePattern?: (({
|
|
10617
10748
|
pattern: string;
|
|
10618
10749
|
flags?: string;
|
|
@@ -10620,13 +10751,13 @@ type PerfectionistSortImportAttributes = {
|
|
|
10620
10751
|
pattern: string;
|
|
10621
10752
|
flags?: string;
|
|
10622
10753
|
} | string));
|
|
10623
|
-
}[];
|
|
10754
|
+
})[]];
|
|
10624
10755
|
} | {
|
|
10625
10756
|
fallbackSort?: {
|
|
10626
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10757
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10627
10758
|
order?: ("asc" | "desc");
|
|
10628
10759
|
};
|
|
10629
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10760
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10630
10761
|
groupName: string;
|
|
10631
10762
|
newlinesInside?: ("ignore" | number);
|
|
10632
10763
|
order?: ("asc" | "desc");
|
|
@@ -10643,8 +10774,12 @@ type PerfectionistSortImportAttributes = {
|
|
|
10643
10774
|
newlinesBetween: ("ignore" | number);
|
|
10644
10775
|
} | {
|
|
10645
10776
|
group: (string | [string, ...(string)[]]);
|
|
10777
|
+
fallbackSort?: {
|
|
10778
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10779
|
+
order?: ("asc" | "desc");
|
|
10780
|
+
};
|
|
10646
10781
|
commentAbove?: string;
|
|
10647
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10782
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10648
10783
|
newlinesInside?: ("ignore" | number);
|
|
10649
10784
|
order?: ("asc" | "desc");
|
|
10650
10785
|
})[];
|
|
@@ -10676,25 +10811,39 @@ type PerfectionistSortImportAttributes = {
|
|
|
10676
10811
|
// ----- perfectionist/sort-imports -----
|
|
10677
10812
|
type PerfectionistSortImports = {
|
|
10678
10813
|
fallbackSort?: {
|
|
10679
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "type-import-first");
|
|
10814
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "type-import-first");
|
|
10680
10815
|
order?: ("asc" | "desc");
|
|
10816
|
+
sortBy?: ("specifier" | "path");
|
|
10681
10817
|
};
|
|
10682
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "type-import-first");
|
|
10818
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "type-import-first");
|
|
10683
10819
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10684
10820
|
ignoreCase?: boolean;
|
|
10685
10821
|
alphabet?: string;
|
|
10686
10822
|
locales?: (string | string[]);
|
|
10687
10823
|
order?: ("asc" | "desc");
|
|
10824
|
+
sortBy?: ("specifier" | "path");
|
|
10688
10825
|
customGroups?: ({
|
|
10689
10826
|
fallbackSort?: {
|
|
10690
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "type-import-first");
|
|
10827
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "type-import-first");
|
|
10691
10828
|
order?: ("asc" | "desc");
|
|
10829
|
+
sortBy?: ("specifier" | "path");
|
|
10692
10830
|
};
|
|
10693
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "type-import-first");
|
|
10831
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "type-import-first");
|
|
10694
10832
|
groupName: string;
|
|
10695
10833
|
newlinesInside?: ("ignore" | number);
|
|
10696
10834
|
order?: ("asc" | "desc");
|
|
10697
|
-
|
|
10835
|
+
sortBy?: ("specifier" | "path");
|
|
10836
|
+
anyOf: [{
|
|
10837
|
+
elementNamePattern?: (({
|
|
10838
|
+
pattern: string;
|
|
10839
|
+
flags?: string;
|
|
10840
|
+
} | string)[] | ({
|
|
10841
|
+
pattern: string;
|
|
10842
|
+
flags?: string;
|
|
10843
|
+
} | string));
|
|
10844
|
+
modifiers?: ("default" | "multiline" | "named" | "require" | "side-effect" | "singleline" | "ts-equals" | "type" | "value" | "wildcard")[];
|
|
10845
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type");
|
|
10846
|
+
}, ...({
|
|
10698
10847
|
elementNamePattern?: (({
|
|
10699
10848
|
pattern: string;
|
|
10700
10849
|
flags?: string;
|
|
@@ -10704,16 +10853,18 @@ type PerfectionistSortImports = {
|
|
|
10704
10853
|
} | string));
|
|
10705
10854
|
modifiers?: ("default" | "multiline" | "named" | "require" | "side-effect" | "singleline" | "ts-equals" | "type" | "value" | "wildcard")[];
|
|
10706
10855
|
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type");
|
|
10707
|
-
}[];
|
|
10856
|
+
})[]];
|
|
10708
10857
|
} | {
|
|
10709
10858
|
fallbackSort?: {
|
|
10710
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "type-import-first");
|
|
10859
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "type-import-first");
|
|
10711
10860
|
order?: ("asc" | "desc");
|
|
10861
|
+
sortBy?: ("specifier" | "path");
|
|
10712
10862
|
};
|
|
10713
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "type-import-first");
|
|
10863
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "type-import-first");
|
|
10714
10864
|
groupName: string;
|
|
10715
10865
|
newlinesInside?: ("ignore" | number);
|
|
10716
10866
|
order?: ("asc" | "desc");
|
|
10867
|
+
sortBy?: ("specifier" | "path");
|
|
10717
10868
|
elementNamePattern?: (({
|
|
10718
10869
|
pattern: string;
|
|
10719
10870
|
flags?: string;
|
|
@@ -10729,10 +10880,16 @@ type PerfectionistSortImports = {
|
|
|
10729
10880
|
newlinesBetween: ("ignore" | number);
|
|
10730
10881
|
} | {
|
|
10731
10882
|
group: (string | [string, ...(string)[]]);
|
|
10883
|
+
fallbackSort?: {
|
|
10884
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "type-import-first");
|
|
10885
|
+
order?: ("asc" | "desc");
|
|
10886
|
+
sortBy?: ("specifier" | "path");
|
|
10887
|
+
};
|
|
10732
10888
|
commentAbove?: string;
|
|
10733
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "type-import-first");
|
|
10889
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "type-import-first");
|
|
10734
10890
|
newlinesInside?: ("ignore" | number);
|
|
10735
10891
|
order?: ("asc" | "desc");
|
|
10892
|
+
sortBy?: ("specifier" | "path");
|
|
10736
10893
|
})[];
|
|
10737
10894
|
newlinesBetween?: ("ignore" | number);
|
|
10738
10895
|
tsconfig?: {
|
|
@@ -10776,27 +10933,29 @@ type PerfectionistSortImports = {
|
|
|
10776
10933
|
// ----- perfectionist/sort-interfaces -----
|
|
10777
10934
|
type PerfectionistSortInterfaces = {
|
|
10778
10935
|
fallbackSort?: {
|
|
10779
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10936
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10780
10937
|
order?: ("asc" | "desc");
|
|
10781
10938
|
sortBy?: ("name" | "value");
|
|
10782
10939
|
};
|
|
10783
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10940
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10784
10941
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10785
10942
|
ignoreCase?: boolean;
|
|
10786
10943
|
alphabet?: string;
|
|
10787
10944
|
locales?: (string | string[]);
|
|
10788
10945
|
order?: ("asc" | "desc");
|
|
10946
|
+
sortBy?: ("name" | "value");
|
|
10789
10947
|
customGroups?: ({
|
|
10790
10948
|
fallbackSort?: {
|
|
10791
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10949
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10792
10950
|
order?: ("asc" | "desc");
|
|
10793
10951
|
sortBy?: ("name" | "value");
|
|
10794
10952
|
};
|
|
10795
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10953
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10796
10954
|
groupName: string;
|
|
10797
10955
|
newlinesInside?: ("ignore" | number);
|
|
10798
10956
|
order?: ("asc" | "desc");
|
|
10799
|
-
|
|
10957
|
+
sortBy?: ("name" | "value");
|
|
10958
|
+
anyOf: [{
|
|
10800
10959
|
elementNamePattern?: (({
|
|
10801
10960
|
pattern: string;
|
|
10802
10961
|
flags?: string;
|
|
@@ -10813,18 +10972,35 @@ type PerfectionistSortInterfaces = {
|
|
|
10813
10972
|
pattern: string;
|
|
10814
10973
|
flags?: string;
|
|
10815
10974
|
} | string));
|
|
10816
|
-
|
|
10817
|
-
|
|
10975
|
+
}, ...({
|
|
10976
|
+
elementNamePattern?: (({
|
|
10977
|
+
pattern: string;
|
|
10978
|
+
flags?: string;
|
|
10979
|
+
} | string)[] | ({
|
|
10980
|
+
pattern: string;
|
|
10981
|
+
flags?: string;
|
|
10982
|
+
} | string));
|
|
10983
|
+
modifiers?: ("optional" | "required" | "multiline")[];
|
|
10984
|
+
selector?: ("index-signature" | "member" | "method" | "property");
|
|
10985
|
+
elementValuePattern?: (({
|
|
10986
|
+
pattern: string;
|
|
10987
|
+
flags?: string;
|
|
10988
|
+
} | string)[] | ({
|
|
10989
|
+
pattern: string;
|
|
10990
|
+
flags?: string;
|
|
10991
|
+
} | string));
|
|
10992
|
+
})[]];
|
|
10818
10993
|
} | {
|
|
10819
10994
|
fallbackSort?: {
|
|
10820
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10995
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10821
10996
|
order?: ("asc" | "desc");
|
|
10822
10997
|
sortBy?: ("name" | "value");
|
|
10823
10998
|
};
|
|
10824
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
10999
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10825
11000
|
groupName: string;
|
|
10826
11001
|
newlinesInside?: ("ignore" | number);
|
|
10827
11002
|
order?: ("asc" | "desc");
|
|
11003
|
+
sortBy?: ("name" | "value");
|
|
10828
11004
|
elementNamePattern?: (({
|
|
10829
11005
|
pattern: string;
|
|
10830
11006
|
flags?: string;
|
|
@@ -10841,17 +11017,22 @@ type PerfectionistSortInterfaces = {
|
|
|
10841
11017
|
pattern: string;
|
|
10842
11018
|
flags?: string;
|
|
10843
11019
|
} | string));
|
|
10844
|
-
sortBy?: ("name" | "value");
|
|
10845
11020
|
})[];
|
|
10846
11021
|
newlinesInside?: (("ignore" | number) | "newlinesBetween");
|
|
10847
11022
|
groups?: (string | [string, ...(string)[]] | {
|
|
10848
11023
|
newlinesBetween: ("ignore" | number);
|
|
10849
11024
|
} | {
|
|
10850
11025
|
group: (string | [string, ...(string)[]]);
|
|
11026
|
+
fallbackSort?: {
|
|
11027
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11028
|
+
order?: ("asc" | "desc");
|
|
11029
|
+
sortBy?: ("name" | "value");
|
|
11030
|
+
};
|
|
10851
11031
|
commentAbove?: string;
|
|
10852
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11032
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10853
11033
|
newlinesInside?: ("ignore" | number);
|
|
10854
11034
|
order?: ("asc" | "desc");
|
|
11035
|
+
sortBy?: ("name" | "value");
|
|
10855
11036
|
})[];
|
|
10856
11037
|
newlinesBetween?: ("ignore" | number);
|
|
10857
11038
|
useConfigurationIf?: {
|
|
@@ -10905,15 +11086,14 @@ type PerfectionistSortInterfaces = {
|
|
|
10905
11086
|
} | string)));
|
|
10906
11087
|
});
|
|
10907
11088
|
partitionByNewLine?: boolean;
|
|
10908
|
-
sortBy?: ("name" | "value");
|
|
10909
11089
|
}[];
|
|
10910
11090
|
// ----- perfectionist/sort-intersection-types -----
|
|
10911
11091
|
type PerfectionistSortIntersectionTypes = {
|
|
10912
11092
|
fallbackSort?: {
|
|
10913
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11093
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10914
11094
|
order?: ("asc" | "desc");
|
|
10915
11095
|
};
|
|
10916
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11096
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10917
11097
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
10918
11098
|
ignoreCase?: boolean;
|
|
10919
11099
|
alphabet?: string;
|
|
@@ -10921,14 +11101,14 @@ type PerfectionistSortIntersectionTypes = {
|
|
|
10921
11101
|
order?: ("asc" | "desc");
|
|
10922
11102
|
customGroups?: ({
|
|
10923
11103
|
fallbackSort?: {
|
|
10924
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11104
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10925
11105
|
order?: ("asc" | "desc");
|
|
10926
11106
|
};
|
|
10927
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11107
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10928
11108
|
groupName: string;
|
|
10929
11109
|
newlinesInside?: ("ignore" | number);
|
|
10930
11110
|
order?: ("asc" | "desc");
|
|
10931
|
-
anyOf: {
|
|
11111
|
+
anyOf: [{
|
|
10932
11112
|
elementNamePattern?: (({
|
|
10933
11113
|
pattern: string;
|
|
10934
11114
|
flags?: string;
|
|
@@ -10937,13 +11117,22 @@ type PerfectionistSortIntersectionTypes = {
|
|
|
10937
11117
|
flags?: string;
|
|
10938
11118
|
} | string));
|
|
10939
11119
|
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union");
|
|
10940
|
-
}
|
|
11120
|
+
}, ...({
|
|
11121
|
+
elementNamePattern?: (({
|
|
11122
|
+
pattern: string;
|
|
11123
|
+
flags?: string;
|
|
11124
|
+
} | string)[] | ({
|
|
11125
|
+
pattern: string;
|
|
11126
|
+
flags?: string;
|
|
11127
|
+
} | string));
|
|
11128
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union");
|
|
11129
|
+
})[]];
|
|
10941
11130
|
} | {
|
|
10942
11131
|
fallbackSort?: {
|
|
10943
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11132
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10944
11133
|
order?: ("asc" | "desc");
|
|
10945
11134
|
};
|
|
10946
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11135
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10947
11136
|
groupName: string;
|
|
10948
11137
|
newlinesInside?: ("ignore" | number);
|
|
10949
11138
|
order?: ("asc" | "desc");
|
|
@@ -10961,8 +11150,12 @@ type PerfectionistSortIntersectionTypes = {
|
|
|
10961
11150
|
newlinesBetween: ("ignore" | number);
|
|
10962
11151
|
} | {
|
|
10963
11152
|
group: (string | [string, ...(string)[]]);
|
|
11153
|
+
fallbackSort?: {
|
|
11154
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11155
|
+
order?: ("asc" | "desc");
|
|
11156
|
+
};
|
|
10964
11157
|
commentAbove?: string;
|
|
10965
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11158
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10966
11159
|
newlinesInside?: ("ignore" | number);
|
|
10967
11160
|
order?: ("asc" | "desc");
|
|
10968
11161
|
})[];
|
|
@@ -10994,10 +11187,10 @@ type PerfectionistSortIntersectionTypes = {
|
|
|
10994
11187
|
// ----- perfectionist/sort-jsx-props -----
|
|
10995
11188
|
type PerfectionistSortJsxProps = {
|
|
10996
11189
|
fallbackSort?: {
|
|
10997
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11190
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
10998
11191
|
order?: ("asc" | "desc");
|
|
10999
11192
|
};
|
|
11000
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11193
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11001
11194
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11002
11195
|
ignoreCase?: boolean;
|
|
11003
11196
|
alphabet?: string;
|
|
@@ -11005,14 +11198,31 @@ type PerfectionistSortJsxProps = {
|
|
|
11005
11198
|
order?: ("asc" | "desc");
|
|
11006
11199
|
customGroups?: ({
|
|
11007
11200
|
fallbackSort?: {
|
|
11008
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11201
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11009
11202
|
order?: ("asc" | "desc");
|
|
11010
11203
|
};
|
|
11011
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11204
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11012
11205
|
groupName: string;
|
|
11013
11206
|
newlinesInside?: ("ignore" | number);
|
|
11014
11207
|
order?: ("asc" | "desc");
|
|
11015
|
-
anyOf: {
|
|
11208
|
+
anyOf: [{
|
|
11209
|
+
elementNamePattern?: (({
|
|
11210
|
+
pattern: string;
|
|
11211
|
+
flags?: string;
|
|
11212
|
+
} | string)[] | ({
|
|
11213
|
+
pattern: string;
|
|
11214
|
+
flags?: string;
|
|
11215
|
+
} | string));
|
|
11216
|
+
modifiers?: ("shorthand" | "multiline")[];
|
|
11217
|
+
selector?: "prop";
|
|
11218
|
+
elementValuePattern?: (({
|
|
11219
|
+
pattern: string;
|
|
11220
|
+
flags?: string;
|
|
11221
|
+
} | string)[] | ({
|
|
11222
|
+
pattern: string;
|
|
11223
|
+
flags?: string;
|
|
11224
|
+
} | string));
|
|
11225
|
+
}, ...({
|
|
11016
11226
|
elementNamePattern?: (({
|
|
11017
11227
|
pattern: string;
|
|
11018
11228
|
flags?: string;
|
|
@@ -11029,13 +11239,13 @@ type PerfectionistSortJsxProps = {
|
|
|
11029
11239
|
pattern: string;
|
|
11030
11240
|
flags?: string;
|
|
11031
11241
|
} | string));
|
|
11032
|
-
}[];
|
|
11242
|
+
})[]];
|
|
11033
11243
|
} | {
|
|
11034
11244
|
fallbackSort?: {
|
|
11035
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11245
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11036
11246
|
order?: ("asc" | "desc");
|
|
11037
11247
|
};
|
|
11038
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11248
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11039
11249
|
groupName: string;
|
|
11040
11250
|
newlinesInside?: ("ignore" | number);
|
|
11041
11251
|
order?: ("asc" | "desc");
|
|
@@ -11061,8 +11271,12 @@ type PerfectionistSortJsxProps = {
|
|
|
11061
11271
|
newlinesBetween: ("ignore" | number);
|
|
11062
11272
|
} | {
|
|
11063
11273
|
group: (string | [string, ...(string)[]]);
|
|
11274
|
+
fallbackSort?: {
|
|
11275
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11276
|
+
order?: ("asc" | "desc");
|
|
11277
|
+
};
|
|
11064
11278
|
commentAbove?: string;
|
|
11065
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11279
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11066
11280
|
newlinesInside?: ("ignore" | number);
|
|
11067
11281
|
order?: ("asc" | "desc");
|
|
11068
11282
|
})[];
|
|
@@ -11088,10 +11302,10 @@ type PerfectionistSortJsxProps = {
|
|
|
11088
11302
|
// ----- perfectionist/sort-maps -----
|
|
11089
11303
|
type PerfectionistSortMaps = {
|
|
11090
11304
|
fallbackSort?: {
|
|
11091
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11305
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11092
11306
|
order?: ("asc" | "desc");
|
|
11093
11307
|
};
|
|
11094
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11308
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11095
11309
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11096
11310
|
ignoreCase?: boolean;
|
|
11097
11311
|
alphabet?: string;
|
|
@@ -11099,14 +11313,14 @@ type PerfectionistSortMaps = {
|
|
|
11099
11313
|
order?: ("asc" | "desc");
|
|
11100
11314
|
customGroups?: ({
|
|
11101
11315
|
fallbackSort?: {
|
|
11102
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11316
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11103
11317
|
order?: ("asc" | "desc");
|
|
11104
11318
|
};
|
|
11105
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11319
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11106
11320
|
groupName: string;
|
|
11107
11321
|
newlinesInside?: ("ignore" | number);
|
|
11108
11322
|
order?: ("asc" | "desc");
|
|
11109
|
-
anyOf: {
|
|
11323
|
+
anyOf: [{
|
|
11110
11324
|
elementNamePattern?: (({
|
|
11111
11325
|
pattern: string;
|
|
11112
11326
|
flags?: string;
|
|
@@ -11114,13 +11328,21 @@ type PerfectionistSortMaps = {
|
|
|
11114
11328
|
pattern: string;
|
|
11115
11329
|
flags?: string;
|
|
11116
11330
|
} | string));
|
|
11117
|
-
}
|
|
11331
|
+
}, ...({
|
|
11332
|
+
elementNamePattern?: (({
|
|
11333
|
+
pattern: string;
|
|
11334
|
+
flags?: string;
|
|
11335
|
+
} | string)[] | ({
|
|
11336
|
+
pattern: string;
|
|
11337
|
+
flags?: string;
|
|
11338
|
+
} | string));
|
|
11339
|
+
})[]];
|
|
11118
11340
|
} | {
|
|
11119
11341
|
fallbackSort?: {
|
|
11120
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11342
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11121
11343
|
order?: ("asc" | "desc");
|
|
11122
11344
|
};
|
|
11123
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11345
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11124
11346
|
groupName: string;
|
|
11125
11347
|
newlinesInside?: ("ignore" | number);
|
|
11126
11348
|
order?: ("asc" | "desc");
|
|
@@ -11137,8 +11359,12 @@ type PerfectionistSortMaps = {
|
|
|
11137
11359
|
newlinesBetween: ("ignore" | number);
|
|
11138
11360
|
} | {
|
|
11139
11361
|
group: (string | [string, ...(string)[]]);
|
|
11362
|
+
fallbackSort?: {
|
|
11363
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11364
|
+
order?: ("asc" | "desc");
|
|
11365
|
+
};
|
|
11140
11366
|
commentAbove?: string;
|
|
11141
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11367
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11142
11368
|
newlinesInside?: ("ignore" | number);
|
|
11143
11369
|
order?: ("asc" | "desc");
|
|
11144
11370
|
})[];
|
|
@@ -11179,10 +11405,10 @@ type PerfectionistSortMaps = {
|
|
|
11179
11405
|
// ----- perfectionist/sort-modules -----
|
|
11180
11406
|
type PerfectionistSortModules = [] | [{
|
|
11181
11407
|
fallbackSort?: {
|
|
11182
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11408
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "usage");
|
|
11183
11409
|
order?: ("asc" | "desc");
|
|
11184
11410
|
};
|
|
11185
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11411
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "usage");
|
|
11186
11412
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11187
11413
|
ignoreCase?: boolean;
|
|
11188
11414
|
alphabet?: string;
|
|
@@ -11190,14 +11416,31 @@ type PerfectionistSortModules = [] | [{
|
|
|
11190
11416
|
order?: ("asc" | "desc");
|
|
11191
11417
|
customGroups?: ({
|
|
11192
11418
|
fallbackSort?: {
|
|
11193
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11419
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "usage");
|
|
11194
11420
|
order?: ("asc" | "desc");
|
|
11195
11421
|
};
|
|
11196
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11422
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "usage");
|
|
11197
11423
|
groupName: string;
|
|
11198
11424
|
newlinesInside?: ("ignore" | number);
|
|
11199
11425
|
order?: ("asc" | "desc");
|
|
11200
|
-
anyOf: {
|
|
11426
|
+
anyOf: [{
|
|
11427
|
+
elementNamePattern?: (({
|
|
11428
|
+
pattern: string;
|
|
11429
|
+
flags?: string;
|
|
11430
|
+
} | string)[] | ({
|
|
11431
|
+
pattern: string;
|
|
11432
|
+
flags?: string;
|
|
11433
|
+
} | string));
|
|
11434
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[];
|
|
11435
|
+
selector?: ("enum" | "function" | "interface" | "type" | "class");
|
|
11436
|
+
decoratorNamePattern?: (({
|
|
11437
|
+
pattern: string;
|
|
11438
|
+
flags?: string;
|
|
11439
|
+
} | string)[] | ({
|
|
11440
|
+
pattern: string;
|
|
11441
|
+
flags?: string;
|
|
11442
|
+
} | string));
|
|
11443
|
+
}, ...({
|
|
11201
11444
|
elementNamePattern?: (({
|
|
11202
11445
|
pattern: string;
|
|
11203
11446
|
flags?: string;
|
|
@@ -11214,13 +11457,13 @@ type PerfectionistSortModules = [] | [{
|
|
|
11214
11457
|
pattern: string;
|
|
11215
11458
|
flags?: string;
|
|
11216
11459
|
} | string));
|
|
11217
|
-
}[];
|
|
11460
|
+
})[]];
|
|
11218
11461
|
} | {
|
|
11219
11462
|
fallbackSort?: {
|
|
11220
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11463
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "usage");
|
|
11221
11464
|
order?: ("asc" | "desc");
|
|
11222
11465
|
};
|
|
11223
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11466
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "usage");
|
|
11224
11467
|
groupName: string;
|
|
11225
11468
|
newlinesInside?: ("ignore" | number);
|
|
11226
11469
|
order?: ("asc" | "desc");
|
|
@@ -11246,8 +11489,12 @@ type PerfectionistSortModules = [] | [{
|
|
|
11246
11489
|
newlinesBetween: ("ignore" | number);
|
|
11247
11490
|
} | {
|
|
11248
11491
|
group: (string | [string, ...(string)[]]);
|
|
11492
|
+
fallbackSort?: {
|
|
11493
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "usage");
|
|
11494
|
+
order?: ("asc" | "desc");
|
|
11495
|
+
};
|
|
11249
11496
|
commentAbove?: string;
|
|
11250
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11497
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order" | "usage");
|
|
11251
11498
|
newlinesInside?: ("ignore" | number);
|
|
11252
11499
|
order?: ("asc" | "desc");
|
|
11253
11500
|
})[];
|
|
@@ -11279,10 +11526,10 @@ type PerfectionistSortModules = [] | [{
|
|
|
11279
11526
|
// ----- perfectionist/sort-named-exports -----
|
|
11280
11527
|
type PerfectionistSortNamedExports = {
|
|
11281
11528
|
fallbackSort?: {
|
|
11282
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11529
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11283
11530
|
order?: ("asc" | "desc");
|
|
11284
11531
|
};
|
|
11285
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11532
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11286
11533
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11287
11534
|
ignoreCase?: boolean;
|
|
11288
11535
|
alphabet?: string;
|
|
@@ -11290,14 +11537,24 @@ type PerfectionistSortNamedExports = {
|
|
|
11290
11537
|
order?: ("asc" | "desc");
|
|
11291
11538
|
customGroups?: ({
|
|
11292
11539
|
fallbackSort?: {
|
|
11293
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11540
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11294
11541
|
order?: ("asc" | "desc");
|
|
11295
11542
|
};
|
|
11296
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11543
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11297
11544
|
groupName: string;
|
|
11298
11545
|
newlinesInside?: ("ignore" | number);
|
|
11299
11546
|
order?: ("asc" | "desc");
|
|
11300
|
-
anyOf: {
|
|
11547
|
+
anyOf: [{
|
|
11548
|
+
elementNamePattern?: (({
|
|
11549
|
+
pattern: string;
|
|
11550
|
+
flags?: string;
|
|
11551
|
+
} | string)[] | ({
|
|
11552
|
+
pattern: string;
|
|
11553
|
+
flags?: string;
|
|
11554
|
+
} | string));
|
|
11555
|
+
modifiers?: ("value" | "type")[];
|
|
11556
|
+
selector?: "export";
|
|
11557
|
+
}, ...({
|
|
11301
11558
|
elementNamePattern?: (({
|
|
11302
11559
|
pattern: string;
|
|
11303
11560
|
flags?: string;
|
|
@@ -11307,13 +11564,13 @@ type PerfectionistSortNamedExports = {
|
|
|
11307
11564
|
} | string));
|
|
11308
11565
|
modifiers?: ("value" | "type")[];
|
|
11309
11566
|
selector?: "export";
|
|
11310
|
-
}[];
|
|
11567
|
+
})[]];
|
|
11311
11568
|
} | {
|
|
11312
11569
|
fallbackSort?: {
|
|
11313
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11570
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11314
11571
|
order?: ("asc" | "desc");
|
|
11315
11572
|
};
|
|
11316
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11573
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11317
11574
|
groupName: string;
|
|
11318
11575
|
newlinesInside?: ("ignore" | number);
|
|
11319
11576
|
order?: ("asc" | "desc");
|
|
@@ -11332,8 +11589,12 @@ type PerfectionistSortNamedExports = {
|
|
|
11332
11589
|
newlinesBetween: ("ignore" | number);
|
|
11333
11590
|
} | {
|
|
11334
11591
|
group: (string | [string, ...(string)[]]);
|
|
11592
|
+
fallbackSort?: {
|
|
11593
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11594
|
+
order?: ("asc" | "desc");
|
|
11595
|
+
};
|
|
11335
11596
|
commentAbove?: string;
|
|
11336
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11597
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11337
11598
|
newlinesInside?: ("ignore" | number);
|
|
11338
11599
|
order?: ("asc" | "desc");
|
|
11339
11600
|
})[];
|
|
@@ -11366,10 +11627,10 @@ type PerfectionistSortNamedExports = {
|
|
|
11366
11627
|
// ----- perfectionist/sort-named-imports -----
|
|
11367
11628
|
type PerfectionistSortNamedImports = {
|
|
11368
11629
|
fallbackSort?: {
|
|
11369
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11630
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11370
11631
|
order?: ("asc" | "desc");
|
|
11371
11632
|
};
|
|
11372
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11633
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11373
11634
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11374
11635
|
ignoreCase?: boolean;
|
|
11375
11636
|
alphabet?: string;
|
|
@@ -11377,14 +11638,24 @@ type PerfectionistSortNamedImports = {
|
|
|
11377
11638
|
order?: ("asc" | "desc");
|
|
11378
11639
|
customGroups?: ({
|
|
11379
11640
|
fallbackSort?: {
|
|
11380
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11641
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11381
11642
|
order?: ("asc" | "desc");
|
|
11382
11643
|
};
|
|
11383
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11644
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11384
11645
|
groupName: string;
|
|
11385
11646
|
newlinesInside?: ("ignore" | number);
|
|
11386
11647
|
order?: ("asc" | "desc");
|
|
11387
|
-
anyOf: {
|
|
11648
|
+
anyOf: [{
|
|
11649
|
+
elementNamePattern?: (({
|
|
11650
|
+
pattern: string;
|
|
11651
|
+
flags?: string;
|
|
11652
|
+
} | string)[] | ({
|
|
11653
|
+
pattern: string;
|
|
11654
|
+
flags?: string;
|
|
11655
|
+
} | string));
|
|
11656
|
+
modifiers?: ("value" | "type")[];
|
|
11657
|
+
selector?: "import";
|
|
11658
|
+
}, ...({
|
|
11388
11659
|
elementNamePattern?: (({
|
|
11389
11660
|
pattern: string;
|
|
11390
11661
|
flags?: string;
|
|
@@ -11394,13 +11665,13 @@ type PerfectionistSortNamedImports = {
|
|
|
11394
11665
|
} | string));
|
|
11395
11666
|
modifiers?: ("value" | "type")[];
|
|
11396
11667
|
selector?: "import";
|
|
11397
|
-
}[];
|
|
11668
|
+
})[]];
|
|
11398
11669
|
} | {
|
|
11399
11670
|
fallbackSort?: {
|
|
11400
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11671
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11401
11672
|
order?: ("asc" | "desc");
|
|
11402
11673
|
};
|
|
11403
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11674
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11404
11675
|
groupName: string;
|
|
11405
11676
|
newlinesInside?: ("ignore" | number);
|
|
11406
11677
|
order?: ("asc" | "desc");
|
|
@@ -11419,8 +11690,12 @@ type PerfectionistSortNamedImports = {
|
|
|
11419
11690
|
newlinesBetween: ("ignore" | number);
|
|
11420
11691
|
} | {
|
|
11421
11692
|
group: (string | [string, ...(string)[]]);
|
|
11693
|
+
fallbackSort?: {
|
|
11694
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11695
|
+
order?: ("asc" | "desc");
|
|
11696
|
+
};
|
|
11422
11697
|
commentAbove?: string;
|
|
11423
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11698
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11424
11699
|
newlinesInside?: ("ignore" | number);
|
|
11425
11700
|
order?: ("asc" | "desc");
|
|
11426
11701
|
})[];
|
|
@@ -11453,27 +11728,29 @@ type PerfectionistSortNamedImports = {
|
|
|
11453
11728
|
// ----- perfectionist/sort-object-types -----
|
|
11454
11729
|
type PerfectionistSortObjectTypes = {
|
|
11455
11730
|
fallbackSort?: {
|
|
11456
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11731
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11457
11732
|
order?: ("asc" | "desc");
|
|
11458
11733
|
sortBy?: ("name" | "value");
|
|
11459
11734
|
};
|
|
11460
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11735
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11461
11736
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11462
11737
|
ignoreCase?: boolean;
|
|
11463
11738
|
alphabet?: string;
|
|
11464
11739
|
locales?: (string | string[]);
|
|
11465
11740
|
order?: ("asc" | "desc");
|
|
11741
|
+
sortBy?: ("name" | "value");
|
|
11466
11742
|
customGroups?: ({
|
|
11467
11743
|
fallbackSort?: {
|
|
11468
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11744
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11469
11745
|
order?: ("asc" | "desc");
|
|
11470
11746
|
sortBy?: ("name" | "value");
|
|
11471
11747
|
};
|
|
11472
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11748
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11473
11749
|
groupName: string;
|
|
11474
11750
|
newlinesInside?: ("ignore" | number);
|
|
11475
11751
|
order?: ("asc" | "desc");
|
|
11476
|
-
|
|
11752
|
+
sortBy?: ("name" | "value");
|
|
11753
|
+
anyOf: [{
|
|
11477
11754
|
elementNamePattern?: (({
|
|
11478
11755
|
pattern: string;
|
|
11479
11756
|
flags?: string;
|
|
@@ -11490,18 +11767,35 @@ type PerfectionistSortObjectTypes = {
|
|
|
11490
11767
|
pattern: string;
|
|
11491
11768
|
flags?: string;
|
|
11492
11769
|
} | string));
|
|
11493
|
-
|
|
11494
|
-
|
|
11770
|
+
}, ...({
|
|
11771
|
+
elementNamePattern?: (({
|
|
11772
|
+
pattern: string;
|
|
11773
|
+
flags?: string;
|
|
11774
|
+
} | string)[] | ({
|
|
11775
|
+
pattern: string;
|
|
11776
|
+
flags?: string;
|
|
11777
|
+
} | string));
|
|
11778
|
+
modifiers?: ("optional" | "required" | "multiline")[];
|
|
11779
|
+
selector?: ("index-signature" | "member" | "method" | "property");
|
|
11780
|
+
elementValuePattern?: (({
|
|
11781
|
+
pattern: string;
|
|
11782
|
+
flags?: string;
|
|
11783
|
+
} | string)[] | ({
|
|
11784
|
+
pattern: string;
|
|
11785
|
+
flags?: string;
|
|
11786
|
+
} | string));
|
|
11787
|
+
})[]];
|
|
11495
11788
|
} | {
|
|
11496
11789
|
fallbackSort?: {
|
|
11497
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11790
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11498
11791
|
order?: ("asc" | "desc");
|
|
11499
11792
|
sortBy?: ("name" | "value");
|
|
11500
11793
|
};
|
|
11501
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11794
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11502
11795
|
groupName: string;
|
|
11503
11796
|
newlinesInside?: ("ignore" | number);
|
|
11504
11797
|
order?: ("asc" | "desc");
|
|
11798
|
+
sortBy?: ("name" | "value");
|
|
11505
11799
|
elementNamePattern?: (({
|
|
11506
11800
|
pattern: string;
|
|
11507
11801
|
flags?: string;
|
|
@@ -11518,17 +11812,22 @@ type PerfectionistSortObjectTypes = {
|
|
|
11518
11812
|
pattern: string;
|
|
11519
11813
|
flags?: string;
|
|
11520
11814
|
} | string));
|
|
11521
|
-
sortBy?: ("name" | "value");
|
|
11522
11815
|
})[];
|
|
11523
11816
|
newlinesInside?: (("ignore" | number) | "newlinesBetween");
|
|
11524
11817
|
groups?: (string | [string, ...(string)[]] | {
|
|
11525
11818
|
newlinesBetween: ("ignore" | number);
|
|
11526
11819
|
} | {
|
|
11527
11820
|
group: (string | [string, ...(string)[]]);
|
|
11821
|
+
fallbackSort?: {
|
|
11822
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11823
|
+
order?: ("asc" | "desc");
|
|
11824
|
+
sortBy?: ("name" | "value");
|
|
11825
|
+
};
|
|
11528
11826
|
commentAbove?: string;
|
|
11529
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11827
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11530
11828
|
newlinesInside?: ("ignore" | number);
|
|
11531
11829
|
order?: ("asc" | "desc");
|
|
11830
|
+
sortBy?: ("name" | "value");
|
|
11532
11831
|
})[];
|
|
11533
11832
|
newlinesBetween?: ("ignore" | number);
|
|
11534
11833
|
useConfigurationIf?: {
|
|
@@ -11582,15 +11881,14 @@ type PerfectionistSortObjectTypes = {
|
|
|
11582
11881
|
} | string)));
|
|
11583
11882
|
});
|
|
11584
11883
|
partitionByNewLine?: boolean;
|
|
11585
|
-
sortBy?: ("name" | "value");
|
|
11586
11884
|
}[];
|
|
11587
11885
|
// ----- perfectionist/sort-objects -----
|
|
11588
11886
|
type PerfectionistSortObjects = {
|
|
11589
11887
|
fallbackSort?: {
|
|
11590
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11888
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11591
11889
|
order?: ("asc" | "desc");
|
|
11592
11890
|
};
|
|
11593
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11891
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11594
11892
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11595
11893
|
ignoreCase?: boolean;
|
|
11596
11894
|
alphabet?: string;
|
|
@@ -11598,14 +11896,14 @@ type PerfectionistSortObjects = {
|
|
|
11598
11896
|
order?: ("asc" | "desc");
|
|
11599
11897
|
customGroups?: ({
|
|
11600
11898
|
fallbackSort?: {
|
|
11601
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11899
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11602
11900
|
order?: ("asc" | "desc");
|
|
11603
11901
|
};
|
|
11604
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11902
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11605
11903
|
groupName: string;
|
|
11606
11904
|
newlinesInside?: ("ignore" | number);
|
|
11607
11905
|
order?: ("asc" | "desc");
|
|
11608
|
-
anyOf: {
|
|
11906
|
+
anyOf: [{
|
|
11609
11907
|
elementNamePattern?: (({
|
|
11610
11908
|
pattern: string;
|
|
11611
11909
|
flags?: string;
|
|
@@ -11613,7 +11911,24 @@ type PerfectionistSortObjects = {
|
|
|
11613
11911
|
pattern: string;
|
|
11614
11912
|
flags?: string;
|
|
11615
11913
|
} | string));
|
|
11616
|
-
modifiers?: ("
|
|
11914
|
+
modifiers?: ("multiline")[];
|
|
11915
|
+
selector?: ("member" | "method" | "property");
|
|
11916
|
+
elementValuePattern?: (({
|
|
11917
|
+
pattern: string;
|
|
11918
|
+
flags?: string;
|
|
11919
|
+
} | string)[] | ({
|
|
11920
|
+
pattern: string;
|
|
11921
|
+
flags?: string;
|
|
11922
|
+
} | string));
|
|
11923
|
+
}, ...({
|
|
11924
|
+
elementNamePattern?: (({
|
|
11925
|
+
pattern: string;
|
|
11926
|
+
flags?: string;
|
|
11927
|
+
} | string)[] | ({
|
|
11928
|
+
pattern: string;
|
|
11929
|
+
flags?: string;
|
|
11930
|
+
} | string));
|
|
11931
|
+
modifiers?: ("multiline")[];
|
|
11617
11932
|
selector?: ("member" | "method" | "property");
|
|
11618
11933
|
elementValuePattern?: (({
|
|
11619
11934
|
pattern: string;
|
|
@@ -11622,13 +11937,13 @@ type PerfectionistSortObjects = {
|
|
|
11622
11937
|
pattern: string;
|
|
11623
11938
|
flags?: string;
|
|
11624
11939
|
} | string));
|
|
11625
|
-
}[];
|
|
11940
|
+
})[]];
|
|
11626
11941
|
} | {
|
|
11627
11942
|
fallbackSort?: {
|
|
11628
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11943
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11629
11944
|
order?: ("asc" | "desc");
|
|
11630
11945
|
};
|
|
11631
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11946
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11632
11947
|
groupName: string;
|
|
11633
11948
|
newlinesInside?: ("ignore" | number);
|
|
11634
11949
|
order?: ("asc" | "desc");
|
|
@@ -11639,7 +11954,7 @@ type PerfectionistSortObjects = {
|
|
|
11639
11954
|
pattern: string;
|
|
11640
11955
|
flags?: string;
|
|
11641
11956
|
} | string));
|
|
11642
|
-
modifiers?: ("
|
|
11957
|
+
modifiers?: ("multiline")[];
|
|
11643
11958
|
selector?: ("member" | "method" | "property");
|
|
11644
11959
|
elementValuePattern?: (({
|
|
11645
11960
|
pattern: string;
|
|
@@ -11654,8 +11969,12 @@ type PerfectionistSortObjects = {
|
|
|
11654
11969
|
newlinesBetween: ("ignore" | number);
|
|
11655
11970
|
} | {
|
|
11656
11971
|
group: (string | [string, ...(string)[]]);
|
|
11972
|
+
fallbackSort?: {
|
|
11973
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11974
|
+
order?: ("asc" | "desc");
|
|
11975
|
+
};
|
|
11657
11976
|
commentAbove?: string;
|
|
11658
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
11977
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11659
11978
|
newlinesInside?: ("ignore" | number);
|
|
11660
11979
|
order?: ("asc" | "desc");
|
|
11661
11980
|
})[];
|
|
@@ -11726,10 +12045,10 @@ type PerfectionistSortObjects = {
|
|
|
11726
12045
|
// ----- perfectionist/sort-sets -----
|
|
11727
12046
|
type PerfectionistSortSets = {
|
|
11728
12047
|
fallbackSort?: {
|
|
11729
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12048
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11730
12049
|
order?: ("asc" | "desc");
|
|
11731
12050
|
};
|
|
11732
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12051
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11733
12052
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11734
12053
|
ignoreCase?: boolean;
|
|
11735
12054
|
alphabet?: string;
|
|
@@ -11737,14 +12056,14 @@ type PerfectionistSortSets = {
|
|
|
11737
12056
|
order?: ("asc" | "desc");
|
|
11738
12057
|
customGroups?: ({
|
|
11739
12058
|
fallbackSort?: {
|
|
11740
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12059
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11741
12060
|
order?: ("asc" | "desc");
|
|
11742
12061
|
};
|
|
11743
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12062
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11744
12063
|
groupName: string;
|
|
11745
12064
|
newlinesInside?: ("ignore" | number);
|
|
11746
12065
|
order?: ("asc" | "desc");
|
|
11747
|
-
anyOf: {
|
|
12066
|
+
anyOf: [{
|
|
11748
12067
|
elementNamePattern?: (({
|
|
11749
12068
|
pattern: string;
|
|
11750
12069
|
flags?: string;
|
|
@@ -11753,13 +12072,22 @@ type PerfectionistSortSets = {
|
|
|
11753
12072
|
flags?: string;
|
|
11754
12073
|
} | string));
|
|
11755
12074
|
selector?: ("literal" | "spread");
|
|
11756
|
-
}
|
|
12075
|
+
}, ...({
|
|
12076
|
+
elementNamePattern?: (({
|
|
12077
|
+
pattern: string;
|
|
12078
|
+
flags?: string;
|
|
12079
|
+
} | string)[] | ({
|
|
12080
|
+
pattern: string;
|
|
12081
|
+
flags?: string;
|
|
12082
|
+
} | string));
|
|
12083
|
+
selector?: ("literal" | "spread");
|
|
12084
|
+
})[]];
|
|
11757
12085
|
} | {
|
|
11758
12086
|
fallbackSort?: {
|
|
11759
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12087
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11760
12088
|
order?: ("asc" | "desc");
|
|
11761
12089
|
};
|
|
11762
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12090
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11763
12091
|
groupName: string;
|
|
11764
12092
|
newlinesInside?: ("ignore" | number);
|
|
11765
12093
|
order?: ("asc" | "desc");
|
|
@@ -11777,8 +12105,12 @@ type PerfectionistSortSets = {
|
|
|
11777
12105
|
newlinesBetween: ("ignore" | number);
|
|
11778
12106
|
} | {
|
|
11779
12107
|
group: (string | [string, ...(string)[]]);
|
|
12108
|
+
fallbackSort?: {
|
|
12109
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
12110
|
+
order?: ("asc" | "desc");
|
|
12111
|
+
};
|
|
11780
12112
|
commentAbove?: string;
|
|
11781
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12113
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11782
12114
|
newlinesInside?: ("ignore" | number);
|
|
11783
12115
|
order?: ("asc" | "desc");
|
|
11784
12116
|
})[];
|
|
@@ -11819,10 +12151,10 @@ type PerfectionistSortSets = {
|
|
|
11819
12151
|
// ----- perfectionist/sort-switch-case -----
|
|
11820
12152
|
type PerfectionistSortSwitchCase = [] | [{
|
|
11821
12153
|
fallbackSort?: {
|
|
11822
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12154
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11823
12155
|
order?: ("asc" | "desc");
|
|
11824
12156
|
};
|
|
11825
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12157
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11826
12158
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11827
12159
|
ignoreCase?: boolean;
|
|
11828
12160
|
alphabet?: string;
|
|
@@ -11832,10 +12164,10 @@ type PerfectionistSortSwitchCase = [] | [{
|
|
|
11832
12164
|
// ----- perfectionist/sort-union-types -----
|
|
11833
12165
|
type PerfectionistSortUnionTypes = {
|
|
11834
12166
|
fallbackSort?: {
|
|
11835
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12167
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11836
12168
|
order?: ("asc" | "desc");
|
|
11837
12169
|
};
|
|
11838
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12170
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11839
12171
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11840
12172
|
ignoreCase?: boolean;
|
|
11841
12173
|
alphabet?: string;
|
|
@@ -11843,14 +12175,23 @@ type PerfectionistSortUnionTypes = {
|
|
|
11843
12175
|
order?: ("asc" | "desc");
|
|
11844
12176
|
customGroups?: ({
|
|
11845
12177
|
fallbackSort?: {
|
|
11846
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12178
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11847
12179
|
order?: ("asc" | "desc");
|
|
11848
12180
|
};
|
|
11849
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12181
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11850
12182
|
groupName: string;
|
|
11851
12183
|
newlinesInside?: ("ignore" | number);
|
|
11852
12184
|
order?: ("asc" | "desc");
|
|
11853
|
-
anyOf: {
|
|
12185
|
+
anyOf: [{
|
|
12186
|
+
elementNamePattern?: (({
|
|
12187
|
+
pattern: string;
|
|
12188
|
+
flags?: string;
|
|
12189
|
+
} | string)[] | ({
|
|
12190
|
+
pattern: string;
|
|
12191
|
+
flags?: string;
|
|
12192
|
+
} | string));
|
|
12193
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union");
|
|
12194
|
+
}, ...({
|
|
11854
12195
|
elementNamePattern?: (({
|
|
11855
12196
|
pattern: string;
|
|
11856
12197
|
flags?: string;
|
|
@@ -11859,13 +12200,13 @@ type PerfectionistSortUnionTypes = {
|
|
|
11859
12200
|
flags?: string;
|
|
11860
12201
|
} | string));
|
|
11861
12202
|
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union");
|
|
11862
|
-
}[];
|
|
12203
|
+
})[]];
|
|
11863
12204
|
} | {
|
|
11864
12205
|
fallbackSort?: {
|
|
11865
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12206
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11866
12207
|
order?: ("asc" | "desc");
|
|
11867
12208
|
};
|
|
11868
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12209
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11869
12210
|
groupName: string;
|
|
11870
12211
|
newlinesInside?: ("ignore" | number);
|
|
11871
12212
|
order?: ("asc" | "desc");
|
|
@@ -11883,8 +12224,12 @@ type PerfectionistSortUnionTypes = {
|
|
|
11883
12224
|
newlinesBetween: ("ignore" | number);
|
|
11884
12225
|
} | {
|
|
11885
12226
|
group: (string | [string, ...(string)[]]);
|
|
12227
|
+
fallbackSort?: {
|
|
12228
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
12229
|
+
order?: ("asc" | "desc");
|
|
12230
|
+
};
|
|
11886
12231
|
commentAbove?: string;
|
|
11887
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12232
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11888
12233
|
newlinesInside?: ("ignore" | number);
|
|
11889
12234
|
order?: ("asc" | "desc");
|
|
11890
12235
|
})[];
|
|
@@ -11916,10 +12261,10 @@ type PerfectionistSortUnionTypes = {
|
|
|
11916
12261
|
// ----- perfectionist/sort-variable-declarations -----
|
|
11917
12262
|
type PerfectionistSortVariableDeclarations = [] | [{
|
|
11918
12263
|
fallbackSort?: {
|
|
11919
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12264
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11920
12265
|
order?: ("asc" | "desc");
|
|
11921
12266
|
};
|
|
11922
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12267
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11923
12268
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
11924
12269
|
ignoreCase?: boolean;
|
|
11925
12270
|
alphabet?: string;
|
|
@@ -11927,14 +12272,23 @@ type PerfectionistSortVariableDeclarations = [] | [{
|
|
|
11927
12272
|
order?: ("asc" | "desc");
|
|
11928
12273
|
customGroups?: ({
|
|
11929
12274
|
fallbackSort?: {
|
|
11930
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12275
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11931
12276
|
order?: ("asc" | "desc");
|
|
11932
12277
|
};
|
|
11933
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12278
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11934
12279
|
groupName: string;
|
|
11935
12280
|
newlinesInside?: ("ignore" | number);
|
|
11936
12281
|
order?: ("asc" | "desc");
|
|
11937
|
-
anyOf: {
|
|
12282
|
+
anyOf: [{
|
|
12283
|
+
elementNamePattern?: (({
|
|
12284
|
+
pattern: string;
|
|
12285
|
+
flags?: string;
|
|
12286
|
+
} | string)[] | ({
|
|
12287
|
+
pattern: string;
|
|
12288
|
+
flags?: string;
|
|
12289
|
+
} | string));
|
|
12290
|
+
selector?: ("initialized" | "uninitialized");
|
|
12291
|
+
}, ...({
|
|
11938
12292
|
elementNamePattern?: (({
|
|
11939
12293
|
pattern: string;
|
|
11940
12294
|
flags?: string;
|
|
@@ -11943,13 +12297,13 @@ type PerfectionistSortVariableDeclarations = [] | [{
|
|
|
11943
12297
|
flags?: string;
|
|
11944
12298
|
} | string));
|
|
11945
12299
|
selector?: ("initialized" | "uninitialized");
|
|
11946
|
-
}[];
|
|
12300
|
+
})[]];
|
|
11947
12301
|
} | {
|
|
11948
12302
|
fallbackSort?: {
|
|
11949
|
-
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12303
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11950
12304
|
order?: ("asc" | "desc");
|
|
11951
12305
|
};
|
|
11952
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12306
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11953
12307
|
groupName: string;
|
|
11954
12308
|
newlinesInside?: ("ignore" | number);
|
|
11955
12309
|
order?: ("asc" | "desc");
|
|
@@ -11967,8 +12321,12 @@ type PerfectionistSortVariableDeclarations = [] | [{
|
|
|
11967
12321
|
newlinesBetween: ("ignore" | number);
|
|
11968
12322
|
} | {
|
|
11969
12323
|
group: (string | [string, ...(string)[]]);
|
|
12324
|
+
fallbackSort?: {
|
|
12325
|
+
type: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
12326
|
+
order?: ("asc" | "desc");
|
|
12327
|
+
};
|
|
11970
12328
|
commentAbove?: string;
|
|
11971
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
|
|
12329
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted" | "subgroup-order");
|
|
11972
12330
|
newlinesInside?: ("ignore" | number);
|
|
11973
12331
|
order?: ("asc" | "desc");
|
|
11974
12332
|
})[];
|
|
@@ -13495,7 +13853,7 @@ type StyleTypeAnnotationSpacing = [] | [{
|
|
|
13495
13853
|
after?: boolean;
|
|
13496
13854
|
overrides?: {
|
|
13497
13855
|
colon?: _StyleTypeAnnotationSpacing_SpacingConfig;
|
|
13498
|
-
arrow?: _StyleTypeAnnotationSpacing_SpacingConfig;
|
|
13856
|
+
arrow?: ("ignore" | _StyleTypeAnnotationSpacing_SpacingConfig);
|
|
13499
13857
|
variable?: _StyleTypeAnnotationSpacing_SpacingConfig;
|
|
13500
13858
|
parameter?: _StyleTypeAnnotationSpacing_SpacingConfig;
|
|
13501
13859
|
property?: _StyleTypeAnnotationSpacing_SpacingConfig;
|
|
@@ -13558,6 +13916,10 @@ type TestMaxExpects = [] | [{
|
|
|
13558
13916
|
type TestMaxNestedDescribe = [] | [{
|
|
13559
13917
|
max?: number;
|
|
13560
13918
|
}];
|
|
13919
|
+
// ----- test/no-conditional-expect -----
|
|
13920
|
+
type TestNoConditionalExpect = [] | [{
|
|
13921
|
+
expectAssertions?: boolean;
|
|
13922
|
+
}];
|
|
13561
13923
|
// ----- test/no-focused-tests -----
|
|
13562
13924
|
type TestNoFocusedTests = [] | [{
|
|
13563
13925
|
fixable?: boolean;
|
|
@@ -14480,6 +14842,9 @@ type TsNoUnusedVars = [] | [(("all" | "local") | {
|
|
|
14480
14842
|
caughtErrors?: ("all" | "none");
|
|
14481
14843
|
caughtErrorsIgnorePattern?: string;
|
|
14482
14844
|
destructuredArrayIgnorePattern?: string;
|
|
14845
|
+
enableAutofixRemoval?: {
|
|
14846
|
+
imports?: boolean;
|
|
14847
|
+
};
|
|
14483
14848
|
ignoreClassWithStaticInitBlock?: boolean;
|
|
14484
14849
|
ignoreRestSiblings?: boolean;
|
|
14485
14850
|
ignoreUsingDeclarations?: boolean;
|
|
@@ -14680,6 +15045,10 @@ type TsStrictBooleanExpressions = [] | [{
|
|
|
14680
15045
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
|
|
14681
15046
|
allowString?: boolean;
|
|
14682
15047
|
}];
|
|
15048
|
+
// ----- ts/strict-void-return -----
|
|
15049
|
+
type TsStrictVoidReturn = [] | [{
|
|
15050
|
+
allowReturnAny?: boolean;
|
|
15051
|
+
}];
|
|
14683
15052
|
// ----- ts/switch-exhaustiveness-check -----
|
|
14684
15053
|
type TsSwitchExhaustivenessCheck = [] | [{
|
|
14685
15054
|
allowDefaultCaseForExhaustiveSwitch?: boolean;
|
|
@@ -14944,6 +15313,9 @@ type UnusedImportsNoUnusedImports = [] | [(("all" | "local") | {
|
|
|
14944
15313
|
caughtErrors?: ("all" | "none");
|
|
14945
15314
|
caughtErrorsIgnorePattern?: string;
|
|
14946
15315
|
destructuredArrayIgnorePattern?: string;
|
|
15316
|
+
enableAutofixRemoval?: {
|
|
15317
|
+
imports?: boolean;
|
|
15318
|
+
};
|
|
14947
15319
|
ignoreClassWithStaticInitBlock?: boolean;
|
|
14948
15320
|
ignoreRestSiblings?: boolean;
|
|
14949
15321
|
ignoreUsingDeclarations?: boolean;
|
|
@@ -14958,6 +15330,9 @@ type UnusedImportsNoUnusedVars = [] | [(("all" | "local") | {
|
|
|
14958
15330
|
caughtErrors?: ("all" | "none");
|
|
14959
15331
|
caughtErrorsIgnorePattern?: string;
|
|
14960
15332
|
destructuredArrayIgnorePattern?: string;
|
|
15333
|
+
enableAutofixRemoval?: {
|
|
15334
|
+
imports?: boolean;
|
|
15335
|
+
};
|
|
14961
15336
|
ignoreClassWithStaticInitBlock?: boolean;
|
|
14962
15337
|
ignoreRestSiblings?: boolean;
|
|
14963
15338
|
ignoreUsingDeclarations?: boolean;
|
|
@@ -16548,7 +16923,9 @@ interface OptionsHasTypeScript {
|
|
|
16548
16923
|
interface OptionsStylistic {
|
|
16549
16924
|
stylistic?: StylisticConfig;
|
|
16550
16925
|
}
|
|
16551
|
-
type StylisticConfig = Omit<StylisticCustomizeOptions, 'pluginName'
|
|
16926
|
+
type StylisticConfig = Omit<StylisticCustomizeOptions, 'pluginName' | 'indent'> & {
|
|
16927
|
+
indent?: number | 'tab';
|
|
16928
|
+
};
|
|
16552
16929
|
interface OptionsProjectType {
|
|
16553
16930
|
/**
|
|
16554
16931
|
* Type of the project. `lib` will enable more strict rules for libraries.
|