@lichthagel/eslint-config 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +302 -112
- package/dist/index.d.ts +302 -112
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5404,6 +5404,8 @@ type TypescriptEslintExplicitModuleBoundaryTypes = []|[{
|
|
|
5404
5404
|
|
|
5405
5405
|
allowHigherOrderFunctions?: boolean
|
|
5406
5406
|
|
|
5407
|
+
allowOverloadFunctions?: boolean
|
|
5408
|
+
|
|
5407
5409
|
allowTypedFunctionExpressions?: boolean
|
|
5408
5410
|
}]
|
|
5409
5411
|
// ----- @typescript-eslint/init-declarations -----
|
|
@@ -6435,6 +6437,8 @@ type TypescriptEslintUnboundMethod = []|[{
|
|
|
6435
6437
|
type TypescriptEslintUnifiedSignatures = []|[{
|
|
6436
6438
|
|
|
6437
6439
|
ignoreDifferentlyNamedParameters?: boolean
|
|
6440
|
+
|
|
6441
|
+
ignoreOverloadsWithDifferentJSDoc?: boolean
|
|
6438
6442
|
}]
|
|
6439
6443
|
// ----- accessor-pairs -----
|
|
6440
6444
|
type AccessorPairs = []|[{
|
|
@@ -7978,8 +7982,6 @@ type PaddingLineBetweenStatements = {
|
|
|
7978
7982
|
// ----- perfectionist/sort-array-includes -----
|
|
7979
7983
|
type PerfectionistSortArrayIncludes = {
|
|
7980
7984
|
|
|
7981
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7982
|
-
|
|
7983
7985
|
fallbackSort?: {
|
|
7984
7986
|
|
|
7985
7987
|
order?: ("asc" | "desc")
|
|
@@ -7988,6 +7990,8 @@ type PerfectionistSortArrayIncludes = {
|
|
|
7988
7990
|
[k: string]: unknown | undefined
|
|
7989
7991
|
}
|
|
7990
7992
|
|
|
7993
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7994
|
+
|
|
7991
7995
|
ignoreCase?: boolean
|
|
7992
7996
|
|
|
7993
7997
|
alphabet?: string
|
|
@@ -8002,13 +8006,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8002
8006
|
|
|
8003
8007
|
customGroups?: ({
|
|
8004
8008
|
|
|
8005
|
-
|
|
8009
|
+
newlinesInside?: ("always" | "never")
|
|
8010
|
+
|
|
8011
|
+
fallbackSort?: {
|
|
8012
|
+
|
|
8013
|
+
order?: ("asc" | "desc")
|
|
8014
|
+
|
|
8015
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8016
|
+
[k: string]: unknown | undefined
|
|
8017
|
+
}
|
|
8006
8018
|
|
|
8007
|
-
|
|
8019
|
+
groupName?: string
|
|
8008
8020
|
|
|
8009
|
-
order?: ("
|
|
8021
|
+
order?: ("asc" | "desc")
|
|
8010
8022
|
|
|
8011
|
-
|
|
8023
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8012
8024
|
anyOf?: {
|
|
8013
8025
|
|
|
8014
8026
|
selector?: ("literal" | "spread")
|
|
@@ -8023,13 +8035,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8023
8035
|
}[]
|
|
8024
8036
|
} | {
|
|
8025
8037
|
|
|
8026
|
-
|
|
8038
|
+
newlinesInside?: ("always" | "never")
|
|
8027
8039
|
|
|
8028
|
-
|
|
8040
|
+
fallbackSort?: {
|
|
8041
|
+
|
|
8042
|
+
order?: ("asc" | "desc")
|
|
8043
|
+
|
|
8044
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8045
|
+
[k: string]: unknown | undefined
|
|
8046
|
+
}
|
|
8029
8047
|
|
|
8030
|
-
|
|
8048
|
+
groupName?: string
|
|
8031
8049
|
|
|
8032
|
-
|
|
8050
|
+
order?: ("asc" | "desc")
|
|
8051
|
+
|
|
8052
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8033
8053
|
|
|
8034
8054
|
selector?: ("literal" | "spread")
|
|
8035
8055
|
|
|
@@ -8087,8 +8107,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8087
8107
|
// ----- perfectionist/sort-classes -----
|
|
8088
8108
|
type PerfectionistSortClasses = []|[{
|
|
8089
8109
|
|
|
8090
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8091
|
-
|
|
8092
8110
|
fallbackSort?: {
|
|
8093
8111
|
|
|
8094
8112
|
order?: ("asc" | "desc")
|
|
@@ -8097,6 +8115,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
8097
8115
|
[k: string]: unknown | undefined
|
|
8098
8116
|
}
|
|
8099
8117
|
|
|
8118
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8119
|
+
|
|
8100
8120
|
ignoreCase?: boolean
|
|
8101
8121
|
|
|
8102
8122
|
alphabet?: string
|
|
@@ -8109,13 +8129,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
8109
8129
|
|
|
8110
8130
|
customGroups?: ({
|
|
8111
8131
|
|
|
8112
|
-
|
|
8132
|
+
newlinesInside?: ("always" | "never")
|
|
8133
|
+
|
|
8134
|
+
fallbackSort?: {
|
|
8135
|
+
|
|
8136
|
+
order?: ("asc" | "desc")
|
|
8137
|
+
|
|
8138
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8139
|
+
[k: string]: unknown | undefined
|
|
8140
|
+
}
|
|
8113
8141
|
|
|
8114
|
-
|
|
8142
|
+
groupName?: string
|
|
8115
8143
|
|
|
8116
|
-
order?: ("
|
|
8144
|
+
order?: ("asc" | "desc")
|
|
8117
8145
|
|
|
8118
|
-
|
|
8146
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8119
8147
|
anyOf?: {
|
|
8120
8148
|
|
|
8121
8149
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
@@ -8148,13 +8176,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
8148
8176
|
}[]
|
|
8149
8177
|
} | {
|
|
8150
8178
|
|
|
8151
|
-
|
|
8179
|
+
newlinesInside?: ("always" | "never")
|
|
8180
|
+
|
|
8181
|
+
fallbackSort?: {
|
|
8182
|
+
|
|
8183
|
+
order?: ("asc" | "desc")
|
|
8184
|
+
|
|
8185
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8186
|
+
[k: string]: unknown | undefined
|
|
8187
|
+
}
|
|
8152
8188
|
|
|
8153
|
-
|
|
8189
|
+
groupName?: string
|
|
8154
8190
|
|
|
8155
|
-
order?: ("
|
|
8191
|
+
order?: ("asc" | "desc")
|
|
8156
8192
|
|
|
8157
|
-
|
|
8193
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8158
8194
|
|
|
8159
8195
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
8160
8196
|
|
|
@@ -8228,8 +8264,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
8228
8264
|
// ----- perfectionist/sort-decorators -----
|
|
8229
8265
|
type PerfectionistSortDecorators = []|[{
|
|
8230
8266
|
|
|
8231
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8232
|
-
|
|
8233
8267
|
fallbackSort?: {
|
|
8234
8268
|
|
|
8235
8269
|
order?: ("asc" | "desc")
|
|
@@ -8238,6 +8272,8 @@ type PerfectionistSortDecorators = []|[{
|
|
|
8238
8272
|
[k: string]: unknown | undefined
|
|
8239
8273
|
}
|
|
8240
8274
|
|
|
8275
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8276
|
+
|
|
8241
8277
|
ignoreCase?: boolean
|
|
8242
8278
|
|
|
8243
8279
|
alphabet?: string
|
|
@@ -8293,8 +8329,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
8293
8329
|
// ----- perfectionist/sort-enums -----
|
|
8294
8330
|
type PerfectionistSortEnums = []|[{
|
|
8295
8331
|
|
|
8296
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8297
|
-
|
|
8298
8332
|
fallbackSort?: {
|
|
8299
8333
|
|
|
8300
8334
|
order?: ("asc" | "desc")
|
|
@@ -8303,6 +8337,8 @@ type PerfectionistSortEnums = []|[{
|
|
|
8303
8337
|
[k: string]: unknown | undefined
|
|
8304
8338
|
}
|
|
8305
8339
|
|
|
8340
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8341
|
+
|
|
8306
8342
|
ignoreCase?: boolean
|
|
8307
8343
|
|
|
8308
8344
|
alphabet?: string
|
|
@@ -8318,13 +8354,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
8318
8354
|
[k: string]: (string | string[]) | undefined
|
|
8319
8355
|
} | ({
|
|
8320
8356
|
|
|
8321
|
-
|
|
8357
|
+
newlinesInside?: ("always" | "never")
|
|
8322
8358
|
|
|
8323
|
-
|
|
8359
|
+
fallbackSort?: {
|
|
8360
|
+
|
|
8361
|
+
order?: ("asc" | "desc")
|
|
8362
|
+
|
|
8363
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8364
|
+
[k: string]: unknown | undefined
|
|
8365
|
+
}
|
|
8324
8366
|
|
|
8325
|
-
|
|
8367
|
+
groupName?: string
|
|
8326
8368
|
|
|
8327
|
-
|
|
8369
|
+
order?: ("asc" | "desc")
|
|
8370
|
+
|
|
8371
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8328
8372
|
anyOf?: {
|
|
8329
8373
|
|
|
8330
8374
|
elementValuePattern?: (({
|
|
@@ -8345,13 +8389,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
8345
8389
|
}[]
|
|
8346
8390
|
} | {
|
|
8347
8391
|
|
|
8348
|
-
|
|
8392
|
+
newlinesInside?: ("always" | "never")
|
|
8393
|
+
|
|
8394
|
+
fallbackSort?: {
|
|
8395
|
+
|
|
8396
|
+
order?: ("asc" | "desc")
|
|
8397
|
+
|
|
8398
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8399
|
+
[k: string]: unknown | undefined
|
|
8400
|
+
}
|
|
8349
8401
|
|
|
8350
|
-
|
|
8402
|
+
groupName?: string
|
|
8351
8403
|
|
|
8352
|
-
order?: ("
|
|
8404
|
+
order?: ("asc" | "desc")
|
|
8353
8405
|
|
|
8354
|
-
|
|
8406
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8355
8407
|
|
|
8356
8408
|
elementValuePattern?: (({
|
|
8357
8409
|
pattern?: string
|
|
@@ -8407,8 +8459,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
8407
8459
|
// ----- perfectionist/sort-exports -----
|
|
8408
8460
|
type PerfectionistSortExports = []|[{
|
|
8409
8461
|
|
|
8410
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8411
|
-
|
|
8412
8462
|
fallbackSort?: {
|
|
8413
8463
|
|
|
8414
8464
|
order?: ("asc" | "desc")
|
|
@@ -8417,6 +8467,8 @@ type PerfectionistSortExports = []|[{
|
|
|
8417
8467
|
[k: string]: unknown | undefined
|
|
8418
8468
|
}
|
|
8419
8469
|
|
|
8470
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8471
|
+
|
|
8420
8472
|
ignoreCase?: boolean
|
|
8421
8473
|
|
|
8422
8474
|
alphabet?: string
|
|
@@ -8457,8 +8509,6 @@ type PerfectionistSortExports = []|[{
|
|
|
8457
8509
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
8458
8510
|
type PerfectionistSortHeritageClauses = []|[{
|
|
8459
8511
|
|
|
8460
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8461
|
-
|
|
8462
8512
|
fallbackSort?: {
|
|
8463
8513
|
|
|
8464
8514
|
order?: ("asc" | "desc")
|
|
@@ -8467,6 +8517,8 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
8467
8517
|
[k: string]: unknown | undefined
|
|
8468
8518
|
}
|
|
8469
8519
|
|
|
8520
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8521
|
+
|
|
8470
8522
|
ignoreCase?: boolean
|
|
8471
8523
|
|
|
8472
8524
|
alphabet?: string
|
|
@@ -8490,8 +8542,6 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
8490
8542
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
8491
8543
|
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
8492
8544
|
|
|
8493
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8494
|
-
|
|
8495
8545
|
fallbackSort?: {
|
|
8496
8546
|
|
|
8497
8547
|
order?: ("asc" | "desc")
|
|
@@ -8500,6 +8550,8 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
8500
8550
|
[k: string]: unknown | undefined
|
|
8501
8551
|
}
|
|
8502
8552
|
|
|
8553
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8554
|
+
|
|
8503
8555
|
ignoreCase?: boolean
|
|
8504
8556
|
|
|
8505
8557
|
alphabet?: string
|
|
@@ -8579,8 +8631,6 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
8579
8631
|
// ----- perfectionist/sort-interfaces -----
|
|
8580
8632
|
type PerfectionistSortInterfaces = {
|
|
8581
8633
|
|
|
8582
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8583
|
-
|
|
8584
8634
|
fallbackSort?: {
|
|
8585
8635
|
|
|
8586
8636
|
order?: ("asc" | "desc")
|
|
@@ -8589,6 +8639,8 @@ type PerfectionistSortInterfaces = {
|
|
|
8589
8639
|
[k: string]: unknown | undefined
|
|
8590
8640
|
}
|
|
8591
8641
|
|
|
8642
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8643
|
+
|
|
8592
8644
|
ignoreCase?: boolean
|
|
8593
8645
|
|
|
8594
8646
|
alphabet?: string
|
|
@@ -8602,19 +8654,36 @@ type PerfectionistSortInterfaces = {
|
|
|
8602
8654
|
[k: string]: (string | string[]) | undefined
|
|
8603
8655
|
} | ({
|
|
8604
8656
|
|
|
8605
|
-
|
|
8657
|
+
newlinesInside?: ("always" | "never")
|
|
8606
8658
|
|
|
8607
|
-
|
|
8659
|
+
fallbackSort?: {
|
|
8660
|
+
|
|
8661
|
+
order?: ("asc" | "desc")
|
|
8662
|
+
|
|
8663
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8664
|
+
sortBy?: ("name" | "value")
|
|
8665
|
+
[k: string]: unknown | undefined
|
|
8666
|
+
}
|
|
8608
8667
|
|
|
8609
|
-
|
|
8668
|
+
groupName?: string
|
|
8610
8669
|
|
|
8611
|
-
|
|
8670
|
+
order?: ("asc" | "desc")
|
|
8671
|
+
|
|
8672
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8612
8673
|
anyOf?: {
|
|
8613
8674
|
|
|
8614
8675
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
8615
8676
|
|
|
8616
8677
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
8617
8678
|
|
|
8679
|
+
elementValuePattern?: (({
|
|
8680
|
+
pattern?: string
|
|
8681
|
+
flags?: string
|
|
8682
|
+
} | string)[] | ({
|
|
8683
|
+
pattern?: string
|
|
8684
|
+
flags?: string
|
|
8685
|
+
} | string))
|
|
8686
|
+
|
|
8618
8687
|
elementNamePattern?: (({
|
|
8619
8688
|
pattern?: string
|
|
8620
8689
|
flags?: string
|
|
@@ -8622,21 +8691,39 @@ type PerfectionistSortInterfaces = {
|
|
|
8622
8691
|
pattern?: string
|
|
8623
8692
|
flags?: string
|
|
8624
8693
|
} | string))
|
|
8694
|
+
sortBy?: ("name" | "value")
|
|
8625
8695
|
}[]
|
|
8626
8696
|
} | {
|
|
8627
8697
|
|
|
8628
|
-
|
|
8698
|
+
newlinesInside?: ("always" | "never")
|
|
8629
8699
|
|
|
8630
|
-
|
|
8700
|
+
fallbackSort?: {
|
|
8701
|
+
|
|
8702
|
+
order?: ("asc" | "desc")
|
|
8703
|
+
|
|
8704
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8705
|
+
sortBy?: ("name" | "value")
|
|
8706
|
+
[k: string]: unknown | undefined
|
|
8707
|
+
}
|
|
8631
8708
|
|
|
8632
|
-
|
|
8709
|
+
groupName?: string
|
|
8633
8710
|
|
|
8634
|
-
|
|
8711
|
+
order?: ("asc" | "desc")
|
|
8712
|
+
|
|
8713
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8635
8714
|
|
|
8636
8715
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
8637
8716
|
|
|
8638
8717
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
8639
8718
|
|
|
8719
|
+
elementValuePattern?: (({
|
|
8720
|
+
pattern?: string
|
|
8721
|
+
flags?: string
|
|
8722
|
+
} | string)[] | ({
|
|
8723
|
+
pattern?: string
|
|
8724
|
+
flags?: string
|
|
8725
|
+
} | string))
|
|
8726
|
+
|
|
8640
8727
|
elementNamePattern?: (({
|
|
8641
8728
|
pattern?: string
|
|
8642
8729
|
flags?: string
|
|
@@ -8644,6 +8731,7 @@ type PerfectionistSortInterfaces = {
|
|
|
8644
8731
|
pattern?: string
|
|
8645
8732
|
flags?: string
|
|
8646
8733
|
} | string))
|
|
8734
|
+
sortBy?: ("name" | "value")
|
|
8647
8735
|
})[])
|
|
8648
8736
|
useConfigurationIf?: {
|
|
8649
8737
|
|
|
@@ -8700,6 +8788,7 @@ type PerfectionistSortInterfaces = {
|
|
|
8700
8788
|
pattern?: string
|
|
8701
8789
|
flags?: string
|
|
8702
8790
|
} | string))
|
|
8791
|
+
sortBy?: ("name" | "value")
|
|
8703
8792
|
|
|
8704
8793
|
groups?: (string | string[] | {
|
|
8705
8794
|
|
|
@@ -8709,8 +8798,6 @@ type PerfectionistSortInterfaces = {
|
|
|
8709
8798
|
// ----- perfectionist/sort-intersection-types -----
|
|
8710
8799
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
8711
8800
|
|
|
8712
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8713
|
-
|
|
8714
8801
|
fallbackSort?: {
|
|
8715
8802
|
|
|
8716
8803
|
order?: ("asc" | "desc")
|
|
@@ -8719,6 +8806,8 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
8719
8806
|
[k: string]: unknown | undefined
|
|
8720
8807
|
}
|
|
8721
8808
|
|
|
8809
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8810
|
+
|
|
8722
8811
|
ignoreCase?: boolean
|
|
8723
8812
|
|
|
8724
8813
|
alphabet?: string
|
|
@@ -8764,8 +8853,6 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
8764
8853
|
// ----- perfectionist/sort-jsx-props -----
|
|
8765
8854
|
type PerfectionistSortJsxProps = {
|
|
8766
8855
|
|
|
8767
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8768
|
-
|
|
8769
8856
|
fallbackSort?: {
|
|
8770
8857
|
|
|
8771
8858
|
order?: ("asc" | "desc")
|
|
@@ -8774,6 +8861,8 @@ type PerfectionistSortJsxProps = {
|
|
|
8774
8861
|
[k: string]: unknown | undefined
|
|
8775
8862
|
}
|
|
8776
8863
|
|
|
8864
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8865
|
+
|
|
8777
8866
|
ignoreCase?: boolean
|
|
8778
8867
|
|
|
8779
8868
|
alphabet?: string
|
|
@@ -8826,8 +8915,6 @@ type PerfectionistSortJsxProps = {
|
|
|
8826
8915
|
// ----- perfectionist/sort-maps -----
|
|
8827
8916
|
type PerfectionistSortMaps = {
|
|
8828
8917
|
|
|
8829
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8830
|
-
|
|
8831
8918
|
fallbackSort?: {
|
|
8832
8919
|
|
|
8833
8920
|
order?: ("asc" | "desc")
|
|
@@ -8836,6 +8923,8 @@ type PerfectionistSortMaps = {
|
|
|
8836
8923
|
[k: string]: unknown | undefined
|
|
8837
8924
|
}
|
|
8838
8925
|
|
|
8926
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8927
|
+
|
|
8839
8928
|
ignoreCase?: boolean
|
|
8840
8929
|
|
|
8841
8930
|
alphabet?: string
|
|
@@ -8848,13 +8937,21 @@ type PerfectionistSortMaps = {
|
|
|
8848
8937
|
|
|
8849
8938
|
customGroups?: ({
|
|
8850
8939
|
|
|
8851
|
-
|
|
8940
|
+
newlinesInside?: ("always" | "never")
|
|
8941
|
+
|
|
8942
|
+
fallbackSort?: {
|
|
8943
|
+
|
|
8944
|
+
order?: ("asc" | "desc")
|
|
8945
|
+
|
|
8946
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8947
|
+
[k: string]: unknown | undefined
|
|
8948
|
+
}
|
|
8852
8949
|
|
|
8853
|
-
|
|
8950
|
+
groupName?: string
|
|
8854
8951
|
|
|
8855
|
-
order?: ("
|
|
8952
|
+
order?: ("asc" | "desc")
|
|
8856
8953
|
|
|
8857
|
-
|
|
8954
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8858
8955
|
anyOf?: {
|
|
8859
8956
|
|
|
8860
8957
|
elementNamePattern?: (({
|
|
@@ -8867,13 +8964,21 @@ type PerfectionistSortMaps = {
|
|
|
8867
8964
|
}[]
|
|
8868
8965
|
} | {
|
|
8869
8966
|
|
|
8870
|
-
|
|
8967
|
+
newlinesInside?: ("always" | "never")
|
|
8968
|
+
|
|
8969
|
+
fallbackSort?: {
|
|
8970
|
+
|
|
8971
|
+
order?: ("asc" | "desc")
|
|
8972
|
+
|
|
8973
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8974
|
+
[k: string]: unknown | undefined
|
|
8975
|
+
}
|
|
8871
8976
|
|
|
8872
|
-
|
|
8977
|
+
groupName?: string
|
|
8873
8978
|
|
|
8874
|
-
order?: ("
|
|
8979
|
+
order?: ("asc" | "desc")
|
|
8875
8980
|
|
|
8876
|
-
|
|
8981
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8877
8982
|
|
|
8878
8983
|
elementNamePattern?: (({
|
|
8879
8984
|
pattern?: string
|
|
@@ -8929,8 +9034,6 @@ type PerfectionistSortMaps = {
|
|
|
8929
9034
|
// ----- perfectionist/sort-modules -----
|
|
8930
9035
|
type PerfectionistSortModules = []|[{
|
|
8931
9036
|
|
|
8932
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8933
|
-
|
|
8934
9037
|
fallbackSort?: {
|
|
8935
9038
|
|
|
8936
9039
|
order?: ("asc" | "desc")
|
|
@@ -8939,6 +9042,8 @@ type PerfectionistSortModules = []|[{
|
|
|
8939
9042
|
[k: string]: unknown | undefined
|
|
8940
9043
|
}
|
|
8941
9044
|
|
|
9045
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9046
|
+
|
|
8942
9047
|
ignoreCase?: boolean
|
|
8943
9048
|
|
|
8944
9049
|
alphabet?: string
|
|
@@ -8951,13 +9056,21 @@ type PerfectionistSortModules = []|[{
|
|
|
8951
9056
|
|
|
8952
9057
|
customGroups?: ({
|
|
8953
9058
|
|
|
8954
|
-
|
|
9059
|
+
newlinesInside?: ("always" | "never")
|
|
9060
|
+
|
|
9061
|
+
fallbackSort?: {
|
|
9062
|
+
|
|
9063
|
+
order?: ("asc" | "desc")
|
|
9064
|
+
|
|
9065
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9066
|
+
[k: string]: unknown | undefined
|
|
9067
|
+
}
|
|
8955
9068
|
|
|
8956
|
-
|
|
9069
|
+
groupName?: string
|
|
8957
9070
|
|
|
8958
|
-
order?: ("
|
|
9071
|
+
order?: ("asc" | "desc")
|
|
8959
9072
|
|
|
8960
|
-
|
|
9073
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8961
9074
|
anyOf?: {
|
|
8962
9075
|
|
|
8963
9076
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
@@ -8982,13 +9095,21 @@ type PerfectionistSortModules = []|[{
|
|
|
8982
9095
|
}[]
|
|
8983
9096
|
} | {
|
|
8984
9097
|
|
|
8985
|
-
|
|
9098
|
+
newlinesInside?: ("always" | "never")
|
|
8986
9099
|
|
|
8987
|
-
|
|
9100
|
+
fallbackSort?: {
|
|
9101
|
+
|
|
9102
|
+
order?: ("asc" | "desc")
|
|
9103
|
+
|
|
9104
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9105
|
+
[k: string]: unknown | undefined
|
|
9106
|
+
}
|
|
8988
9107
|
|
|
8989
|
-
|
|
9108
|
+
groupName?: string
|
|
8990
9109
|
|
|
8991
|
-
|
|
9110
|
+
order?: ("asc" | "desc")
|
|
9111
|
+
|
|
9112
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8992
9113
|
|
|
8993
9114
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
8994
9115
|
|
|
@@ -9046,8 +9167,6 @@ type PerfectionistSortModules = []|[{
|
|
|
9046
9167
|
// ----- perfectionist/sort-named-exports -----
|
|
9047
9168
|
type PerfectionistSortNamedExports = []|[{
|
|
9048
9169
|
|
|
9049
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9050
|
-
|
|
9051
9170
|
fallbackSort?: {
|
|
9052
9171
|
|
|
9053
9172
|
order?: ("asc" | "desc")
|
|
@@ -9056,6 +9175,8 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
9056
9175
|
[k: string]: unknown | undefined
|
|
9057
9176
|
}
|
|
9058
9177
|
|
|
9178
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9179
|
+
|
|
9059
9180
|
ignoreCase?: boolean
|
|
9060
9181
|
|
|
9061
9182
|
alphabet?: string
|
|
@@ -9098,8 +9219,6 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
9098
9219
|
// ----- perfectionist/sort-named-imports -----
|
|
9099
9220
|
type PerfectionistSortNamedImports = []|[{
|
|
9100
9221
|
|
|
9101
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9102
|
-
|
|
9103
9222
|
fallbackSort?: {
|
|
9104
9223
|
|
|
9105
9224
|
order?: ("asc" | "desc")
|
|
@@ -9108,6 +9227,8 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
9108
9227
|
[k: string]: unknown | undefined
|
|
9109
9228
|
}
|
|
9110
9229
|
|
|
9230
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9231
|
+
|
|
9111
9232
|
ignoreCase?: boolean
|
|
9112
9233
|
|
|
9113
9234
|
alphabet?: string
|
|
@@ -9150,8 +9271,6 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
9150
9271
|
// ----- perfectionist/sort-object-types -----
|
|
9151
9272
|
type PerfectionistSortObjectTypes = {
|
|
9152
9273
|
|
|
9153
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9154
|
-
|
|
9155
9274
|
fallbackSort?: {
|
|
9156
9275
|
|
|
9157
9276
|
order?: ("asc" | "desc")
|
|
@@ -9160,6 +9279,8 @@ type PerfectionistSortObjectTypes = {
|
|
|
9160
9279
|
[k: string]: unknown | undefined
|
|
9161
9280
|
}
|
|
9162
9281
|
|
|
9282
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9283
|
+
|
|
9163
9284
|
ignoreCase?: boolean
|
|
9164
9285
|
|
|
9165
9286
|
alphabet?: string
|
|
@@ -9173,19 +9294,36 @@ type PerfectionistSortObjectTypes = {
|
|
|
9173
9294
|
[k: string]: (string | string[]) | undefined
|
|
9174
9295
|
} | ({
|
|
9175
9296
|
|
|
9176
|
-
|
|
9297
|
+
newlinesInside?: ("always" | "never")
|
|
9177
9298
|
|
|
9178
|
-
|
|
9299
|
+
fallbackSort?: {
|
|
9300
|
+
|
|
9301
|
+
order?: ("asc" | "desc")
|
|
9302
|
+
|
|
9303
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9304
|
+
sortBy?: ("name" | "value")
|
|
9305
|
+
[k: string]: unknown | undefined
|
|
9306
|
+
}
|
|
9179
9307
|
|
|
9180
|
-
|
|
9308
|
+
groupName?: string
|
|
9181
9309
|
|
|
9182
|
-
|
|
9310
|
+
order?: ("asc" | "desc")
|
|
9311
|
+
|
|
9312
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9183
9313
|
anyOf?: {
|
|
9184
9314
|
|
|
9185
9315
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9186
9316
|
|
|
9187
9317
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9188
9318
|
|
|
9319
|
+
elementValuePattern?: (({
|
|
9320
|
+
pattern?: string
|
|
9321
|
+
flags?: string
|
|
9322
|
+
} | string)[] | ({
|
|
9323
|
+
pattern?: string
|
|
9324
|
+
flags?: string
|
|
9325
|
+
} | string))
|
|
9326
|
+
|
|
9189
9327
|
elementNamePattern?: (({
|
|
9190
9328
|
pattern?: string
|
|
9191
9329
|
flags?: string
|
|
@@ -9193,21 +9331,39 @@ type PerfectionistSortObjectTypes = {
|
|
|
9193
9331
|
pattern?: string
|
|
9194
9332
|
flags?: string
|
|
9195
9333
|
} | string))
|
|
9334
|
+
sortBy?: ("name" | "value")
|
|
9196
9335
|
}[]
|
|
9197
9336
|
} | {
|
|
9198
9337
|
|
|
9199
|
-
|
|
9338
|
+
newlinesInside?: ("always" | "never")
|
|
9339
|
+
|
|
9340
|
+
fallbackSort?: {
|
|
9341
|
+
|
|
9342
|
+
order?: ("asc" | "desc")
|
|
9343
|
+
|
|
9344
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9345
|
+
sortBy?: ("name" | "value")
|
|
9346
|
+
[k: string]: unknown | undefined
|
|
9347
|
+
}
|
|
9200
9348
|
|
|
9201
|
-
|
|
9349
|
+
groupName?: string
|
|
9202
9350
|
|
|
9203
|
-
order?: ("
|
|
9351
|
+
order?: ("asc" | "desc")
|
|
9204
9352
|
|
|
9205
|
-
|
|
9353
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9206
9354
|
|
|
9207
9355
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9208
9356
|
|
|
9209
9357
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9210
9358
|
|
|
9359
|
+
elementValuePattern?: (({
|
|
9360
|
+
pattern?: string
|
|
9361
|
+
flags?: string
|
|
9362
|
+
} | string)[] | ({
|
|
9363
|
+
pattern?: string
|
|
9364
|
+
flags?: string
|
|
9365
|
+
} | string))
|
|
9366
|
+
|
|
9211
9367
|
elementNamePattern?: (({
|
|
9212
9368
|
pattern?: string
|
|
9213
9369
|
flags?: string
|
|
@@ -9215,6 +9371,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
9215
9371
|
pattern?: string
|
|
9216
9372
|
flags?: string
|
|
9217
9373
|
} | string))
|
|
9374
|
+
sortBy?: ("name" | "value")
|
|
9218
9375
|
})[])
|
|
9219
9376
|
useConfigurationIf?: {
|
|
9220
9377
|
|
|
@@ -9271,6 +9428,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
9271
9428
|
pattern?: string
|
|
9272
9429
|
flags?: string
|
|
9273
9430
|
} | string))
|
|
9431
|
+
sortBy?: ("name" | "value")
|
|
9274
9432
|
|
|
9275
9433
|
groups?: (string | string[] | {
|
|
9276
9434
|
|
|
@@ -9280,8 +9438,6 @@ type PerfectionistSortObjectTypes = {
|
|
|
9280
9438
|
// ----- perfectionist/sort-objects -----
|
|
9281
9439
|
type PerfectionistSortObjects = {
|
|
9282
9440
|
|
|
9283
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9284
|
-
|
|
9285
9441
|
fallbackSort?: {
|
|
9286
9442
|
|
|
9287
9443
|
order?: ("asc" | "desc")
|
|
@@ -9290,6 +9446,8 @@ type PerfectionistSortObjects = {
|
|
|
9290
9446
|
[k: string]: unknown | undefined
|
|
9291
9447
|
}
|
|
9292
9448
|
|
|
9449
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9450
|
+
|
|
9293
9451
|
ignoreCase?: boolean
|
|
9294
9452
|
|
|
9295
9453
|
alphabet?: string
|
|
@@ -9308,13 +9466,21 @@ type PerfectionistSortObjects = {
|
|
|
9308
9466
|
[k: string]: (string | string[]) | undefined
|
|
9309
9467
|
} | ({
|
|
9310
9468
|
|
|
9311
|
-
|
|
9469
|
+
newlinesInside?: ("always" | "never")
|
|
9312
9470
|
|
|
9313
|
-
|
|
9471
|
+
fallbackSort?: {
|
|
9472
|
+
|
|
9473
|
+
order?: ("asc" | "desc")
|
|
9474
|
+
|
|
9475
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9476
|
+
[k: string]: unknown | undefined
|
|
9477
|
+
}
|
|
9478
|
+
|
|
9479
|
+
groupName?: string
|
|
9314
9480
|
|
|
9315
|
-
order?: ("
|
|
9481
|
+
order?: ("asc" | "desc")
|
|
9316
9482
|
|
|
9317
|
-
|
|
9483
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9318
9484
|
anyOf?: {
|
|
9319
9485
|
|
|
9320
9486
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -9339,13 +9505,21 @@ type PerfectionistSortObjects = {
|
|
|
9339
9505
|
}[]
|
|
9340
9506
|
} | {
|
|
9341
9507
|
|
|
9342
|
-
|
|
9508
|
+
newlinesInside?: ("always" | "never")
|
|
9343
9509
|
|
|
9344
|
-
|
|
9510
|
+
fallbackSort?: {
|
|
9511
|
+
|
|
9512
|
+
order?: ("asc" | "desc")
|
|
9513
|
+
|
|
9514
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9515
|
+
[k: string]: unknown | undefined
|
|
9516
|
+
}
|
|
9345
9517
|
|
|
9346
|
-
|
|
9518
|
+
groupName?: string
|
|
9347
9519
|
|
|
9348
|
-
|
|
9520
|
+
order?: ("asc" | "desc")
|
|
9521
|
+
|
|
9522
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9349
9523
|
|
|
9350
9524
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9351
9525
|
|
|
@@ -9435,8 +9609,6 @@ type PerfectionistSortObjects = {
|
|
|
9435
9609
|
// ----- perfectionist/sort-sets -----
|
|
9436
9610
|
type PerfectionistSortSets = {
|
|
9437
9611
|
|
|
9438
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9439
|
-
|
|
9440
9612
|
fallbackSort?: {
|
|
9441
9613
|
|
|
9442
9614
|
order?: ("asc" | "desc")
|
|
@@ -9445,6 +9617,8 @@ type PerfectionistSortSets = {
|
|
|
9445
9617
|
[k: string]: unknown | undefined
|
|
9446
9618
|
}
|
|
9447
9619
|
|
|
9620
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9621
|
+
|
|
9448
9622
|
ignoreCase?: boolean
|
|
9449
9623
|
|
|
9450
9624
|
alphabet?: string
|
|
@@ -9459,13 +9633,21 @@ type PerfectionistSortSets = {
|
|
|
9459
9633
|
|
|
9460
9634
|
customGroups?: ({
|
|
9461
9635
|
|
|
9462
|
-
|
|
9636
|
+
newlinesInside?: ("always" | "never")
|
|
9637
|
+
|
|
9638
|
+
fallbackSort?: {
|
|
9639
|
+
|
|
9640
|
+
order?: ("asc" | "desc")
|
|
9641
|
+
|
|
9642
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9643
|
+
[k: string]: unknown | undefined
|
|
9644
|
+
}
|
|
9463
9645
|
|
|
9464
|
-
|
|
9646
|
+
groupName?: string
|
|
9465
9647
|
|
|
9466
|
-
order?: ("
|
|
9648
|
+
order?: ("asc" | "desc")
|
|
9467
9649
|
|
|
9468
|
-
|
|
9650
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9469
9651
|
anyOf?: {
|
|
9470
9652
|
|
|
9471
9653
|
selector?: ("literal" | "spread")
|
|
@@ -9480,13 +9662,21 @@ type PerfectionistSortSets = {
|
|
|
9480
9662
|
}[]
|
|
9481
9663
|
} | {
|
|
9482
9664
|
|
|
9483
|
-
|
|
9665
|
+
newlinesInside?: ("always" | "never")
|
|
9484
9666
|
|
|
9485
|
-
|
|
9667
|
+
fallbackSort?: {
|
|
9668
|
+
|
|
9669
|
+
order?: ("asc" | "desc")
|
|
9670
|
+
|
|
9671
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9672
|
+
[k: string]: unknown | undefined
|
|
9673
|
+
}
|
|
9486
9674
|
|
|
9487
|
-
|
|
9675
|
+
groupName?: string
|
|
9488
9676
|
|
|
9489
|
-
|
|
9677
|
+
order?: ("asc" | "desc")
|
|
9678
|
+
|
|
9679
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9490
9680
|
|
|
9491
9681
|
selector?: ("literal" | "spread")
|
|
9492
9682
|
|
|
@@ -9544,8 +9734,6 @@ type PerfectionistSortSets = {
|
|
|
9544
9734
|
// ----- perfectionist/sort-switch-case -----
|
|
9545
9735
|
type PerfectionistSortSwitchCase = []|[{
|
|
9546
9736
|
|
|
9547
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9548
|
-
|
|
9549
9737
|
fallbackSort?: {
|
|
9550
9738
|
|
|
9551
9739
|
order?: ("asc" | "desc")
|
|
@@ -9554,6 +9742,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
9554
9742
|
[k: string]: unknown | undefined
|
|
9555
9743
|
}
|
|
9556
9744
|
|
|
9745
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9746
|
+
|
|
9557
9747
|
ignoreCase?: boolean
|
|
9558
9748
|
|
|
9559
9749
|
alphabet?: string
|
|
@@ -9567,8 +9757,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
9567
9757
|
// ----- perfectionist/sort-union-types -----
|
|
9568
9758
|
type PerfectionistSortUnionTypes = []|[{
|
|
9569
9759
|
|
|
9570
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9571
|
-
|
|
9572
9760
|
fallbackSort?: {
|
|
9573
9761
|
|
|
9574
9762
|
order?: ("asc" | "desc")
|
|
@@ -9577,6 +9765,8 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
9577
9765
|
[k: string]: unknown | undefined
|
|
9578
9766
|
}
|
|
9579
9767
|
|
|
9768
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9769
|
+
|
|
9580
9770
|
ignoreCase?: boolean
|
|
9581
9771
|
|
|
9582
9772
|
alphabet?: string
|
|
@@ -9622,8 +9812,6 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
9622
9812
|
// ----- perfectionist/sort-variable-declarations -----
|
|
9623
9813
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
9624
9814
|
|
|
9625
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9626
|
-
|
|
9627
9815
|
fallbackSort?: {
|
|
9628
9816
|
|
|
9629
9817
|
order?: ("asc" | "desc")
|
|
@@ -9632,6 +9820,8 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
9632
9820
|
[k: string]: unknown | undefined
|
|
9633
9821
|
}
|
|
9634
9822
|
|
|
9823
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9824
|
+
|
|
9635
9825
|
ignoreCase?: boolean
|
|
9636
9826
|
|
|
9637
9827
|
alphabet?: string
|