@lichthagel/eslint-config 1.0.22 → 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 +298 -112
- package/dist/index.d.ts +298 -112
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -7982,8 +7982,6 @@ type PaddingLineBetweenStatements = {
|
|
|
7982
7982
|
// ----- perfectionist/sort-array-includes -----
|
|
7983
7983
|
type PerfectionistSortArrayIncludes = {
|
|
7984
7984
|
|
|
7985
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7986
|
-
|
|
7987
7985
|
fallbackSort?: {
|
|
7988
7986
|
|
|
7989
7987
|
order?: ("asc" | "desc")
|
|
@@ -7992,6 +7990,8 @@ type PerfectionistSortArrayIncludes = {
|
|
|
7992
7990
|
[k: string]: unknown | undefined
|
|
7993
7991
|
}
|
|
7994
7992
|
|
|
7993
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
7994
|
+
|
|
7995
7995
|
ignoreCase?: boolean
|
|
7996
7996
|
|
|
7997
7997
|
alphabet?: string
|
|
@@ -8006,13 +8006,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8006
8006
|
|
|
8007
8007
|
customGroups?: ({
|
|
8008
8008
|
|
|
8009
|
-
|
|
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
|
+
}
|
|
8010
8018
|
|
|
8011
|
-
|
|
8019
|
+
groupName?: string
|
|
8012
8020
|
|
|
8013
|
-
order?: ("
|
|
8021
|
+
order?: ("asc" | "desc")
|
|
8014
8022
|
|
|
8015
|
-
|
|
8023
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8016
8024
|
anyOf?: {
|
|
8017
8025
|
|
|
8018
8026
|
selector?: ("literal" | "spread")
|
|
@@ -8027,13 +8035,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8027
8035
|
}[]
|
|
8028
8036
|
} | {
|
|
8029
8037
|
|
|
8030
|
-
|
|
8038
|
+
newlinesInside?: ("always" | "never")
|
|
8031
8039
|
|
|
8032
|
-
|
|
8040
|
+
fallbackSort?: {
|
|
8041
|
+
|
|
8042
|
+
order?: ("asc" | "desc")
|
|
8043
|
+
|
|
8044
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8045
|
+
[k: string]: unknown | undefined
|
|
8046
|
+
}
|
|
8033
8047
|
|
|
8034
|
-
|
|
8048
|
+
groupName?: string
|
|
8035
8049
|
|
|
8036
|
-
|
|
8050
|
+
order?: ("asc" | "desc")
|
|
8051
|
+
|
|
8052
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8037
8053
|
|
|
8038
8054
|
selector?: ("literal" | "spread")
|
|
8039
8055
|
|
|
@@ -8091,8 +8107,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
8091
8107
|
// ----- perfectionist/sort-classes -----
|
|
8092
8108
|
type PerfectionistSortClasses = []|[{
|
|
8093
8109
|
|
|
8094
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8095
|
-
|
|
8096
8110
|
fallbackSort?: {
|
|
8097
8111
|
|
|
8098
8112
|
order?: ("asc" | "desc")
|
|
@@ -8101,6 +8115,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
8101
8115
|
[k: string]: unknown | undefined
|
|
8102
8116
|
}
|
|
8103
8117
|
|
|
8118
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8119
|
+
|
|
8104
8120
|
ignoreCase?: boolean
|
|
8105
8121
|
|
|
8106
8122
|
alphabet?: string
|
|
@@ -8113,13 +8129,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
8113
8129
|
|
|
8114
8130
|
customGroups?: ({
|
|
8115
8131
|
|
|
8116
|
-
|
|
8132
|
+
newlinesInside?: ("always" | "never")
|
|
8117
8133
|
|
|
8118
|
-
|
|
8134
|
+
fallbackSort?: {
|
|
8135
|
+
|
|
8136
|
+
order?: ("asc" | "desc")
|
|
8137
|
+
|
|
8138
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8139
|
+
[k: string]: unknown | undefined
|
|
8140
|
+
}
|
|
8119
8141
|
|
|
8120
|
-
|
|
8142
|
+
groupName?: string
|
|
8121
8143
|
|
|
8122
|
-
|
|
8144
|
+
order?: ("asc" | "desc")
|
|
8145
|
+
|
|
8146
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8123
8147
|
anyOf?: {
|
|
8124
8148
|
|
|
8125
8149
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
@@ -8152,13 +8176,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
8152
8176
|
}[]
|
|
8153
8177
|
} | {
|
|
8154
8178
|
|
|
8155
|
-
|
|
8179
|
+
newlinesInside?: ("always" | "never")
|
|
8156
8180
|
|
|
8157
|
-
|
|
8181
|
+
fallbackSort?: {
|
|
8182
|
+
|
|
8183
|
+
order?: ("asc" | "desc")
|
|
8184
|
+
|
|
8185
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8186
|
+
[k: string]: unknown | undefined
|
|
8187
|
+
}
|
|
8158
8188
|
|
|
8159
|
-
|
|
8189
|
+
groupName?: string
|
|
8160
8190
|
|
|
8161
|
-
|
|
8191
|
+
order?: ("asc" | "desc")
|
|
8192
|
+
|
|
8193
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8162
8194
|
|
|
8163
8195
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
8164
8196
|
|
|
@@ -8232,8 +8264,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
8232
8264
|
// ----- perfectionist/sort-decorators -----
|
|
8233
8265
|
type PerfectionistSortDecorators = []|[{
|
|
8234
8266
|
|
|
8235
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8236
|
-
|
|
8237
8267
|
fallbackSort?: {
|
|
8238
8268
|
|
|
8239
8269
|
order?: ("asc" | "desc")
|
|
@@ -8242,6 +8272,8 @@ type PerfectionistSortDecorators = []|[{
|
|
|
8242
8272
|
[k: string]: unknown | undefined
|
|
8243
8273
|
}
|
|
8244
8274
|
|
|
8275
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8276
|
+
|
|
8245
8277
|
ignoreCase?: boolean
|
|
8246
8278
|
|
|
8247
8279
|
alphabet?: string
|
|
@@ -8297,8 +8329,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
8297
8329
|
// ----- perfectionist/sort-enums -----
|
|
8298
8330
|
type PerfectionistSortEnums = []|[{
|
|
8299
8331
|
|
|
8300
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8301
|
-
|
|
8302
8332
|
fallbackSort?: {
|
|
8303
8333
|
|
|
8304
8334
|
order?: ("asc" | "desc")
|
|
@@ -8307,6 +8337,8 @@ type PerfectionistSortEnums = []|[{
|
|
|
8307
8337
|
[k: string]: unknown | undefined
|
|
8308
8338
|
}
|
|
8309
8339
|
|
|
8340
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8341
|
+
|
|
8310
8342
|
ignoreCase?: boolean
|
|
8311
8343
|
|
|
8312
8344
|
alphabet?: string
|
|
@@ -8322,13 +8354,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
8322
8354
|
[k: string]: (string | string[]) | undefined
|
|
8323
8355
|
} | ({
|
|
8324
8356
|
|
|
8325
|
-
|
|
8357
|
+
newlinesInside?: ("always" | "never")
|
|
8326
8358
|
|
|
8327
|
-
|
|
8359
|
+
fallbackSort?: {
|
|
8360
|
+
|
|
8361
|
+
order?: ("asc" | "desc")
|
|
8362
|
+
|
|
8363
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8364
|
+
[k: string]: unknown | undefined
|
|
8365
|
+
}
|
|
8328
8366
|
|
|
8329
|
-
|
|
8367
|
+
groupName?: string
|
|
8330
8368
|
|
|
8331
|
-
|
|
8369
|
+
order?: ("asc" | "desc")
|
|
8370
|
+
|
|
8371
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8332
8372
|
anyOf?: {
|
|
8333
8373
|
|
|
8334
8374
|
elementValuePattern?: (({
|
|
@@ -8349,13 +8389,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
8349
8389
|
}[]
|
|
8350
8390
|
} | {
|
|
8351
8391
|
|
|
8352
|
-
|
|
8392
|
+
newlinesInside?: ("always" | "never")
|
|
8353
8393
|
|
|
8354
|
-
|
|
8394
|
+
fallbackSort?: {
|
|
8395
|
+
|
|
8396
|
+
order?: ("asc" | "desc")
|
|
8397
|
+
|
|
8398
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8399
|
+
[k: string]: unknown | undefined
|
|
8400
|
+
}
|
|
8355
8401
|
|
|
8356
|
-
|
|
8402
|
+
groupName?: string
|
|
8357
8403
|
|
|
8358
|
-
|
|
8404
|
+
order?: ("asc" | "desc")
|
|
8405
|
+
|
|
8406
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8359
8407
|
|
|
8360
8408
|
elementValuePattern?: (({
|
|
8361
8409
|
pattern?: string
|
|
@@ -8411,8 +8459,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
8411
8459
|
// ----- perfectionist/sort-exports -----
|
|
8412
8460
|
type PerfectionistSortExports = []|[{
|
|
8413
8461
|
|
|
8414
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8415
|
-
|
|
8416
8462
|
fallbackSort?: {
|
|
8417
8463
|
|
|
8418
8464
|
order?: ("asc" | "desc")
|
|
@@ -8421,6 +8467,8 @@ type PerfectionistSortExports = []|[{
|
|
|
8421
8467
|
[k: string]: unknown | undefined
|
|
8422
8468
|
}
|
|
8423
8469
|
|
|
8470
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8471
|
+
|
|
8424
8472
|
ignoreCase?: boolean
|
|
8425
8473
|
|
|
8426
8474
|
alphabet?: string
|
|
@@ -8461,8 +8509,6 @@ type PerfectionistSortExports = []|[{
|
|
|
8461
8509
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
8462
8510
|
type PerfectionistSortHeritageClauses = []|[{
|
|
8463
8511
|
|
|
8464
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8465
|
-
|
|
8466
8512
|
fallbackSort?: {
|
|
8467
8513
|
|
|
8468
8514
|
order?: ("asc" | "desc")
|
|
@@ -8471,6 +8517,8 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
8471
8517
|
[k: string]: unknown | undefined
|
|
8472
8518
|
}
|
|
8473
8519
|
|
|
8520
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8521
|
+
|
|
8474
8522
|
ignoreCase?: boolean
|
|
8475
8523
|
|
|
8476
8524
|
alphabet?: string
|
|
@@ -8494,8 +8542,6 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
8494
8542
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
8495
8543
|
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
8496
8544
|
|
|
8497
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8498
|
-
|
|
8499
8545
|
fallbackSort?: {
|
|
8500
8546
|
|
|
8501
8547
|
order?: ("asc" | "desc")
|
|
@@ -8504,6 +8550,8 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
8504
8550
|
[k: string]: unknown | undefined
|
|
8505
8551
|
}
|
|
8506
8552
|
|
|
8553
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8554
|
+
|
|
8507
8555
|
ignoreCase?: boolean
|
|
8508
8556
|
|
|
8509
8557
|
alphabet?: string
|
|
@@ -8583,8 +8631,6 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
8583
8631
|
// ----- perfectionist/sort-interfaces -----
|
|
8584
8632
|
type PerfectionistSortInterfaces = {
|
|
8585
8633
|
|
|
8586
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8587
|
-
|
|
8588
8634
|
fallbackSort?: {
|
|
8589
8635
|
|
|
8590
8636
|
order?: ("asc" | "desc")
|
|
@@ -8593,6 +8639,8 @@ type PerfectionistSortInterfaces = {
|
|
|
8593
8639
|
[k: string]: unknown | undefined
|
|
8594
8640
|
}
|
|
8595
8641
|
|
|
8642
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8643
|
+
|
|
8596
8644
|
ignoreCase?: boolean
|
|
8597
8645
|
|
|
8598
8646
|
alphabet?: string
|
|
@@ -8606,19 +8654,36 @@ type PerfectionistSortInterfaces = {
|
|
|
8606
8654
|
[k: string]: (string | string[]) | undefined
|
|
8607
8655
|
} | ({
|
|
8608
8656
|
|
|
8609
|
-
|
|
8657
|
+
newlinesInside?: ("always" | "never")
|
|
8658
|
+
|
|
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
|
+
}
|
|
8610
8667
|
|
|
8611
|
-
|
|
8668
|
+
groupName?: string
|
|
8612
8669
|
|
|
8613
|
-
order?: ("
|
|
8670
|
+
order?: ("asc" | "desc")
|
|
8614
8671
|
|
|
8615
|
-
|
|
8672
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8616
8673
|
anyOf?: {
|
|
8617
8674
|
|
|
8618
8675
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
8619
8676
|
|
|
8620
8677
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
8621
8678
|
|
|
8679
|
+
elementValuePattern?: (({
|
|
8680
|
+
pattern?: string
|
|
8681
|
+
flags?: string
|
|
8682
|
+
} | string)[] | ({
|
|
8683
|
+
pattern?: string
|
|
8684
|
+
flags?: string
|
|
8685
|
+
} | string))
|
|
8686
|
+
|
|
8622
8687
|
elementNamePattern?: (({
|
|
8623
8688
|
pattern?: string
|
|
8624
8689
|
flags?: string
|
|
@@ -8626,21 +8691,39 @@ type PerfectionistSortInterfaces = {
|
|
|
8626
8691
|
pattern?: string
|
|
8627
8692
|
flags?: string
|
|
8628
8693
|
} | string))
|
|
8694
|
+
sortBy?: ("name" | "value")
|
|
8629
8695
|
}[]
|
|
8630
8696
|
} | {
|
|
8631
8697
|
|
|
8632
|
-
|
|
8698
|
+
newlinesInside?: ("always" | "never")
|
|
8633
8699
|
|
|
8634
|
-
|
|
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
|
+
}
|
|
8635
8708
|
|
|
8636
|
-
|
|
8709
|
+
groupName?: string
|
|
8637
8710
|
|
|
8638
|
-
|
|
8711
|
+
order?: ("asc" | "desc")
|
|
8712
|
+
|
|
8713
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8639
8714
|
|
|
8640
8715
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
8641
8716
|
|
|
8642
8717
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
8643
8718
|
|
|
8719
|
+
elementValuePattern?: (({
|
|
8720
|
+
pattern?: string
|
|
8721
|
+
flags?: string
|
|
8722
|
+
} | string)[] | ({
|
|
8723
|
+
pattern?: string
|
|
8724
|
+
flags?: string
|
|
8725
|
+
} | string))
|
|
8726
|
+
|
|
8644
8727
|
elementNamePattern?: (({
|
|
8645
8728
|
pattern?: string
|
|
8646
8729
|
flags?: string
|
|
@@ -8648,6 +8731,7 @@ type PerfectionistSortInterfaces = {
|
|
|
8648
8731
|
pattern?: string
|
|
8649
8732
|
flags?: string
|
|
8650
8733
|
} | string))
|
|
8734
|
+
sortBy?: ("name" | "value")
|
|
8651
8735
|
})[])
|
|
8652
8736
|
useConfigurationIf?: {
|
|
8653
8737
|
|
|
@@ -8704,6 +8788,7 @@ type PerfectionistSortInterfaces = {
|
|
|
8704
8788
|
pattern?: string
|
|
8705
8789
|
flags?: string
|
|
8706
8790
|
} | string))
|
|
8791
|
+
sortBy?: ("name" | "value")
|
|
8707
8792
|
|
|
8708
8793
|
groups?: (string | string[] | {
|
|
8709
8794
|
|
|
@@ -8713,8 +8798,6 @@ type PerfectionistSortInterfaces = {
|
|
|
8713
8798
|
// ----- perfectionist/sort-intersection-types -----
|
|
8714
8799
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
8715
8800
|
|
|
8716
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8717
|
-
|
|
8718
8801
|
fallbackSort?: {
|
|
8719
8802
|
|
|
8720
8803
|
order?: ("asc" | "desc")
|
|
@@ -8723,6 +8806,8 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
8723
8806
|
[k: string]: unknown | undefined
|
|
8724
8807
|
}
|
|
8725
8808
|
|
|
8809
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8810
|
+
|
|
8726
8811
|
ignoreCase?: boolean
|
|
8727
8812
|
|
|
8728
8813
|
alphabet?: string
|
|
@@ -8768,8 +8853,6 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
8768
8853
|
// ----- perfectionist/sort-jsx-props -----
|
|
8769
8854
|
type PerfectionistSortJsxProps = {
|
|
8770
8855
|
|
|
8771
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8772
|
-
|
|
8773
8856
|
fallbackSort?: {
|
|
8774
8857
|
|
|
8775
8858
|
order?: ("asc" | "desc")
|
|
@@ -8778,6 +8861,8 @@ type PerfectionistSortJsxProps = {
|
|
|
8778
8861
|
[k: string]: unknown | undefined
|
|
8779
8862
|
}
|
|
8780
8863
|
|
|
8864
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8865
|
+
|
|
8781
8866
|
ignoreCase?: boolean
|
|
8782
8867
|
|
|
8783
8868
|
alphabet?: string
|
|
@@ -8830,8 +8915,6 @@ type PerfectionistSortJsxProps = {
|
|
|
8830
8915
|
// ----- perfectionist/sort-maps -----
|
|
8831
8916
|
type PerfectionistSortMaps = {
|
|
8832
8917
|
|
|
8833
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8834
|
-
|
|
8835
8918
|
fallbackSort?: {
|
|
8836
8919
|
|
|
8837
8920
|
order?: ("asc" | "desc")
|
|
@@ -8840,6 +8923,8 @@ type PerfectionistSortMaps = {
|
|
|
8840
8923
|
[k: string]: unknown | undefined
|
|
8841
8924
|
}
|
|
8842
8925
|
|
|
8926
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8927
|
+
|
|
8843
8928
|
ignoreCase?: boolean
|
|
8844
8929
|
|
|
8845
8930
|
alphabet?: string
|
|
@@ -8852,13 +8937,21 @@ type PerfectionistSortMaps = {
|
|
|
8852
8937
|
|
|
8853
8938
|
customGroups?: ({
|
|
8854
8939
|
|
|
8855
|
-
|
|
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
|
+
}
|
|
8856
8949
|
|
|
8857
|
-
|
|
8950
|
+
groupName?: string
|
|
8858
8951
|
|
|
8859
|
-
order?: ("
|
|
8952
|
+
order?: ("asc" | "desc")
|
|
8860
8953
|
|
|
8861
|
-
|
|
8954
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8862
8955
|
anyOf?: {
|
|
8863
8956
|
|
|
8864
8957
|
elementNamePattern?: (({
|
|
@@ -8871,13 +8964,21 @@ type PerfectionistSortMaps = {
|
|
|
8871
8964
|
}[]
|
|
8872
8965
|
} | {
|
|
8873
8966
|
|
|
8874
|
-
|
|
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
|
+
}
|
|
8875
8976
|
|
|
8876
|
-
|
|
8977
|
+
groupName?: string
|
|
8877
8978
|
|
|
8878
|
-
order?: ("
|
|
8979
|
+
order?: ("asc" | "desc")
|
|
8879
8980
|
|
|
8880
|
-
|
|
8981
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8881
8982
|
|
|
8882
8983
|
elementNamePattern?: (({
|
|
8883
8984
|
pattern?: string
|
|
@@ -8933,8 +9034,6 @@ type PerfectionistSortMaps = {
|
|
|
8933
9034
|
// ----- perfectionist/sort-modules -----
|
|
8934
9035
|
type PerfectionistSortModules = []|[{
|
|
8935
9036
|
|
|
8936
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8937
|
-
|
|
8938
9037
|
fallbackSort?: {
|
|
8939
9038
|
|
|
8940
9039
|
order?: ("asc" | "desc")
|
|
@@ -8943,6 +9042,8 @@ type PerfectionistSortModules = []|[{
|
|
|
8943
9042
|
[k: string]: unknown | undefined
|
|
8944
9043
|
}
|
|
8945
9044
|
|
|
9045
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9046
|
+
|
|
8946
9047
|
ignoreCase?: boolean
|
|
8947
9048
|
|
|
8948
9049
|
alphabet?: string
|
|
@@ -8955,13 +9056,21 @@ type PerfectionistSortModules = []|[{
|
|
|
8955
9056
|
|
|
8956
9057
|
customGroups?: ({
|
|
8957
9058
|
|
|
8958
|
-
|
|
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
|
+
}
|
|
8959
9068
|
|
|
8960
|
-
|
|
9069
|
+
groupName?: string
|
|
8961
9070
|
|
|
8962
|
-
order?: ("
|
|
9071
|
+
order?: ("asc" | "desc")
|
|
8963
9072
|
|
|
8964
|
-
|
|
9073
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8965
9074
|
anyOf?: {
|
|
8966
9075
|
|
|
8967
9076
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
@@ -8986,13 +9095,21 @@ type PerfectionistSortModules = []|[{
|
|
|
8986
9095
|
}[]
|
|
8987
9096
|
} | {
|
|
8988
9097
|
|
|
8989
|
-
|
|
9098
|
+
newlinesInside?: ("always" | "never")
|
|
8990
9099
|
|
|
8991
|
-
|
|
9100
|
+
fallbackSort?: {
|
|
9101
|
+
|
|
9102
|
+
order?: ("asc" | "desc")
|
|
9103
|
+
|
|
9104
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9105
|
+
[k: string]: unknown | undefined
|
|
9106
|
+
}
|
|
8992
9107
|
|
|
8993
|
-
|
|
9108
|
+
groupName?: string
|
|
8994
9109
|
|
|
8995
|
-
|
|
9110
|
+
order?: ("asc" | "desc")
|
|
9111
|
+
|
|
9112
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8996
9113
|
|
|
8997
9114
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
8998
9115
|
|
|
@@ -9050,8 +9167,6 @@ type PerfectionistSortModules = []|[{
|
|
|
9050
9167
|
// ----- perfectionist/sort-named-exports -----
|
|
9051
9168
|
type PerfectionistSortNamedExports = []|[{
|
|
9052
9169
|
|
|
9053
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9054
|
-
|
|
9055
9170
|
fallbackSort?: {
|
|
9056
9171
|
|
|
9057
9172
|
order?: ("asc" | "desc")
|
|
@@ -9060,6 +9175,8 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
9060
9175
|
[k: string]: unknown | undefined
|
|
9061
9176
|
}
|
|
9062
9177
|
|
|
9178
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9179
|
+
|
|
9063
9180
|
ignoreCase?: boolean
|
|
9064
9181
|
|
|
9065
9182
|
alphabet?: string
|
|
@@ -9102,8 +9219,6 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
9102
9219
|
// ----- perfectionist/sort-named-imports -----
|
|
9103
9220
|
type PerfectionistSortNamedImports = []|[{
|
|
9104
9221
|
|
|
9105
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9106
|
-
|
|
9107
9222
|
fallbackSort?: {
|
|
9108
9223
|
|
|
9109
9224
|
order?: ("asc" | "desc")
|
|
@@ -9112,6 +9227,8 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
9112
9227
|
[k: string]: unknown | undefined
|
|
9113
9228
|
}
|
|
9114
9229
|
|
|
9230
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9231
|
+
|
|
9115
9232
|
ignoreCase?: boolean
|
|
9116
9233
|
|
|
9117
9234
|
alphabet?: string
|
|
@@ -9154,8 +9271,6 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
9154
9271
|
// ----- perfectionist/sort-object-types -----
|
|
9155
9272
|
type PerfectionistSortObjectTypes = {
|
|
9156
9273
|
|
|
9157
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9158
|
-
|
|
9159
9274
|
fallbackSort?: {
|
|
9160
9275
|
|
|
9161
9276
|
order?: ("asc" | "desc")
|
|
@@ -9164,6 +9279,8 @@ type PerfectionistSortObjectTypes = {
|
|
|
9164
9279
|
[k: string]: unknown | undefined
|
|
9165
9280
|
}
|
|
9166
9281
|
|
|
9282
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9283
|
+
|
|
9167
9284
|
ignoreCase?: boolean
|
|
9168
9285
|
|
|
9169
9286
|
alphabet?: string
|
|
@@ -9177,19 +9294,36 @@ type PerfectionistSortObjectTypes = {
|
|
|
9177
9294
|
[k: string]: (string | string[]) | undefined
|
|
9178
9295
|
} | ({
|
|
9179
9296
|
|
|
9180
|
-
|
|
9297
|
+
newlinesInside?: ("always" | "never")
|
|
9181
9298
|
|
|
9182
|
-
|
|
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
|
+
}
|
|
9183
9307
|
|
|
9184
|
-
|
|
9308
|
+
groupName?: string
|
|
9185
9309
|
|
|
9186
|
-
|
|
9310
|
+
order?: ("asc" | "desc")
|
|
9311
|
+
|
|
9312
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9187
9313
|
anyOf?: {
|
|
9188
9314
|
|
|
9189
9315
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9190
9316
|
|
|
9191
9317
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9192
9318
|
|
|
9319
|
+
elementValuePattern?: (({
|
|
9320
|
+
pattern?: string
|
|
9321
|
+
flags?: string
|
|
9322
|
+
} | string)[] | ({
|
|
9323
|
+
pattern?: string
|
|
9324
|
+
flags?: string
|
|
9325
|
+
} | string))
|
|
9326
|
+
|
|
9193
9327
|
elementNamePattern?: (({
|
|
9194
9328
|
pattern?: string
|
|
9195
9329
|
flags?: string
|
|
@@ -9197,21 +9331,39 @@ type PerfectionistSortObjectTypes = {
|
|
|
9197
9331
|
pattern?: string
|
|
9198
9332
|
flags?: string
|
|
9199
9333
|
} | string))
|
|
9334
|
+
sortBy?: ("name" | "value")
|
|
9200
9335
|
}[]
|
|
9201
9336
|
} | {
|
|
9202
9337
|
|
|
9203
|
-
|
|
9338
|
+
newlinesInside?: ("always" | "never")
|
|
9204
9339
|
|
|
9205
|
-
|
|
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
|
+
}
|
|
9206
9348
|
|
|
9207
|
-
|
|
9349
|
+
groupName?: string
|
|
9208
9350
|
|
|
9209
|
-
|
|
9351
|
+
order?: ("asc" | "desc")
|
|
9352
|
+
|
|
9353
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9210
9354
|
|
|
9211
9355
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9212
9356
|
|
|
9213
9357
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9214
9358
|
|
|
9359
|
+
elementValuePattern?: (({
|
|
9360
|
+
pattern?: string
|
|
9361
|
+
flags?: string
|
|
9362
|
+
} | string)[] | ({
|
|
9363
|
+
pattern?: string
|
|
9364
|
+
flags?: string
|
|
9365
|
+
} | string))
|
|
9366
|
+
|
|
9215
9367
|
elementNamePattern?: (({
|
|
9216
9368
|
pattern?: string
|
|
9217
9369
|
flags?: string
|
|
@@ -9219,6 +9371,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
9219
9371
|
pattern?: string
|
|
9220
9372
|
flags?: string
|
|
9221
9373
|
} | string))
|
|
9374
|
+
sortBy?: ("name" | "value")
|
|
9222
9375
|
})[])
|
|
9223
9376
|
useConfigurationIf?: {
|
|
9224
9377
|
|
|
@@ -9275,6 +9428,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
9275
9428
|
pattern?: string
|
|
9276
9429
|
flags?: string
|
|
9277
9430
|
} | string))
|
|
9431
|
+
sortBy?: ("name" | "value")
|
|
9278
9432
|
|
|
9279
9433
|
groups?: (string | string[] | {
|
|
9280
9434
|
|
|
@@ -9284,8 +9438,6 @@ type PerfectionistSortObjectTypes = {
|
|
|
9284
9438
|
// ----- perfectionist/sort-objects -----
|
|
9285
9439
|
type PerfectionistSortObjects = {
|
|
9286
9440
|
|
|
9287
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9288
|
-
|
|
9289
9441
|
fallbackSort?: {
|
|
9290
9442
|
|
|
9291
9443
|
order?: ("asc" | "desc")
|
|
@@ -9294,6 +9446,8 @@ type PerfectionistSortObjects = {
|
|
|
9294
9446
|
[k: string]: unknown | undefined
|
|
9295
9447
|
}
|
|
9296
9448
|
|
|
9449
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9450
|
+
|
|
9297
9451
|
ignoreCase?: boolean
|
|
9298
9452
|
|
|
9299
9453
|
alphabet?: string
|
|
@@ -9312,13 +9466,21 @@ type PerfectionistSortObjects = {
|
|
|
9312
9466
|
[k: string]: (string | string[]) | undefined
|
|
9313
9467
|
} | ({
|
|
9314
9468
|
|
|
9315
|
-
|
|
9469
|
+
newlinesInside?: ("always" | "never")
|
|
9316
9470
|
|
|
9317
|
-
|
|
9471
|
+
fallbackSort?: {
|
|
9472
|
+
|
|
9473
|
+
order?: ("asc" | "desc")
|
|
9474
|
+
|
|
9475
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9476
|
+
[k: string]: unknown | undefined
|
|
9477
|
+
}
|
|
9318
9478
|
|
|
9319
|
-
|
|
9479
|
+
groupName?: string
|
|
9320
9480
|
|
|
9321
|
-
|
|
9481
|
+
order?: ("asc" | "desc")
|
|
9482
|
+
|
|
9483
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9322
9484
|
anyOf?: {
|
|
9323
9485
|
|
|
9324
9486
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -9343,13 +9505,21 @@ type PerfectionistSortObjects = {
|
|
|
9343
9505
|
}[]
|
|
9344
9506
|
} | {
|
|
9345
9507
|
|
|
9346
|
-
|
|
9508
|
+
newlinesInside?: ("always" | "never")
|
|
9347
9509
|
|
|
9348
|
-
|
|
9510
|
+
fallbackSort?: {
|
|
9511
|
+
|
|
9512
|
+
order?: ("asc" | "desc")
|
|
9513
|
+
|
|
9514
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9515
|
+
[k: string]: unknown | undefined
|
|
9516
|
+
}
|
|
9349
9517
|
|
|
9350
|
-
|
|
9518
|
+
groupName?: string
|
|
9351
9519
|
|
|
9352
|
-
|
|
9520
|
+
order?: ("asc" | "desc")
|
|
9521
|
+
|
|
9522
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9353
9523
|
|
|
9354
9524
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9355
9525
|
|
|
@@ -9439,8 +9609,6 @@ type PerfectionistSortObjects = {
|
|
|
9439
9609
|
// ----- perfectionist/sort-sets -----
|
|
9440
9610
|
type PerfectionistSortSets = {
|
|
9441
9611
|
|
|
9442
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9443
|
-
|
|
9444
9612
|
fallbackSort?: {
|
|
9445
9613
|
|
|
9446
9614
|
order?: ("asc" | "desc")
|
|
@@ -9449,6 +9617,8 @@ type PerfectionistSortSets = {
|
|
|
9449
9617
|
[k: string]: unknown | undefined
|
|
9450
9618
|
}
|
|
9451
9619
|
|
|
9620
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9621
|
+
|
|
9452
9622
|
ignoreCase?: boolean
|
|
9453
9623
|
|
|
9454
9624
|
alphabet?: string
|
|
@@ -9463,13 +9633,21 @@ type PerfectionistSortSets = {
|
|
|
9463
9633
|
|
|
9464
9634
|
customGroups?: ({
|
|
9465
9635
|
|
|
9466
|
-
|
|
9636
|
+
newlinesInside?: ("always" | "never")
|
|
9467
9637
|
|
|
9468
|
-
|
|
9638
|
+
fallbackSort?: {
|
|
9639
|
+
|
|
9640
|
+
order?: ("asc" | "desc")
|
|
9641
|
+
|
|
9642
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9643
|
+
[k: string]: unknown | undefined
|
|
9644
|
+
}
|
|
9469
9645
|
|
|
9470
|
-
|
|
9646
|
+
groupName?: string
|
|
9471
9647
|
|
|
9472
|
-
|
|
9648
|
+
order?: ("asc" | "desc")
|
|
9649
|
+
|
|
9650
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9473
9651
|
anyOf?: {
|
|
9474
9652
|
|
|
9475
9653
|
selector?: ("literal" | "spread")
|
|
@@ -9484,13 +9662,21 @@ type PerfectionistSortSets = {
|
|
|
9484
9662
|
}[]
|
|
9485
9663
|
} | {
|
|
9486
9664
|
|
|
9487
|
-
|
|
9665
|
+
newlinesInside?: ("always" | "never")
|
|
9666
|
+
|
|
9667
|
+
fallbackSort?: {
|
|
9668
|
+
|
|
9669
|
+
order?: ("asc" | "desc")
|
|
9670
|
+
|
|
9671
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9672
|
+
[k: string]: unknown | undefined
|
|
9673
|
+
}
|
|
9488
9674
|
|
|
9489
|
-
|
|
9675
|
+
groupName?: string
|
|
9490
9676
|
|
|
9491
|
-
order?: ("
|
|
9677
|
+
order?: ("asc" | "desc")
|
|
9492
9678
|
|
|
9493
|
-
|
|
9679
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9494
9680
|
|
|
9495
9681
|
selector?: ("literal" | "spread")
|
|
9496
9682
|
|
|
@@ -9548,8 +9734,6 @@ type PerfectionistSortSets = {
|
|
|
9548
9734
|
// ----- perfectionist/sort-switch-case -----
|
|
9549
9735
|
type PerfectionistSortSwitchCase = []|[{
|
|
9550
9736
|
|
|
9551
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9552
|
-
|
|
9553
9737
|
fallbackSort?: {
|
|
9554
9738
|
|
|
9555
9739
|
order?: ("asc" | "desc")
|
|
@@ -9558,6 +9742,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
9558
9742
|
[k: string]: unknown | undefined
|
|
9559
9743
|
}
|
|
9560
9744
|
|
|
9745
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9746
|
+
|
|
9561
9747
|
ignoreCase?: boolean
|
|
9562
9748
|
|
|
9563
9749
|
alphabet?: string
|
|
@@ -9571,8 +9757,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
9571
9757
|
// ----- perfectionist/sort-union-types -----
|
|
9572
9758
|
type PerfectionistSortUnionTypes = []|[{
|
|
9573
9759
|
|
|
9574
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9575
|
-
|
|
9576
9760
|
fallbackSort?: {
|
|
9577
9761
|
|
|
9578
9762
|
order?: ("asc" | "desc")
|
|
@@ -9581,6 +9765,8 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
9581
9765
|
[k: string]: unknown | undefined
|
|
9582
9766
|
}
|
|
9583
9767
|
|
|
9768
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9769
|
+
|
|
9584
9770
|
ignoreCase?: boolean
|
|
9585
9771
|
|
|
9586
9772
|
alphabet?: string
|
|
@@ -9626,8 +9812,6 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
9626
9812
|
// ----- perfectionist/sort-variable-declarations -----
|
|
9627
9813
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
9628
9814
|
|
|
9629
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9630
|
-
|
|
9631
9815
|
fallbackSort?: {
|
|
9632
9816
|
|
|
9633
9817
|
order?: ("asc" | "desc")
|
|
@@ -9636,6 +9820,8 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
9636
9820
|
[k: string]: unknown | undefined
|
|
9637
9821
|
}
|
|
9638
9822
|
|
|
9823
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9824
|
+
|
|
9639
9825
|
ignoreCase?: boolean
|
|
9640
9826
|
|
|
9641
9827
|
alphabet?: string
|