@storm-software/eslint 0.155.7 → 0.155.8
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/types.d.ts +1172 -365
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -11108,7 +11108,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11108
11108
|
order?: ("asc" | "desc")
|
|
11109
11109
|
|
|
11110
11110
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11111
|
-
[k: string]: unknown | undefined
|
|
11112
11111
|
}
|
|
11113
11112
|
|
|
11114
11113
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11134,10 +11133,9 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11134
11133
|
order?: ("asc" | "desc")
|
|
11135
11134
|
|
|
11136
11135
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11137
|
-
[k: string]: unknown | undefined
|
|
11138
11136
|
}
|
|
11139
11137
|
|
|
11140
|
-
groupName
|
|
11138
|
+
groupName: string
|
|
11141
11139
|
|
|
11142
11140
|
order?: ("asc" | "desc")
|
|
11143
11141
|
|
|
@@ -11147,10 +11145,14 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11147
11145
|
selector?: ("literal" | "spread")
|
|
11148
11146
|
|
|
11149
11147
|
elementNamePattern?: (({
|
|
11150
|
-
|
|
11148
|
+
|
|
11149
|
+
pattern: string
|
|
11150
|
+
|
|
11151
11151
|
flags?: string
|
|
11152
11152
|
} | string)[] | ({
|
|
11153
|
-
|
|
11153
|
+
|
|
11154
|
+
pattern: string
|
|
11155
|
+
|
|
11154
11156
|
flags?: string
|
|
11155
11157
|
} | string))
|
|
11156
11158
|
}[]
|
|
@@ -11163,10 +11165,9 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11163
11165
|
order?: ("asc" | "desc")
|
|
11164
11166
|
|
|
11165
11167
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11166
|
-
[k: string]: unknown | undefined
|
|
11167
11168
|
}
|
|
11168
11169
|
|
|
11169
|
-
groupName
|
|
11170
|
+
groupName: string
|
|
11170
11171
|
|
|
11171
11172
|
order?: ("asc" | "desc")
|
|
11172
11173
|
|
|
@@ -11175,43 +11176,66 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11175
11176
|
selector?: ("literal" | "spread")
|
|
11176
11177
|
|
|
11177
11178
|
elementNamePattern?: (({
|
|
11178
|
-
|
|
11179
|
+
|
|
11180
|
+
pattern: string
|
|
11181
|
+
|
|
11179
11182
|
flags?: string
|
|
11180
11183
|
} | string)[] | ({
|
|
11181
|
-
|
|
11184
|
+
|
|
11185
|
+
pattern: string
|
|
11186
|
+
|
|
11182
11187
|
flags?: string
|
|
11183
11188
|
} | string))
|
|
11184
11189
|
})[]
|
|
11190
|
+
|
|
11185
11191
|
useConfigurationIf?: {
|
|
11186
11192
|
|
|
11187
11193
|
allNamesMatchPattern?: (({
|
|
11188
|
-
|
|
11194
|
+
|
|
11195
|
+
pattern: string
|
|
11196
|
+
|
|
11189
11197
|
flags?: string
|
|
11190
11198
|
} | string)[] | ({
|
|
11191
|
-
|
|
11199
|
+
|
|
11200
|
+
pattern: string
|
|
11201
|
+
|
|
11192
11202
|
flags?: string
|
|
11193
11203
|
} | string))
|
|
11194
11204
|
}
|
|
11195
11205
|
|
|
11196
11206
|
partitionByComment?: (boolean | (({
|
|
11197
|
-
|
|
11207
|
+
|
|
11208
|
+
pattern: string
|
|
11209
|
+
|
|
11198
11210
|
flags?: string
|
|
11199
11211
|
} | string)[] | ({
|
|
11200
|
-
|
|
11212
|
+
|
|
11213
|
+
pattern: string
|
|
11214
|
+
|
|
11201
11215
|
flags?: string
|
|
11202
11216
|
} | string)) | {
|
|
11217
|
+
|
|
11203
11218
|
block?: (boolean | (({
|
|
11204
|
-
|
|
11219
|
+
|
|
11220
|
+
pattern: string
|
|
11221
|
+
|
|
11205
11222
|
flags?: string
|
|
11206
11223
|
} | string)[] | ({
|
|
11207
|
-
|
|
11224
|
+
|
|
11225
|
+
pattern: string
|
|
11226
|
+
|
|
11208
11227
|
flags?: string
|
|
11209
11228
|
} | string)))
|
|
11229
|
+
|
|
11210
11230
|
line?: (boolean | (({
|
|
11211
|
-
|
|
11231
|
+
|
|
11232
|
+
pattern: string
|
|
11233
|
+
|
|
11212
11234
|
flags?: string
|
|
11213
11235
|
} | string)[] | ({
|
|
11214
|
-
|
|
11236
|
+
|
|
11237
|
+
pattern: string
|
|
11238
|
+
|
|
11215
11239
|
flags?: string
|
|
11216
11240
|
} | string)))
|
|
11217
11241
|
})
|
|
@@ -11222,7 +11246,7 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11222
11246
|
|
|
11223
11247
|
groups?: (string | string[] | {
|
|
11224
11248
|
|
|
11225
|
-
newlinesBetween
|
|
11249
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
11226
11250
|
})[]
|
|
11227
11251
|
}[]
|
|
11228
11252
|
// ----- perfectionist/sort-classes -----
|
|
@@ -11233,7 +11257,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
11233
11257
|
order?: ("asc" | "desc")
|
|
11234
11258
|
|
|
11235
11259
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11236
|
-
[k: string]: unknown | undefined
|
|
11237
11260
|
}
|
|
11238
11261
|
|
|
11239
11262
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11257,10 +11280,9 @@ type PerfectionistSortClasses = []|[{
|
|
|
11257
11280
|
order?: ("asc" | "desc")
|
|
11258
11281
|
|
|
11259
11282
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11260
|
-
[k: string]: unknown | undefined
|
|
11261
11283
|
}
|
|
11262
11284
|
|
|
11263
|
-
groupName
|
|
11285
|
+
groupName: string
|
|
11264
11286
|
|
|
11265
11287
|
order?: ("asc" | "desc")
|
|
11266
11288
|
|
|
@@ -11272,26 +11294,38 @@ type PerfectionistSortClasses = []|[{
|
|
|
11272
11294
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
11273
11295
|
|
|
11274
11296
|
decoratorNamePattern?: (({
|
|
11275
|
-
|
|
11297
|
+
|
|
11298
|
+
pattern: string
|
|
11299
|
+
|
|
11276
11300
|
flags?: string
|
|
11277
11301
|
} | string)[] | ({
|
|
11278
|
-
|
|
11302
|
+
|
|
11303
|
+
pattern: string
|
|
11304
|
+
|
|
11279
11305
|
flags?: string
|
|
11280
11306
|
} | string))
|
|
11281
11307
|
|
|
11282
11308
|
elementValuePattern?: (({
|
|
11283
|
-
|
|
11309
|
+
|
|
11310
|
+
pattern: string
|
|
11311
|
+
|
|
11284
11312
|
flags?: string
|
|
11285
11313
|
} | string)[] | ({
|
|
11286
|
-
|
|
11314
|
+
|
|
11315
|
+
pattern: string
|
|
11316
|
+
|
|
11287
11317
|
flags?: string
|
|
11288
11318
|
} | string))
|
|
11289
11319
|
|
|
11290
11320
|
elementNamePattern?: (({
|
|
11291
|
-
|
|
11321
|
+
|
|
11322
|
+
pattern: string
|
|
11323
|
+
|
|
11292
11324
|
flags?: string
|
|
11293
11325
|
} | string)[] | ({
|
|
11294
|
-
|
|
11326
|
+
|
|
11327
|
+
pattern: string
|
|
11328
|
+
|
|
11295
11329
|
flags?: string
|
|
11296
11330
|
} | string))
|
|
11297
11331
|
}[]
|
|
@@ -11304,10 +11338,9 @@ type PerfectionistSortClasses = []|[{
|
|
|
11304
11338
|
order?: ("asc" | "desc")
|
|
11305
11339
|
|
|
11306
11340
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11307
|
-
[k: string]: unknown | undefined
|
|
11308
11341
|
}
|
|
11309
11342
|
|
|
11310
|
-
groupName
|
|
11343
|
+
groupName: string
|
|
11311
11344
|
|
|
11312
11345
|
order?: ("asc" | "desc")
|
|
11313
11346
|
|
|
@@ -11318,57 +11351,87 @@ type PerfectionistSortClasses = []|[{
|
|
|
11318
11351
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
11319
11352
|
|
|
11320
11353
|
decoratorNamePattern?: (({
|
|
11321
|
-
|
|
11354
|
+
|
|
11355
|
+
pattern: string
|
|
11356
|
+
|
|
11322
11357
|
flags?: string
|
|
11323
11358
|
} | string)[] | ({
|
|
11324
|
-
|
|
11359
|
+
|
|
11360
|
+
pattern: string
|
|
11361
|
+
|
|
11325
11362
|
flags?: string
|
|
11326
11363
|
} | string))
|
|
11327
11364
|
|
|
11328
11365
|
elementValuePattern?: (({
|
|
11329
|
-
|
|
11366
|
+
|
|
11367
|
+
pattern: string
|
|
11368
|
+
|
|
11330
11369
|
flags?: string
|
|
11331
11370
|
} | string)[] | ({
|
|
11332
|
-
|
|
11371
|
+
|
|
11372
|
+
pattern: string
|
|
11373
|
+
|
|
11333
11374
|
flags?: string
|
|
11334
11375
|
} | string))
|
|
11335
11376
|
|
|
11336
11377
|
elementNamePattern?: (({
|
|
11337
|
-
|
|
11378
|
+
|
|
11379
|
+
pattern: string
|
|
11380
|
+
|
|
11338
11381
|
flags?: string
|
|
11339
11382
|
} | string)[] | ({
|
|
11340
|
-
|
|
11383
|
+
|
|
11384
|
+
pattern: string
|
|
11385
|
+
|
|
11341
11386
|
flags?: string
|
|
11342
11387
|
} | string))
|
|
11343
11388
|
})[]
|
|
11344
11389
|
|
|
11345
11390
|
ignoreCallbackDependenciesPatterns?: (({
|
|
11346
|
-
|
|
11391
|
+
|
|
11392
|
+
pattern: string
|
|
11393
|
+
|
|
11347
11394
|
flags?: string
|
|
11348
11395
|
} | string)[] | ({
|
|
11349
|
-
|
|
11396
|
+
|
|
11397
|
+
pattern: string
|
|
11398
|
+
|
|
11350
11399
|
flags?: string
|
|
11351
11400
|
} | string))
|
|
11352
11401
|
|
|
11353
11402
|
partitionByComment?: (boolean | (({
|
|
11354
|
-
|
|
11403
|
+
|
|
11404
|
+
pattern: string
|
|
11405
|
+
|
|
11355
11406
|
flags?: string
|
|
11356
11407
|
} | string)[] | ({
|
|
11357
|
-
|
|
11408
|
+
|
|
11409
|
+
pattern: string
|
|
11410
|
+
|
|
11358
11411
|
flags?: string
|
|
11359
11412
|
} | string)) | {
|
|
11413
|
+
|
|
11360
11414
|
block?: (boolean | (({
|
|
11361
|
-
|
|
11415
|
+
|
|
11416
|
+
pattern: string
|
|
11417
|
+
|
|
11362
11418
|
flags?: string
|
|
11363
11419
|
} | string)[] | ({
|
|
11364
|
-
|
|
11420
|
+
|
|
11421
|
+
pattern: string
|
|
11422
|
+
|
|
11365
11423
|
flags?: string
|
|
11366
11424
|
} | string)))
|
|
11425
|
+
|
|
11367
11426
|
line?: (boolean | (({
|
|
11368
|
-
|
|
11427
|
+
|
|
11428
|
+
pattern: string
|
|
11429
|
+
|
|
11369
11430
|
flags?: string
|
|
11370
11431
|
} | string)[] | ({
|
|
11371
|
-
|
|
11432
|
+
|
|
11433
|
+
pattern: string
|
|
11434
|
+
|
|
11372
11435
|
flags?: string
|
|
11373
11436
|
} | string)))
|
|
11374
11437
|
})
|
|
@@ -11379,7 +11442,7 @@ type PerfectionistSortClasses = []|[{
|
|
|
11379
11442
|
|
|
11380
11443
|
groups?: (string | string[] | {
|
|
11381
11444
|
|
|
11382
|
-
newlinesBetween
|
|
11445
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
11383
11446
|
})[]
|
|
11384
11447
|
}]
|
|
11385
11448
|
// ----- perfectionist/sort-decorators -----
|
|
@@ -11390,7 +11453,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
11390
11453
|
order?: ("asc" | "desc")
|
|
11391
11454
|
|
|
11392
11455
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11393
|
-
[k: string]: unknown | undefined
|
|
11394
11456
|
}
|
|
11395
11457
|
|
|
11396
11458
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11416,24 +11478,38 @@ type PerfectionistSortDecorators = []|[{
|
|
|
11416
11478
|
sortOnClasses?: boolean
|
|
11417
11479
|
|
|
11418
11480
|
partitionByComment?: (boolean | (({
|
|
11419
|
-
|
|
11481
|
+
|
|
11482
|
+
pattern: string
|
|
11483
|
+
|
|
11420
11484
|
flags?: string
|
|
11421
11485
|
} | string)[] | ({
|
|
11422
|
-
|
|
11486
|
+
|
|
11487
|
+
pattern: string
|
|
11488
|
+
|
|
11423
11489
|
flags?: string
|
|
11424
11490
|
} | string)) | {
|
|
11491
|
+
|
|
11425
11492
|
block?: (boolean | (({
|
|
11426
|
-
|
|
11493
|
+
|
|
11494
|
+
pattern: string
|
|
11495
|
+
|
|
11427
11496
|
flags?: string
|
|
11428
11497
|
} | string)[] | ({
|
|
11429
|
-
|
|
11498
|
+
|
|
11499
|
+
pattern: string
|
|
11500
|
+
|
|
11430
11501
|
flags?: string
|
|
11431
11502
|
} | string)))
|
|
11503
|
+
|
|
11432
11504
|
line?: (boolean | (({
|
|
11433
|
-
|
|
11505
|
+
|
|
11506
|
+
pattern: string
|
|
11507
|
+
|
|
11434
11508
|
flags?: string
|
|
11435
11509
|
} | string)[] | ({
|
|
11436
|
-
|
|
11510
|
+
|
|
11511
|
+
pattern: string
|
|
11512
|
+
|
|
11437
11513
|
flags?: string
|
|
11438
11514
|
} | string)))
|
|
11439
11515
|
})
|
|
@@ -11444,7 +11520,7 @@ type PerfectionistSortDecorators = []|[{
|
|
|
11444
11520
|
|
|
11445
11521
|
groups?: (string | string[] | {
|
|
11446
11522
|
|
|
11447
|
-
newlinesBetween
|
|
11523
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
11448
11524
|
})[]
|
|
11449
11525
|
}]
|
|
11450
11526
|
// ----- perfectionist/sort-enums -----
|
|
@@ -11455,7 +11531,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
11455
11531
|
order?: ("asc" | "desc")
|
|
11456
11532
|
|
|
11457
11533
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11458
|
-
[k: string]: unknown | undefined
|
|
11459
11534
|
}
|
|
11460
11535
|
|
|
11461
11536
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11469,8 +11544,6 @@ type PerfectionistSortEnums = []|[{
|
|
|
11469
11544
|
order?: ("asc" | "desc")
|
|
11470
11545
|
|
|
11471
11546
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11472
|
-
|
|
11473
|
-
forceNumericSort?: boolean
|
|
11474
11547
|
customGroups?: ({
|
|
11475
11548
|
[k: string]: (string | string[]) | undefined
|
|
11476
11549
|
} | ({
|
|
@@ -11482,10 +11555,9 @@ type PerfectionistSortEnums = []|[{
|
|
|
11482
11555
|
order?: ("asc" | "desc")
|
|
11483
11556
|
|
|
11484
11557
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11485
|
-
[k: string]: unknown | undefined
|
|
11486
11558
|
}
|
|
11487
11559
|
|
|
11488
|
-
groupName
|
|
11560
|
+
groupName: string
|
|
11489
11561
|
|
|
11490
11562
|
order?: ("asc" | "desc")
|
|
11491
11563
|
|
|
@@ -11493,18 +11565,26 @@ type PerfectionistSortEnums = []|[{
|
|
|
11493
11565
|
anyOf?: {
|
|
11494
11566
|
|
|
11495
11567
|
elementValuePattern?: (({
|
|
11496
|
-
|
|
11568
|
+
|
|
11569
|
+
pattern: string
|
|
11570
|
+
|
|
11497
11571
|
flags?: string
|
|
11498
11572
|
} | string)[] | ({
|
|
11499
|
-
|
|
11573
|
+
|
|
11574
|
+
pattern: string
|
|
11575
|
+
|
|
11500
11576
|
flags?: string
|
|
11501
11577
|
} | string))
|
|
11502
11578
|
|
|
11503
11579
|
elementNamePattern?: (({
|
|
11504
|
-
|
|
11580
|
+
|
|
11581
|
+
pattern: string
|
|
11582
|
+
|
|
11505
11583
|
flags?: string
|
|
11506
11584
|
} | string)[] | ({
|
|
11507
|
-
|
|
11585
|
+
|
|
11586
|
+
pattern: string
|
|
11587
|
+
|
|
11508
11588
|
flags?: string
|
|
11509
11589
|
} | string))
|
|
11510
11590
|
}[]
|
|
@@ -11517,53 +11597,76 @@ type PerfectionistSortEnums = []|[{
|
|
|
11517
11597
|
order?: ("asc" | "desc")
|
|
11518
11598
|
|
|
11519
11599
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11520
|
-
[k: string]: unknown | undefined
|
|
11521
11600
|
}
|
|
11522
11601
|
|
|
11523
|
-
groupName
|
|
11602
|
+
groupName: string
|
|
11524
11603
|
|
|
11525
11604
|
order?: ("asc" | "desc")
|
|
11526
11605
|
|
|
11527
11606
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11528
11607
|
|
|
11529
11608
|
elementValuePattern?: (({
|
|
11530
|
-
|
|
11609
|
+
|
|
11610
|
+
pattern: string
|
|
11611
|
+
|
|
11531
11612
|
flags?: string
|
|
11532
11613
|
} | string)[] | ({
|
|
11533
|
-
|
|
11614
|
+
|
|
11615
|
+
pattern: string
|
|
11616
|
+
|
|
11534
11617
|
flags?: string
|
|
11535
11618
|
} | string))
|
|
11536
11619
|
|
|
11537
11620
|
elementNamePattern?: (({
|
|
11538
|
-
|
|
11621
|
+
|
|
11622
|
+
pattern: string
|
|
11623
|
+
|
|
11539
11624
|
flags?: string
|
|
11540
11625
|
} | string)[] | ({
|
|
11541
|
-
|
|
11626
|
+
|
|
11627
|
+
pattern: string
|
|
11628
|
+
|
|
11542
11629
|
flags?: string
|
|
11543
11630
|
} | string))
|
|
11544
11631
|
})[])
|
|
11545
11632
|
|
|
11633
|
+
forceNumericSort?: boolean
|
|
11634
|
+
|
|
11546
11635
|
sortByValue?: boolean
|
|
11547
11636
|
|
|
11548
11637
|
partitionByComment?: (boolean | (({
|
|
11549
|
-
|
|
11638
|
+
|
|
11639
|
+
pattern: string
|
|
11640
|
+
|
|
11550
11641
|
flags?: string
|
|
11551
11642
|
} | string)[] | ({
|
|
11552
|
-
|
|
11643
|
+
|
|
11644
|
+
pattern: string
|
|
11645
|
+
|
|
11553
11646
|
flags?: string
|
|
11554
11647
|
} | string)) | {
|
|
11648
|
+
|
|
11555
11649
|
block?: (boolean | (({
|
|
11556
|
-
|
|
11650
|
+
|
|
11651
|
+
pattern: string
|
|
11652
|
+
|
|
11557
11653
|
flags?: string
|
|
11558
11654
|
} | string)[] | ({
|
|
11559
|
-
|
|
11655
|
+
|
|
11656
|
+
pattern: string
|
|
11657
|
+
|
|
11560
11658
|
flags?: string
|
|
11561
11659
|
} | string)))
|
|
11660
|
+
|
|
11562
11661
|
line?: (boolean | (({
|
|
11563
|
-
|
|
11662
|
+
|
|
11663
|
+
pattern: string
|
|
11664
|
+
|
|
11564
11665
|
flags?: string
|
|
11565
11666
|
} | string)[] | ({
|
|
11566
|
-
|
|
11667
|
+
|
|
11668
|
+
pattern: string
|
|
11669
|
+
|
|
11567
11670
|
flags?: string
|
|
11568
11671
|
} | string)))
|
|
11569
11672
|
})
|
|
@@ -11574,7 +11677,7 @@ type PerfectionistSortEnums = []|[{
|
|
|
11574
11677
|
|
|
11575
11678
|
groups?: (string | string[] | {
|
|
11576
11679
|
|
|
11577
|
-
newlinesBetween
|
|
11680
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
11578
11681
|
})[]
|
|
11579
11682
|
}]
|
|
11580
11683
|
// ----- perfectionist/sort-exports -----
|
|
@@ -11585,7 +11688,6 @@ type PerfectionistSortExports = {
|
|
|
11585
11688
|
order?: ("asc" | "desc")
|
|
11586
11689
|
|
|
11587
11690
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11588
|
-
[k: string]: unknown | undefined
|
|
11589
11691
|
}
|
|
11590
11692
|
|
|
11591
11693
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11611,10 +11713,9 @@ type PerfectionistSortExports = {
|
|
|
11611
11713
|
order?: ("asc" | "desc")
|
|
11612
11714
|
|
|
11613
11715
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11614
|
-
[k: string]: unknown | undefined
|
|
11615
11716
|
}
|
|
11616
11717
|
|
|
11617
|
-
groupName
|
|
11718
|
+
groupName: string
|
|
11618
11719
|
|
|
11619
11720
|
order?: ("asc" | "desc")
|
|
11620
11721
|
|
|
@@ -11626,10 +11727,14 @@ type PerfectionistSortExports = {
|
|
|
11626
11727
|
selector?: "export"
|
|
11627
11728
|
|
|
11628
11729
|
elementNamePattern?: (({
|
|
11629
|
-
|
|
11730
|
+
|
|
11731
|
+
pattern: string
|
|
11732
|
+
|
|
11630
11733
|
flags?: string
|
|
11631
11734
|
} | string)[] | ({
|
|
11632
|
-
|
|
11735
|
+
|
|
11736
|
+
pattern: string
|
|
11737
|
+
|
|
11633
11738
|
flags?: string
|
|
11634
11739
|
} | string))
|
|
11635
11740
|
}[]
|
|
@@ -11642,10 +11747,9 @@ type PerfectionistSortExports = {
|
|
|
11642
11747
|
order?: ("asc" | "desc")
|
|
11643
11748
|
|
|
11644
11749
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11645
|
-
[k: string]: unknown | undefined
|
|
11646
11750
|
}
|
|
11647
11751
|
|
|
11648
|
-
groupName
|
|
11752
|
+
groupName: string
|
|
11649
11753
|
|
|
11650
11754
|
order?: ("asc" | "desc")
|
|
11651
11755
|
|
|
@@ -11656,33 +11760,51 @@ type PerfectionistSortExports = {
|
|
|
11656
11760
|
selector?: "export"
|
|
11657
11761
|
|
|
11658
11762
|
elementNamePattern?: (({
|
|
11659
|
-
|
|
11763
|
+
|
|
11764
|
+
pattern: string
|
|
11765
|
+
|
|
11660
11766
|
flags?: string
|
|
11661
11767
|
} | string)[] | ({
|
|
11662
|
-
|
|
11768
|
+
|
|
11769
|
+
pattern: string
|
|
11770
|
+
|
|
11663
11771
|
flags?: string
|
|
11664
11772
|
} | string))
|
|
11665
11773
|
})[]
|
|
11666
11774
|
|
|
11667
11775
|
partitionByComment?: (boolean | (({
|
|
11668
|
-
|
|
11776
|
+
|
|
11777
|
+
pattern: string
|
|
11778
|
+
|
|
11669
11779
|
flags?: string
|
|
11670
11780
|
} | string)[] | ({
|
|
11671
|
-
|
|
11781
|
+
|
|
11782
|
+
pattern: string
|
|
11783
|
+
|
|
11672
11784
|
flags?: string
|
|
11673
11785
|
} | string)) | {
|
|
11786
|
+
|
|
11674
11787
|
block?: (boolean | (({
|
|
11675
|
-
|
|
11788
|
+
|
|
11789
|
+
pattern: string
|
|
11790
|
+
|
|
11676
11791
|
flags?: string
|
|
11677
11792
|
} | string)[] | ({
|
|
11678
|
-
|
|
11793
|
+
|
|
11794
|
+
pattern: string
|
|
11795
|
+
|
|
11679
11796
|
flags?: string
|
|
11680
11797
|
} | string)))
|
|
11798
|
+
|
|
11681
11799
|
line?: (boolean | (({
|
|
11682
|
-
|
|
11800
|
+
|
|
11801
|
+
pattern: string
|
|
11802
|
+
|
|
11683
11803
|
flags?: string
|
|
11684
11804
|
} | string)[] | ({
|
|
11685
|
-
|
|
11805
|
+
|
|
11806
|
+
pattern: string
|
|
11807
|
+
|
|
11686
11808
|
flags?: string
|
|
11687
11809
|
} | string)))
|
|
11688
11810
|
})
|
|
@@ -11693,7 +11815,7 @@ type PerfectionistSortExports = {
|
|
|
11693
11815
|
|
|
11694
11816
|
groups?: (string | string[] | {
|
|
11695
11817
|
|
|
11696
|
-
newlinesBetween
|
|
11818
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
11697
11819
|
})[]
|
|
11698
11820
|
}[]
|
|
11699
11821
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
@@ -11704,7 +11826,6 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
11704
11826
|
order?: ("asc" | "desc")
|
|
11705
11827
|
|
|
11706
11828
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11707
|
-
[k: string]: unknown | undefined
|
|
11708
11829
|
}
|
|
11709
11830
|
|
|
11710
11831
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11725,18 +11846,17 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
11725
11846
|
|
|
11726
11847
|
groups?: (string | string[] | {
|
|
11727
11848
|
|
|
11728
|
-
newlinesBetween
|
|
11849
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
11729
11850
|
})[]
|
|
11730
11851
|
}]
|
|
11731
|
-
// ----- perfectionist/sort-
|
|
11732
|
-
type
|
|
11852
|
+
// ----- perfectionist/sort-imports -----
|
|
11853
|
+
type PerfectionistSortImports = {
|
|
11733
11854
|
|
|
11734
11855
|
fallbackSort?: {
|
|
11735
11856
|
|
|
11736
11857
|
order?: ("asc" | "desc")
|
|
11737
11858
|
|
|
11738
11859
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11739
|
-
[k: string]: unknown | undefined
|
|
11740
11860
|
}
|
|
11741
11861
|
|
|
11742
11862
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11751,7 +11871,14 @@ type PerfectionistSortInterfaces = {
|
|
|
11751
11871
|
|
|
11752
11872
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11753
11873
|
customGroups?: ({
|
|
11754
|
-
|
|
11874
|
+
|
|
11875
|
+
value?: {
|
|
11876
|
+
[k: string]: (string | string[]) | undefined
|
|
11877
|
+
}
|
|
11878
|
+
|
|
11879
|
+
type?: {
|
|
11880
|
+
[k: string]: (string | string[]) | undefined
|
|
11881
|
+
}
|
|
11755
11882
|
} | ({
|
|
11756
11883
|
|
|
11757
11884
|
newlinesInside?: ("always" | "never")
|
|
@@ -11761,37 +11888,42 @@ type PerfectionistSortInterfaces = {
|
|
|
11761
11888
|
order?: ("asc" | "desc")
|
|
11762
11889
|
|
|
11763
11890
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11764
|
-
sortBy?: ("name" | "value")
|
|
11765
|
-
[k: string]: unknown | undefined
|
|
11766
11891
|
}
|
|
11767
11892
|
|
|
11768
|
-
groupName
|
|
11893
|
+
groupName: string
|
|
11769
11894
|
|
|
11770
11895
|
order?: ("asc" | "desc")
|
|
11771
11896
|
|
|
11772
11897
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11773
11898
|
anyOf?: {
|
|
11774
11899
|
|
|
11775
|
-
modifiers?: ("
|
|
11900
|
+
modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
|
|
11776
11901
|
|
|
11777
|
-
selector?: ("
|
|
11902
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
|
|
11778
11903
|
|
|
11779
11904
|
elementValuePattern?: (({
|
|
11780
|
-
|
|
11905
|
+
|
|
11906
|
+
pattern: string
|
|
11907
|
+
|
|
11781
11908
|
flags?: string
|
|
11782
11909
|
} | string)[] | ({
|
|
11783
|
-
|
|
11910
|
+
|
|
11911
|
+
pattern: string
|
|
11912
|
+
|
|
11784
11913
|
flags?: string
|
|
11785
11914
|
} | string))
|
|
11786
11915
|
|
|
11787
11916
|
elementNamePattern?: (({
|
|
11788
|
-
|
|
11917
|
+
|
|
11918
|
+
pattern: string
|
|
11919
|
+
|
|
11789
11920
|
flags?: string
|
|
11790
11921
|
} | string)[] | ({
|
|
11791
|
-
|
|
11922
|
+
|
|
11923
|
+
pattern: string
|
|
11924
|
+
|
|
11792
11925
|
flags?: string
|
|
11793
11926
|
} | string))
|
|
11794
|
-
sortBy?: ("name" | "value")
|
|
11795
11927
|
}[]
|
|
11796
11928
|
} | {
|
|
11797
11929
|
|
|
@@ -11802,77 +11934,84 @@ type PerfectionistSortInterfaces = {
|
|
|
11802
11934
|
order?: ("asc" | "desc")
|
|
11803
11935
|
|
|
11804
11936
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11805
|
-
sortBy?: ("name" | "value")
|
|
11806
|
-
[k: string]: unknown | undefined
|
|
11807
11937
|
}
|
|
11808
11938
|
|
|
11809
|
-
groupName
|
|
11939
|
+
groupName: string
|
|
11810
11940
|
|
|
11811
11941
|
order?: ("asc" | "desc")
|
|
11812
11942
|
|
|
11813
11943
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11814
11944
|
|
|
11815
|
-
modifiers?: ("
|
|
11945
|
+
modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
|
|
11816
11946
|
|
|
11817
|
-
selector?: ("
|
|
11947
|
+
selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
|
|
11818
11948
|
|
|
11819
11949
|
elementValuePattern?: (({
|
|
11820
|
-
|
|
11950
|
+
|
|
11951
|
+
pattern: string
|
|
11952
|
+
|
|
11821
11953
|
flags?: string
|
|
11822
11954
|
} | string)[] | ({
|
|
11823
|
-
|
|
11955
|
+
|
|
11956
|
+
pattern: string
|
|
11957
|
+
|
|
11824
11958
|
flags?: string
|
|
11825
11959
|
} | string))
|
|
11826
11960
|
|
|
11827
11961
|
elementNamePattern?: (({
|
|
11828
|
-
|
|
11962
|
+
|
|
11963
|
+
pattern: string
|
|
11964
|
+
|
|
11829
11965
|
flags?: string
|
|
11830
11966
|
} | string)[] | ({
|
|
11831
|
-
|
|
11967
|
+
|
|
11968
|
+
pattern: string
|
|
11969
|
+
|
|
11832
11970
|
flags?: string
|
|
11833
11971
|
} | string))
|
|
11834
|
-
sortBy?: ("name" | "value")
|
|
11835
11972
|
})[])
|
|
11836
11973
|
|
|
11837
|
-
|
|
11838
|
-
|
|
11839
|
-
|
|
11840
|
-
|
|
11841
|
-
|
|
11842
|
-
|
|
11843
|
-
|
|
11844
|
-
pattern?: string
|
|
11845
|
-
flags?: string
|
|
11846
|
-
} | string))
|
|
11847
|
-
|
|
11848
|
-
declarationMatchesPattern?: (({
|
|
11849
|
-
pattern?: string
|
|
11850
|
-
flags?: string
|
|
11851
|
-
} | string)[] | ({
|
|
11852
|
-
pattern?: string
|
|
11853
|
-
flags?: string
|
|
11854
|
-
} | string))
|
|
11855
|
-
}
|
|
11974
|
+
maxLineLength?: number
|
|
11975
|
+
|
|
11976
|
+
sortSideEffects?: boolean
|
|
11977
|
+
|
|
11978
|
+
environment?: ("node" | "bun")
|
|
11979
|
+
|
|
11980
|
+
tsconfigRootDir?: string
|
|
11856
11981
|
|
|
11857
11982
|
partitionByComment?: (boolean | (({
|
|
11858
|
-
|
|
11983
|
+
|
|
11984
|
+
pattern: string
|
|
11985
|
+
|
|
11859
11986
|
flags?: string
|
|
11860
11987
|
} | string)[] | ({
|
|
11861
|
-
|
|
11988
|
+
|
|
11989
|
+
pattern: string
|
|
11990
|
+
|
|
11862
11991
|
flags?: string
|
|
11863
11992
|
} | string)) | {
|
|
11993
|
+
|
|
11864
11994
|
block?: (boolean | (({
|
|
11865
|
-
|
|
11995
|
+
|
|
11996
|
+
pattern: string
|
|
11997
|
+
|
|
11866
11998
|
flags?: string
|
|
11867
11999
|
} | string)[] | ({
|
|
11868
|
-
|
|
12000
|
+
|
|
12001
|
+
pattern: string
|
|
12002
|
+
|
|
11869
12003
|
flags?: string
|
|
11870
12004
|
} | string)))
|
|
12005
|
+
|
|
11871
12006
|
line?: (boolean | (({
|
|
11872
|
-
|
|
12007
|
+
|
|
12008
|
+
pattern: string
|
|
12009
|
+
|
|
11873
12010
|
flags?: string
|
|
11874
12011
|
} | string)[] | ({
|
|
11875
|
-
|
|
12012
|
+
|
|
12013
|
+
pattern: string
|
|
12014
|
+
|
|
11876
12015
|
flags?: string
|
|
11877
12016
|
} | string)))
|
|
11878
12017
|
})
|
|
@@ -11881,29 +12020,32 @@ type PerfectionistSortInterfaces = {
|
|
|
11881
12020
|
|
|
11882
12021
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11883
12022
|
|
|
11884
|
-
|
|
11885
|
-
|
|
12023
|
+
internalPattern?: (({
|
|
12024
|
+
|
|
12025
|
+
pattern: string
|
|
12026
|
+
|
|
11886
12027
|
flags?: string
|
|
11887
12028
|
} | string)[] | ({
|
|
11888
|
-
|
|
12029
|
+
|
|
12030
|
+
pattern: string
|
|
12031
|
+
|
|
11889
12032
|
flags?: string
|
|
11890
12033
|
} | string))
|
|
11891
|
-
sortBy?: ("name" | "value")
|
|
11892
12034
|
|
|
11893
12035
|
groups?: (string | string[] | {
|
|
11894
12036
|
|
|
11895
|
-
newlinesBetween
|
|
12037
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
11896
12038
|
})[]
|
|
11897
12039
|
}[]
|
|
11898
|
-
// ----- perfectionist/sort-
|
|
11899
|
-
type
|
|
12040
|
+
// ----- perfectionist/sort-interfaces -----
|
|
12041
|
+
type PerfectionistSortInterfaces = {
|
|
11900
12042
|
|
|
11901
12043
|
fallbackSort?: {
|
|
11902
12044
|
|
|
11903
12045
|
order?: ("asc" | "desc")
|
|
11904
12046
|
|
|
11905
12047
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11906
|
-
|
|
12048
|
+
sortBy?: ("name" | "value")
|
|
11907
12049
|
}
|
|
11908
12050
|
|
|
11909
12051
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -11917,50 +12059,334 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
11917
12059
|
order?: ("asc" | "desc")
|
|
11918
12060
|
|
|
11919
12061
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11920
|
-
|
|
11921
|
-
|
|
11922
|
-
|
|
11923
|
-
flags?: string
|
|
11924
|
-
} | string)[] | ({
|
|
11925
|
-
pattern?: string
|
|
11926
|
-
flags?: string
|
|
11927
|
-
} | string)) | {
|
|
11928
|
-
block?: (boolean | (({
|
|
11929
|
-
pattern?: string
|
|
11930
|
-
flags?: string
|
|
11931
|
-
} | string)[] | ({
|
|
11932
|
-
pattern?: string
|
|
11933
|
-
flags?: string
|
|
11934
|
-
} | string)))
|
|
11935
|
-
line?: (boolean | (({
|
|
11936
|
-
pattern?: string
|
|
11937
|
-
flags?: string
|
|
11938
|
-
} | string)[] | ({
|
|
11939
|
-
pattern?: string
|
|
11940
|
-
flags?: string
|
|
11941
|
-
} | string)))
|
|
11942
|
-
})
|
|
11943
|
-
|
|
11944
|
-
partitionByNewLine?: boolean
|
|
11945
|
-
|
|
11946
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11947
|
-
|
|
11948
|
-
groups?: (string | string[] | {
|
|
12062
|
+
customGroups?: ({
|
|
12063
|
+
[k: string]: (string | string[]) | undefined
|
|
12064
|
+
} | ({
|
|
11949
12065
|
|
|
11950
|
-
|
|
11951
|
-
|
|
11952
|
-
|
|
11953
|
-
|
|
11954
|
-
|
|
11955
|
-
|
|
11956
|
-
|
|
12066
|
+
newlinesInside?: ("always" | "never")
|
|
12067
|
+
|
|
12068
|
+
fallbackSort?: {
|
|
12069
|
+
|
|
12070
|
+
order?: ("asc" | "desc")
|
|
12071
|
+
|
|
12072
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12073
|
+
sortBy?: ("name" | "value")
|
|
12074
|
+
}
|
|
12075
|
+
|
|
12076
|
+
groupName: string
|
|
11957
12077
|
|
|
11958
12078
|
order?: ("asc" | "desc")
|
|
11959
12079
|
|
|
11960
12080
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11961
|
-
|
|
11962
|
-
|
|
11963
|
-
|
|
12081
|
+
anyOf?: {
|
|
12082
|
+
|
|
12083
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12084
|
+
|
|
12085
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12086
|
+
|
|
12087
|
+
elementValuePattern?: (({
|
|
12088
|
+
|
|
12089
|
+
pattern: string
|
|
12090
|
+
|
|
12091
|
+
flags?: string
|
|
12092
|
+
} | string)[] | ({
|
|
12093
|
+
|
|
12094
|
+
pattern: string
|
|
12095
|
+
|
|
12096
|
+
flags?: string
|
|
12097
|
+
} | string))
|
|
12098
|
+
|
|
12099
|
+
elementNamePattern?: (({
|
|
12100
|
+
|
|
12101
|
+
pattern: string
|
|
12102
|
+
|
|
12103
|
+
flags?: string
|
|
12104
|
+
} | string)[] | ({
|
|
12105
|
+
|
|
12106
|
+
pattern: string
|
|
12107
|
+
|
|
12108
|
+
flags?: string
|
|
12109
|
+
} | string))
|
|
12110
|
+
sortBy?: ("name" | "value")
|
|
12111
|
+
}[]
|
|
12112
|
+
} | {
|
|
12113
|
+
|
|
12114
|
+
newlinesInside?: ("always" | "never")
|
|
12115
|
+
|
|
12116
|
+
fallbackSort?: {
|
|
12117
|
+
|
|
12118
|
+
order?: ("asc" | "desc")
|
|
12119
|
+
|
|
12120
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12121
|
+
sortBy?: ("name" | "value")
|
|
12122
|
+
}
|
|
12123
|
+
|
|
12124
|
+
groupName: string
|
|
12125
|
+
|
|
12126
|
+
order?: ("asc" | "desc")
|
|
12127
|
+
|
|
12128
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12129
|
+
|
|
12130
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12131
|
+
|
|
12132
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12133
|
+
|
|
12134
|
+
elementValuePattern?: (({
|
|
12135
|
+
|
|
12136
|
+
pattern: string
|
|
12137
|
+
|
|
12138
|
+
flags?: string
|
|
12139
|
+
} | string)[] | ({
|
|
12140
|
+
|
|
12141
|
+
pattern: string
|
|
12142
|
+
|
|
12143
|
+
flags?: string
|
|
12144
|
+
} | string))
|
|
12145
|
+
|
|
12146
|
+
elementNamePattern?: (({
|
|
12147
|
+
|
|
12148
|
+
pattern: string
|
|
12149
|
+
|
|
12150
|
+
flags?: string
|
|
12151
|
+
} | string)[] | ({
|
|
12152
|
+
|
|
12153
|
+
pattern: string
|
|
12154
|
+
|
|
12155
|
+
flags?: string
|
|
12156
|
+
} | string))
|
|
12157
|
+
sortBy?: ("name" | "value")
|
|
12158
|
+
})[])
|
|
12159
|
+
|
|
12160
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
12161
|
+
|
|
12162
|
+
useConfigurationIf?: {
|
|
12163
|
+
|
|
12164
|
+
allNamesMatchPattern?: (({
|
|
12165
|
+
|
|
12166
|
+
pattern: string
|
|
12167
|
+
|
|
12168
|
+
flags?: string
|
|
12169
|
+
} | string)[] | ({
|
|
12170
|
+
|
|
12171
|
+
pattern: string
|
|
12172
|
+
|
|
12173
|
+
flags?: string
|
|
12174
|
+
} | string))
|
|
12175
|
+
|
|
12176
|
+
declarationMatchesPattern?: (({
|
|
12177
|
+
|
|
12178
|
+
pattern: string
|
|
12179
|
+
|
|
12180
|
+
flags?: string
|
|
12181
|
+
} | string)[] | ({
|
|
12182
|
+
|
|
12183
|
+
pattern: string
|
|
12184
|
+
|
|
12185
|
+
flags?: string
|
|
12186
|
+
} | string))
|
|
12187
|
+
}
|
|
12188
|
+
|
|
12189
|
+
partitionByComment?: (boolean | (({
|
|
12190
|
+
|
|
12191
|
+
pattern: string
|
|
12192
|
+
|
|
12193
|
+
flags?: string
|
|
12194
|
+
} | string)[] | ({
|
|
12195
|
+
|
|
12196
|
+
pattern: string
|
|
12197
|
+
|
|
12198
|
+
flags?: string
|
|
12199
|
+
} | string)) | {
|
|
12200
|
+
|
|
12201
|
+
block?: (boolean | (({
|
|
12202
|
+
|
|
12203
|
+
pattern: string
|
|
12204
|
+
|
|
12205
|
+
flags?: string
|
|
12206
|
+
} | string)[] | ({
|
|
12207
|
+
|
|
12208
|
+
pattern: string
|
|
12209
|
+
|
|
12210
|
+
flags?: string
|
|
12211
|
+
} | string)))
|
|
12212
|
+
|
|
12213
|
+
line?: (boolean | (({
|
|
12214
|
+
|
|
12215
|
+
pattern: string
|
|
12216
|
+
|
|
12217
|
+
flags?: string
|
|
12218
|
+
} | string)[] | ({
|
|
12219
|
+
|
|
12220
|
+
pattern: string
|
|
12221
|
+
|
|
12222
|
+
flags?: string
|
|
12223
|
+
} | string)))
|
|
12224
|
+
})
|
|
12225
|
+
|
|
12226
|
+
partitionByNewLine?: boolean
|
|
12227
|
+
|
|
12228
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12229
|
+
|
|
12230
|
+
ignorePattern?: (({
|
|
12231
|
+
|
|
12232
|
+
pattern: string
|
|
12233
|
+
|
|
12234
|
+
flags?: string
|
|
12235
|
+
} | string)[] | ({
|
|
12236
|
+
|
|
12237
|
+
pattern: string
|
|
12238
|
+
|
|
12239
|
+
flags?: string
|
|
12240
|
+
} | string))
|
|
12241
|
+
sortBy?: ("name" | "value")
|
|
12242
|
+
|
|
12243
|
+
groups?: (string | string[] | {
|
|
12244
|
+
|
|
12245
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12246
|
+
})[]
|
|
12247
|
+
}[]
|
|
12248
|
+
// ----- perfectionist/sort-intersection-types -----
|
|
12249
|
+
type PerfectionistSortIntersectionTypes = {
|
|
12250
|
+
|
|
12251
|
+
fallbackSort?: {
|
|
12252
|
+
|
|
12253
|
+
order?: ("asc" | "desc")
|
|
12254
|
+
|
|
12255
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12256
|
+
}
|
|
12257
|
+
|
|
12258
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12259
|
+
|
|
12260
|
+
ignoreCase?: boolean
|
|
12261
|
+
|
|
12262
|
+
alphabet?: string
|
|
12263
|
+
|
|
12264
|
+
locales?: (string | string[])
|
|
12265
|
+
|
|
12266
|
+
order?: ("asc" | "desc")
|
|
12267
|
+
|
|
12268
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12269
|
+
|
|
12270
|
+
customGroups?: ({
|
|
12271
|
+
|
|
12272
|
+
newlinesInside?: ("always" | "never")
|
|
12273
|
+
|
|
12274
|
+
fallbackSort?: {
|
|
12275
|
+
|
|
12276
|
+
order?: ("asc" | "desc")
|
|
12277
|
+
|
|
12278
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12279
|
+
}
|
|
12280
|
+
|
|
12281
|
+
groupName: string
|
|
12282
|
+
|
|
12283
|
+
order?: ("asc" | "desc")
|
|
12284
|
+
|
|
12285
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12286
|
+
anyOf?: {
|
|
12287
|
+
|
|
12288
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
12289
|
+
|
|
12290
|
+
elementNamePattern?: (({
|
|
12291
|
+
|
|
12292
|
+
pattern: string
|
|
12293
|
+
|
|
12294
|
+
flags?: string
|
|
12295
|
+
} | string)[] | ({
|
|
12296
|
+
|
|
12297
|
+
pattern: string
|
|
12298
|
+
|
|
12299
|
+
flags?: string
|
|
12300
|
+
} | string))
|
|
12301
|
+
}[]
|
|
12302
|
+
} | {
|
|
12303
|
+
|
|
12304
|
+
newlinesInside?: ("always" | "never")
|
|
12305
|
+
|
|
12306
|
+
fallbackSort?: {
|
|
12307
|
+
|
|
12308
|
+
order?: ("asc" | "desc")
|
|
12309
|
+
|
|
12310
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12311
|
+
}
|
|
12312
|
+
|
|
12313
|
+
groupName: string
|
|
12314
|
+
|
|
12315
|
+
order?: ("asc" | "desc")
|
|
12316
|
+
|
|
12317
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12318
|
+
|
|
12319
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
12320
|
+
|
|
12321
|
+
elementNamePattern?: (({
|
|
12322
|
+
|
|
12323
|
+
pattern: string
|
|
12324
|
+
|
|
12325
|
+
flags?: string
|
|
12326
|
+
} | string)[] | ({
|
|
12327
|
+
|
|
12328
|
+
pattern: string
|
|
12329
|
+
|
|
12330
|
+
flags?: string
|
|
12331
|
+
} | string))
|
|
12332
|
+
})[]
|
|
12333
|
+
|
|
12334
|
+
partitionByComment?: (boolean | (({
|
|
12335
|
+
|
|
12336
|
+
pattern: string
|
|
12337
|
+
|
|
12338
|
+
flags?: string
|
|
12339
|
+
} | string)[] | ({
|
|
12340
|
+
|
|
12341
|
+
pattern: string
|
|
12342
|
+
|
|
12343
|
+
flags?: string
|
|
12344
|
+
} | string)) | {
|
|
12345
|
+
|
|
12346
|
+
block?: (boolean | (({
|
|
12347
|
+
|
|
12348
|
+
pattern: string
|
|
12349
|
+
|
|
12350
|
+
flags?: string
|
|
12351
|
+
} | string)[] | ({
|
|
12352
|
+
|
|
12353
|
+
pattern: string
|
|
12354
|
+
|
|
12355
|
+
flags?: string
|
|
12356
|
+
} | string)))
|
|
12357
|
+
|
|
12358
|
+
line?: (boolean | (({
|
|
12359
|
+
|
|
12360
|
+
pattern: string
|
|
12361
|
+
|
|
12362
|
+
flags?: string
|
|
12363
|
+
} | string)[] | ({
|
|
12364
|
+
|
|
12365
|
+
pattern: string
|
|
12366
|
+
|
|
12367
|
+
flags?: string
|
|
12368
|
+
} | string)))
|
|
12369
|
+
})
|
|
12370
|
+
|
|
12371
|
+
partitionByNewLine?: boolean
|
|
12372
|
+
|
|
12373
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12374
|
+
|
|
12375
|
+
groups?: (string | string[] | {
|
|
12376
|
+
|
|
12377
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12378
|
+
})[]
|
|
12379
|
+
}[]
|
|
12380
|
+
// ----- perfectionist/sort-jsx-props -----
|
|
12381
|
+
type PerfectionistSortJsxProps = {
|
|
12382
|
+
|
|
12383
|
+
fallbackSort?: {
|
|
12384
|
+
|
|
12385
|
+
order?: ("asc" | "desc")
|
|
12386
|
+
|
|
12387
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12388
|
+
}
|
|
12389
|
+
|
|
11964
12390
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11965
12391
|
|
|
11966
12392
|
ignoreCase?: boolean
|
|
@@ -11983,10 +12409,9 @@ type PerfectionistSortJsxProps = {
|
|
|
11983
12409
|
order?: ("asc" | "desc")
|
|
11984
12410
|
|
|
11985
12411
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11986
|
-
[k: string]: unknown | undefined
|
|
11987
12412
|
}
|
|
11988
12413
|
|
|
11989
|
-
groupName
|
|
12414
|
+
groupName: string
|
|
11990
12415
|
|
|
11991
12416
|
order?: ("asc" | "desc")
|
|
11992
12417
|
|
|
@@ -11998,18 +12423,26 @@ type PerfectionistSortJsxProps = {
|
|
|
11998
12423
|
selector?: ("multiline" | "prop" | "shorthand")
|
|
11999
12424
|
|
|
12000
12425
|
elementValuePattern?: (({
|
|
12001
|
-
|
|
12426
|
+
|
|
12427
|
+
pattern: string
|
|
12428
|
+
|
|
12002
12429
|
flags?: string
|
|
12003
12430
|
} | string)[] | ({
|
|
12004
|
-
|
|
12431
|
+
|
|
12432
|
+
pattern: string
|
|
12433
|
+
|
|
12005
12434
|
flags?: string
|
|
12006
12435
|
} | string))
|
|
12007
12436
|
|
|
12008
12437
|
elementNamePattern?: (({
|
|
12009
|
-
|
|
12438
|
+
|
|
12439
|
+
pattern: string
|
|
12440
|
+
|
|
12010
12441
|
flags?: string
|
|
12011
12442
|
} | string)[] | ({
|
|
12012
|
-
|
|
12443
|
+
|
|
12444
|
+
pattern: string
|
|
12445
|
+
|
|
12013
12446
|
flags?: string
|
|
12014
12447
|
} | string))
|
|
12015
12448
|
}[]
|
|
@@ -12022,10 +12455,9 @@ type PerfectionistSortJsxProps = {
|
|
|
12022
12455
|
order?: ("asc" | "desc")
|
|
12023
12456
|
|
|
12024
12457
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12025
|
-
[k: string]: unknown | undefined
|
|
12026
12458
|
}
|
|
12027
12459
|
|
|
12028
|
-
groupName
|
|
12460
|
+
groupName: string
|
|
12029
12461
|
|
|
12030
12462
|
order?: ("asc" | "desc")
|
|
12031
12463
|
|
|
@@ -12036,36 +12468,53 @@ type PerfectionistSortJsxProps = {
|
|
|
12036
12468
|
selector?: ("multiline" | "prop" | "shorthand")
|
|
12037
12469
|
|
|
12038
12470
|
elementValuePattern?: (({
|
|
12039
|
-
|
|
12471
|
+
|
|
12472
|
+
pattern: string
|
|
12473
|
+
|
|
12040
12474
|
flags?: string
|
|
12041
12475
|
} | string)[] | ({
|
|
12042
|
-
|
|
12476
|
+
|
|
12477
|
+
pattern: string
|
|
12478
|
+
|
|
12043
12479
|
flags?: string
|
|
12044
12480
|
} | string))
|
|
12045
12481
|
|
|
12046
12482
|
elementNamePattern?: (({
|
|
12047
|
-
|
|
12483
|
+
|
|
12484
|
+
pattern: string
|
|
12485
|
+
|
|
12048
12486
|
flags?: string
|
|
12049
12487
|
} | string)[] | ({
|
|
12050
|
-
|
|
12488
|
+
|
|
12489
|
+
pattern: string
|
|
12490
|
+
|
|
12051
12491
|
flags?: string
|
|
12052
12492
|
} | string))
|
|
12053
12493
|
})[])
|
|
12494
|
+
|
|
12054
12495
|
useConfigurationIf?: {
|
|
12055
12496
|
|
|
12056
12497
|
allNamesMatchPattern?: (({
|
|
12057
|
-
|
|
12498
|
+
|
|
12499
|
+
pattern: string
|
|
12500
|
+
|
|
12058
12501
|
flags?: string
|
|
12059
12502
|
} | string)[] | ({
|
|
12060
|
-
|
|
12503
|
+
|
|
12504
|
+
pattern: string
|
|
12505
|
+
|
|
12061
12506
|
flags?: string
|
|
12062
12507
|
} | string))
|
|
12063
12508
|
|
|
12064
12509
|
tagMatchesPattern?: (({
|
|
12065
|
-
|
|
12510
|
+
|
|
12511
|
+
pattern: string
|
|
12512
|
+
|
|
12066
12513
|
flags?: string
|
|
12067
12514
|
} | string)[] | ({
|
|
12068
|
-
|
|
12515
|
+
|
|
12516
|
+
pattern: string
|
|
12517
|
+
|
|
12069
12518
|
flags?: string
|
|
12070
12519
|
} | string))
|
|
12071
12520
|
}
|
|
@@ -12075,16 +12524,20 @@ type PerfectionistSortJsxProps = {
|
|
|
12075
12524
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12076
12525
|
|
|
12077
12526
|
ignorePattern?: (({
|
|
12078
|
-
|
|
12527
|
+
|
|
12528
|
+
pattern: string
|
|
12529
|
+
|
|
12079
12530
|
flags?: string
|
|
12080
12531
|
} | string)[] | ({
|
|
12081
|
-
|
|
12532
|
+
|
|
12533
|
+
pattern: string
|
|
12534
|
+
|
|
12082
12535
|
flags?: string
|
|
12083
12536
|
} | string))
|
|
12084
12537
|
|
|
12085
12538
|
groups?: (string | string[] | {
|
|
12086
12539
|
|
|
12087
|
-
newlinesBetween
|
|
12540
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12088
12541
|
})[]
|
|
12089
12542
|
}[]
|
|
12090
12543
|
// ----- perfectionist/sort-maps -----
|
|
@@ -12095,7 +12548,6 @@ type PerfectionistSortMaps = {
|
|
|
12095
12548
|
order?: ("asc" | "desc")
|
|
12096
12549
|
|
|
12097
12550
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12098
|
-
[k: string]: unknown | undefined
|
|
12099
12551
|
}
|
|
12100
12552
|
|
|
12101
12553
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12119,10 +12571,9 @@ type PerfectionistSortMaps = {
|
|
|
12119
12571
|
order?: ("asc" | "desc")
|
|
12120
12572
|
|
|
12121
12573
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12122
|
-
[k: string]: unknown | undefined
|
|
12123
12574
|
}
|
|
12124
12575
|
|
|
12125
|
-
groupName
|
|
12576
|
+
groupName: string
|
|
12126
12577
|
|
|
12127
12578
|
order?: ("asc" | "desc")
|
|
12128
12579
|
|
|
@@ -12130,10 +12581,14 @@ type PerfectionistSortMaps = {
|
|
|
12130
12581
|
anyOf?: {
|
|
12131
12582
|
|
|
12132
12583
|
elementNamePattern?: (({
|
|
12133
|
-
|
|
12584
|
+
|
|
12585
|
+
pattern: string
|
|
12586
|
+
|
|
12134
12587
|
flags?: string
|
|
12135
12588
|
} | string)[] | ({
|
|
12136
|
-
|
|
12589
|
+
|
|
12590
|
+
pattern: string
|
|
12591
|
+
|
|
12137
12592
|
flags?: string
|
|
12138
12593
|
} | string))
|
|
12139
12594
|
}[]
|
|
@@ -12146,53 +12601,75 @@ type PerfectionistSortMaps = {
|
|
|
12146
12601
|
order?: ("asc" | "desc")
|
|
12147
12602
|
|
|
12148
12603
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12149
|
-
[k: string]: unknown | undefined
|
|
12150
12604
|
}
|
|
12151
12605
|
|
|
12152
|
-
groupName
|
|
12606
|
+
groupName: string
|
|
12153
12607
|
|
|
12154
12608
|
order?: ("asc" | "desc")
|
|
12155
12609
|
|
|
12156
12610
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12157
12611
|
|
|
12158
12612
|
elementNamePattern?: (({
|
|
12159
|
-
|
|
12613
|
+
|
|
12614
|
+
pattern: string
|
|
12615
|
+
|
|
12160
12616
|
flags?: string
|
|
12161
12617
|
} | string)[] | ({
|
|
12162
|
-
|
|
12618
|
+
|
|
12619
|
+
pattern: string
|
|
12620
|
+
|
|
12163
12621
|
flags?: string
|
|
12164
12622
|
} | string))
|
|
12165
12623
|
})[]
|
|
12624
|
+
|
|
12166
12625
|
useConfigurationIf?: {
|
|
12167
12626
|
|
|
12168
12627
|
allNamesMatchPattern?: (({
|
|
12169
|
-
|
|
12628
|
+
|
|
12629
|
+
pattern: string
|
|
12630
|
+
|
|
12170
12631
|
flags?: string
|
|
12171
12632
|
} | string)[] | ({
|
|
12172
|
-
|
|
12633
|
+
|
|
12634
|
+
pattern: string
|
|
12635
|
+
|
|
12173
12636
|
flags?: string
|
|
12174
12637
|
} | string))
|
|
12175
12638
|
}
|
|
12176
12639
|
|
|
12177
12640
|
partitionByComment?: (boolean | (({
|
|
12178
|
-
|
|
12641
|
+
|
|
12642
|
+
pattern: string
|
|
12643
|
+
|
|
12179
12644
|
flags?: string
|
|
12180
12645
|
} | string)[] | ({
|
|
12181
|
-
|
|
12646
|
+
|
|
12647
|
+
pattern: string
|
|
12648
|
+
|
|
12182
12649
|
flags?: string
|
|
12183
12650
|
} | string)) | {
|
|
12651
|
+
|
|
12184
12652
|
block?: (boolean | (({
|
|
12185
|
-
|
|
12653
|
+
|
|
12654
|
+
pattern: string
|
|
12655
|
+
|
|
12186
12656
|
flags?: string
|
|
12187
12657
|
} | string)[] | ({
|
|
12188
|
-
|
|
12658
|
+
|
|
12659
|
+
pattern: string
|
|
12660
|
+
|
|
12189
12661
|
flags?: string
|
|
12190
12662
|
} | string)))
|
|
12663
|
+
|
|
12191
12664
|
line?: (boolean | (({
|
|
12192
|
-
|
|
12665
|
+
|
|
12666
|
+
pattern: string
|
|
12667
|
+
|
|
12193
12668
|
flags?: string
|
|
12194
12669
|
} | string)[] | ({
|
|
12195
|
-
|
|
12670
|
+
|
|
12671
|
+
pattern: string
|
|
12672
|
+
|
|
12196
12673
|
flags?: string
|
|
12197
12674
|
} | string)))
|
|
12198
12675
|
})
|
|
@@ -12203,7 +12680,7 @@ type PerfectionistSortMaps = {
|
|
|
12203
12680
|
|
|
12204
12681
|
groups?: (string | string[] | {
|
|
12205
12682
|
|
|
12206
|
-
newlinesBetween
|
|
12683
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12207
12684
|
})[]
|
|
12208
12685
|
}[]
|
|
12209
12686
|
// ----- perfectionist/sort-modules -----
|
|
@@ -12214,7 +12691,6 @@ type PerfectionistSortModules = []|[{
|
|
|
12214
12691
|
order?: ("asc" | "desc")
|
|
12215
12692
|
|
|
12216
12693
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12217
|
-
[k: string]: unknown | undefined
|
|
12218
12694
|
}
|
|
12219
12695
|
|
|
12220
12696
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12238,10 +12714,9 @@ type PerfectionistSortModules = []|[{
|
|
|
12238
12714
|
order?: ("asc" | "desc")
|
|
12239
12715
|
|
|
12240
12716
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12241
|
-
[k: string]: unknown | undefined
|
|
12242
12717
|
}
|
|
12243
12718
|
|
|
12244
|
-
groupName
|
|
12719
|
+
groupName: string
|
|
12245
12720
|
|
|
12246
12721
|
order?: ("asc" | "desc")
|
|
12247
12722
|
|
|
@@ -12253,18 +12728,26 @@ type PerfectionistSortModules = []|[{
|
|
|
12253
12728
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
12254
12729
|
|
|
12255
12730
|
decoratorNamePattern?: (({
|
|
12256
|
-
|
|
12731
|
+
|
|
12732
|
+
pattern: string
|
|
12733
|
+
|
|
12257
12734
|
flags?: string
|
|
12258
12735
|
} | string)[] | ({
|
|
12259
|
-
|
|
12736
|
+
|
|
12737
|
+
pattern: string
|
|
12738
|
+
|
|
12260
12739
|
flags?: string
|
|
12261
12740
|
} | string))
|
|
12262
12741
|
|
|
12263
12742
|
elementNamePattern?: (({
|
|
12264
|
-
|
|
12743
|
+
|
|
12744
|
+
pattern: string
|
|
12745
|
+
|
|
12265
12746
|
flags?: string
|
|
12266
12747
|
} | string)[] | ({
|
|
12267
|
-
|
|
12748
|
+
|
|
12749
|
+
pattern: string
|
|
12750
|
+
|
|
12268
12751
|
flags?: string
|
|
12269
12752
|
} | string))
|
|
12270
12753
|
}[]
|
|
@@ -12277,10 +12760,9 @@ type PerfectionistSortModules = []|[{
|
|
|
12277
12760
|
order?: ("asc" | "desc")
|
|
12278
12761
|
|
|
12279
12762
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12280
|
-
[k: string]: unknown | undefined
|
|
12281
12763
|
}
|
|
12282
12764
|
|
|
12283
|
-
groupName
|
|
12765
|
+
groupName: string
|
|
12284
12766
|
|
|
12285
12767
|
order?: ("asc" | "desc")
|
|
12286
12768
|
|
|
@@ -12291,41 +12773,63 @@ type PerfectionistSortModules = []|[{
|
|
|
12291
12773
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
12292
12774
|
|
|
12293
12775
|
decoratorNamePattern?: (({
|
|
12294
|
-
|
|
12776
|
+
|
|
12777
|
+
pattern: string
|
|
12778
|
+
|
|
12295
12779
|
flags?: string
|
|
12296
12780
|
} | string)[] | ({
|
|
12297
|
-
|
|
12781
|
+
|
|
12782
|
+
pattern: string
|
|
12783
|
+
|
|
12298
12784
|
flags?: string
|
|
12299
12785
|
} | string))
|
|
12300
12786
|
|
|
12301
12787
|
elementNamePattern?: (({
|
|
12302
|
-
|
|
12788
|
+
|
|
12789
|
+
pattern: string
|
|
12790
|
+
|
|
12303
12791
|
flags?: string
|
|
12304
12792
|
} | string)[] | ({
|
|
12305
|
-
|
|
12793
|
+
|
|
12794
|
+
pattern: string
|
|
12795
|
+
|
|
12306
12796
|
flags?: string
|
|
12307
12797
|
} | string))
|
|
12308
12798
|
})[]
|
|
12309
12799
|
|
|
12310
12800
|
partitionByComment?: (boolean | (({
|
|
12311
|
-
|
|
12801
|
+
|
|
12802
|
+
pattern: string
|
|
12803
|
+
|
|
12312
12804
|
flags?: string
|
|
12313
12805
|
} | string)[] | ({
|
|
12314
|
-
|
|
12806
|
+
|
|
12807
|
+
pattern: string
|
|
12808
|
+
|
|
12315
12809
|
flags?: string
|
|
12316
12810
|
} | string)) | {
|
|
12811
|
+
|
|
12317
12812
|
block?: (boolean | (({
|
|
12318
|
-
|
|
12813
|
+
|
|
12814
|
+
pattern: string
|
|
12815
|
+
|
|
12319
12816
|
flags?: string
|
|
12320
12817
|
} | string)[] | ({
|
|
12321
|
-
|
|
12818
|
+
|
|
12819
|
+
pattern: string
|
|
12820
|
+
|
|
12322
12821
|
flags?: string
|
|
12323
12822
|
} | string)))
|
|
12823
|
+
|
|
12324
12824
|
line?: (boolean | (({
|
|
12325
|
-
|
|
12825
|
+
|
|
12826
|
+
pattern: string
|
|
12827
|
+
|
|
12326
12828
|
flags?: string
|
|
12327
12829
|
} | string)[] | ({
|
|
12328
|
-
|
|
12830
|
+
|
|
12831
|
+
pattern: string
|
|
12832
|
+
|
|
12329
12833
|
flags?: string
|
|
12330
12834
|
} | string)))
|
|
12331
12835
|
})
|
|
@@ -12336,7 +12840,7 @@ type PerfectionistSortModules = []|[{
|
|
|
12336
12840
|
|
|
12337
12841
|
groups?: (string | string[] | {
|
|
12338
12842
|
|
|
12339
|
-
newlinesBetween
|
|
12843
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12340
12844
|
})[]
|
|
12341
12845
|
}]
|
|
12342
12846
|
// ----- perfectionist/sort-named-exports -----
|
|
@@ -12347,7 +12851,6 @@ type PerfectionistSortNamedExports = {
|
|
|
12347
12851
|
order?: ("asc" | "desc")
|
|
12348
12852
|
|
|
12349
12853
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12350
|
-
[k: string]: unknown | undefined
|
|
12351
12854
|
}
|
|
12352
12855
|
|
|
12353
12856
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12375,10 +12878,9 @@ type PerfectionistSortNamedExports = {
|
|
|
12375
12878
|
order?: ("asc" | "desc")
|
|
12376
12879
|
|
|
12377
12880
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12378
|
-
[k: string]: unknown | undefined
|
|
12379
12881
|
}
|
|
12380
12882
|
|
|
12381
|
-
groupName
|
|
12883
|
+
groupName: string
|
|
12382
12884
|
|
|
12383
12885
|
order?: ("asc" | "desc")
|
|
12384
12886
|
|
|
@@ -12390,10 +12892,14 @@ type PerfectionistSortNamedExports = {
|
|
|
12390
12892
|
selector?: "export"
|
|
12391
12893
|
|
|
12392
12894
|
elementNamePattern?: (({
|
|
12393
|
-
|
|
12895
|
+
|
|
12896
|
+
pattern: string
|
|
12897
|
+
|
|
12394
12898
|
flags?: string
|
|
12395
12899
|
} | string)[] | ({
|
|
12396
|
-
|
|
12900
|
+
|
|
12901
|
+
pattern: string
|
|
12902
|
+
|
|
12397
12903
|
flags?: string
|
|
12398
12904
|
} | string))
|
|
12399
12905
|
}[]
|
|
@@ -12406,10 +12912,9 @@ type PerfectionistSortNamedExports = {
|
|
|
12406
12912
|
order?: ("asc" | "desc")
|
|
12407
12913
|
|
|
12408
12914
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12409
|
-
[k: string]: unknown | undefined
|
|
12410
12915
|
}
|
|
12411
12916
|
|
|
12412
|
-
groupName
|
|
12917
|
+
groupName: string
|
|
12413
12918
|
|
|
12414
12919
|
order?: ("asc" | "desc")
|
|
12415
12920
|
|
|
@@ -12420,33 +12925,51 @@ type PerfectionistSortNamedExports = {
|
|
|
12420
12925
|
selector?: "export"
|
|
12421
12926
|
|
|
12422
12927
|
elementNamePattern?: (({
|
|
12423
|
-
|
|
12928
|
+
|
|
12929
|
+
pattern: string
|
|
12930
|
+
|
|
12424
12931
|
flags?: string
|
|
12425
12932
|
} | string)[] | ({
|
|
12426
|
-
|
|
12933
|
+
|
|
12934
|
+
pattern: string
|
|
12935
|
+
|
|
12427
12936
|
flags?: string
|
|
12428
12937
|
} | string))
|
|
12429
12938
|
})[]
|
|
12430
12939
|
|
|
12431
12940
|
partitionByComment?: (boolean | (({
|
|
12432
|
-
|
|
12941
|
+
|
|
12942
|
+
pattern: string
|
|
12943
|
+
|
|
12433
12944
|
flags?: string
|
|
12434
12945
|
} | string)[] | ({
|
|
12435
|
-
|
|
12946
|
+
|
|
12947
|
+
pattern: string
|
|
12948
|
+
|
|
12436
12949
|
flags?: string
|
|
12437
12950
|
} | string)) | {
|
|
12951
|
+
|
|
12438
12952
|
block?: (boolean | (({
|
|
12439
|
-
|
|
12953
|
+
|
|
12954
|
+
pattern: string
|
|
12955
|
+
|
|
12440
12956
|
flags?: string
|
|
12441
12957
|
} | string)[] | ({
|
|
12442
|
-
|
|
12958
|
+
|
|
12959
|
+
pattern: string
|
|
12960
|
+
|
|
12443
12961
|
flags?: string
|
|
12444
12962
|
} | string)))
|
|
12963
|
+
|
|
12445
12964
|
line?: (boolean | (({
|
|
12446
|
-
|
|
12965
|
+
|
|
12966
|
+
pattern: string
|
|
12967
|
+
|
|
12447
12968
|
flags?: string
|
|
12448
12969
|
} | string)[] | ({
|
|
12449
|
-
|
|
12970
|
+
|
|
12971
|
+
pattern: string
|
|
12972
|
+
|
|
12450
12973
|
flags?: string
|
|
12451
12974
|
} | string)))
|
|
12452
12975
|
})
|
|
@@ -12457,7 +12980,7 @@ type PerfectionistSortNamedExports = {
|
|
|
12457
12980
|
|
|
12458
12981
|
groups?: (string | string[] | {
|
|
12459
12982
|
|
|
12460
|
-
newlinesBetween
|
|
12983
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12461
12984
|
})[]
|
|
12462
12985
|
}[]
|
|
12463
12986
|
// ----- perfectionist/sort-named-imports -----
|
|
@@ -12468,7 +12991,6 @@ type PerfectionistSortNamedImports = {
|
|
|
12468
12991
|
order?: ("asc" | "desc")
|
|
12469
12992
|
|
|
12470
12993
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12471
|
-
[k: string]: unknown | undefined
|
|
12472
12994
|
}
|
|
12473
12995
|
|
|
12474
12996
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12496,10 +13018,9 @@ type PerfectionistSortNamedImports = {
|
|
|
12496
13018
|
order?: ("asc" | "desc")
|
|
12497
13019
|
|
|
12498
13020
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12499
|
-
[k: string]: unknown | undefined
|
|
12500
13021
|
}
|
|
12501
13022
|
|
|
12502
|
-
groupName
|
|
13023
|
+
groupName: string
|
|
12503
13024
|
|
|
12504
13025
|
order?: ("asc" | "desc")
|
|
12505
13026
|
|
|
@@ -12511,10 +13032,14 @@ type PerfectionistSortNamedImports = {
|
|
|
12511
13032
|
selector?: "import"
|
|
12512
13033
|
|
|
12513
13034
|
elementNamePattern?: (({
|
|
12514
|
-
|
|
13035
|
+
|
|
13036
|
+
pattern: string
|
|
13037
|
+
|
|
12515
13038
|
flags?: string
|
|
12516
13039
|
} | string)[] | ({
|
|
12517
|
-
|
|
13040
|
+
|
|
13041
|
+
pattern: string
|
|
13042
|
+
|
|
12518
13043
|
flags?: string
|
|
12519
13044
|
} | string))
|
|
12520
13045
|
}[]
|
|
@@ -12527,10 +13052,9 @@ type PerfectionistSortNamedImports = {
|
|
|
12527
13052
|
order?: ("asc" | "desc")
|
|
12528
13053
|
|
|
12529
13054
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12530
|
-
[k: string]: unknown | undefined
|
|
12531
13055
|
}
|
|
12532
13056
|
|
|
12533
|
-
groupName
|
|
13057
|
+
groupName: string
|
|
12534
13058
|
|
|
12535
13059
|
order?: ("asc" | "desc")
|
|
12536
13060
|
|
|
@@ -12541,33 +13065,51 @@ type PerfectionistSortNamedImports = {
|
|
|
12541
13065
|
selector?: "import"
|
|
12542
13066
|
|
|
12543
13067
|
elementNamePattern?: (({
|
|
12544
|
-
|
|
13068
|
+
|
|
13069
|
+
pattern: string
|
|
13070
|
+
|
|
12545
13071
|
flags?: string
|
|
12546
13072
|
} | string)[] | ({
|
|
12547
|
-
|
|
13073
|
+
|
|
13074
|
+
pattern: string
|
|
13075
|
+
|
|
12548
13076
|
flags?: string
|
|
12549
13077
|
} | string))
|
|
12550
13078
|
})[]
|
|
12551
13079
|
|
|
12552
13080
|
partitionByComment?: (boolean | (({
|
|
12553
|
-
|
|
13081
|
+
|
|
13082
|
+
pattern: string
|
|
13083
|
+
|
|
12554
13084
|
flags?: string
|
|
12555
13085
|
} | string)[] | ({
|
|
12556
|
-
|
|
13086
|
+
|
|
13087
|
+
pattern: string
|
|
13088
|
+
|
|
12557
13089
|
flags?: string
|
|
12558
13090
|
} | string)) | {
|
|
13091
|
+
|
|
12559
13092
|
block?: (boolean | (({
|
|
12560
|
-
|
|
13093
|
+
|
|
13094
|
+
pattern: string
|
|
13095
|
+
|
|
12561
13096
|
flags?: string
|
|
12562
13097
|
} | string)[] | ({
|
|
12563
|
-
|
|
13098
|
+
|
|
13099
|
+
pattern: string
|
|
13100
|
+
|
|
12564
13101
|
flags?: string
|
|
12565
13102
|
} | string)))
|
|
13103
|
+
|
|
12566
13104
|
line?: (boolean | (({
|
|
12567
|
-
|
|
13105
|
+
|
|
13106
|
+
pattern: string
|
|
13107
|
+
|
|
12568
13108
|
flags?: string
|
|
12569
13109
|
} | string)[] | ({
|
|
12570
|
-
|
|
13110
|
+
|
|
13111
|
+
pattern: string
|
|
13112
|
+
|
|
12571
13113
|
flags?: string
|
|
12572
13114
|
} | string)))
|
|
12573
13115
|
})
|
|
@@ -12578,7 +13120,7 @@ type PerfectionistSortNamedImports = {
|
|
|
12578
13120
|
|
|
12579
13121
|
groups?: (string | string[] | {
|
|
12580
13122
|
|
|
12581
|
-
newlinesBetween
|
|
13123
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12582
13124
|
})[]
|
|
12583
13125
|
}[]
|
|
12584
13126
|
// ----- perfectionist/sort-object-types -----
|
|
@@ -12589,7 +13131,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
12589
13131
|
order?: ("asc" | "desc")
|
|
12590
13132
|
|
|
12591
13133
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12592
|
-
|
|
13134
|
+
sortBy?: ("name" | "value")
|
|
12593
13135
|
}
|
|
12594
13136
|
|
|
12595
13137
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12615,10 +13157,9 @@ type PerfectionistSortObjectTypes = {
|
|
|
12615
13157
|
|
|
12616
13158
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12617
13159
|
sortBy?: ("name" | "value")
|
|
12618
|
-
[k: string]: unknown | undefined
|
|
12619
13160
|
}
|
|
12620
13161
|
|
|
12621
|
-
groupName
|
|
13162
|
+
groupName: string
|
|
12622
13163
|
|
|
12623
13164
|
order?: ("asc" | "desc")
|
|
12624
13165
|
|
|
@@ -12630,18 +13171,26 @@ type PerfectionistSortObjectTypes = {
|
|
|
12630
13171
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12631
13172
|
|
|
12632
13173
|
elementValuePattern?: (({
|
|
12633
|
-
|
|
13174
|
+
|
|
13175
|
+
pattern: string
|
|
13176
|
+
|
|
12634
13177
|
flags?: string
|
|
12635
13178
|
} | string)[] | ({
|
|
12636
|
-
|
|
13179
|
+
|
|
13180
|
+
pattern: string
|
|
13181
|
+
|
|
12637
13182
|
flags?: string
|
|
12638
13183
|
} | string))
|
|
12639
13184
|
|
|
12640
13185
|
elementNamePattern?: (({
|
|
12641
|
-
|
|
13186
|
+
|
|
13187
|
+
pattern: string
|
|
13188
|
+
|
|
12642
13189
|
flags?: string
|
|
12643
13190
|
} | string)[] | ({
|
|
12644
|
-
|
|
13191
|
+
|
|
13192
|
+
pattern: string
|
|
13193
|
+
|
|
12645
13194
|
flags?: string
|
|
12646
13195
|
} | string))
|
|
12647
13196
|
sortBy?: ("name" | "value")
|
|
@@ -12656,10 +13205,9 @@ type PerfectionistSortObjectTypes = {
|
|
|
12656
13205
|
|
|
12657
13206
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12658
13207
|
sortBy?: ("name" | "value")
|
|
12659
|
-
[k: string]: unknown | undefined
|
|
12660
13208
|
}
|
|
12661
13209
|
|
|
12662
|
-
groupName
|
|
13210
|
+
groupName: string
|
|
12663
13211
|
|
|
12664
13212
|
order?: ("asc" | "desc")
|
|
12665
13213
|
|
|
@@ -12670,62 +13218,93 @@ type PerfectionistSortObjectTypes = {
|
|
|
12670
13218
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12671
13219
|
|
|
12672
13220
|
elementValuePattern?: (({
|
|
12673
|
-
|
|
13221
|
+
|
|
13222
|
+
pattern: string
|
|
13223
|
+
|
|
12674
13224
|
flags?: string
|
|
12675
13225
|
} | string)[] | ({
|
|
12676
|
-
|
|
13226
|
+
|
|
13227
|
+
pattern: string
|
|
13228
|
+
|
|
12677
13229
|
flags?: string
|
|
12678
13230
|
} | string))
|
|
12679
13231
|
|
|
12680
13232
|
elementNamePattern?: (({
|
|
12681
|
-
|
|
13233
|
+
|
|
13234
|
+
pattern: string
|
|
13235
|
+
|
|
12682
13236
|
flags?: string
|
|
12683
13237
|
} | string)[] | ({
|
|
12684
|
-
|
|
13238
|
+
|
|
13239
|
+
pattern: string
|
|
13240
|
+
|
|
12685
13241
|
flags?: string
|
|
12686
13242
|
} | string))
|
|
12687
13243
|
sortBy?: ("name" | "value")
|
|
12688
13244
|
})[])
|
|
12689
13245
|
|
|
12690
13246
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
13247
|
+
|
|
12691
13248
|
useConfigurationIf?: {
|
|
12692
13249
|
|
|
12693
13250
|
allNamesMatchPattern?: (({
|
|
12694
|
-
|
|
13251
|
+
|
|
13252
|
+
pattern: string
|
|
13253
|
+
|
|
12695
13254
|
flags?: string
|
|
12696
13255
|
} | string)[] | ({
|
|
12697
|
-
|
|
13256
|
+
|
|
13257
|
+
pattern: string
|
|
13258
|
+
|
|
12698
13259
|
flags?: string
|
|
12699
13260
|
} | string))
|
|
12700
13261
|
|
|
12701
13262
|
declarationMatchesPattern?: (({
|
|
12702
|
-
|
|
13263
|
+
|
|
13264
|
+
pattern: string
|
|
13265
|
+
|
|
12703
13266
|
flags?: string
|
|
12704
13267
|
} | string)[] | ({
|
|
12705
|
-
|
|
13268
|
+
|
|
13269
|
+
pattern: string
|
|
13270
|
+
|
|
12706
13271
|
flags?: string
|
|
12707
13272
|
} | string))
|
|
12708
13273
|
}
|
|
12709
13274
|
|
|
12710
13275
|
partitionByComment?: (boolean | (({
|
|
12711
|
-
|
|
13276
|
+
|
|
13277
|
+
pattern: string
|
|
13278
|
+
|
|
12712
13279
|
flags?: string
|
|
12713
13280
|
} | string)[] | ({
|
|
12714
|
-
|
|
13281
|
+
|
|
13282
|
+
pattern: string
|
|
13283
|
+
|
|
12715
13284
|
flags?: string
|
|
12716
13285
|
} | string)) | {
|
|
13286
|
+
|
|
12717
13287
|
block?: (boolean | (({
|
|
12718
|
-
|
|
13288
|
+
|
|
13289
|
+
pattern: string
|
|
13290
|
+
|
|
12719
13291
|
flags?: string
|
|
12720
13292
|
} | string)[] | ({
|
|
12721
|
-
|
|
13293
|
+
|
|
13294
|
+
pattern: string
|
|
13295
|
+
|
|
12722
13296
|
flags?: string
|
|
12723
13297
|
} | string)))
|
|
13298
|
+
|
|
12724
13299
|
line?: (boolean | (({
|
|
12725
|
-
|
|
13300
|
+
|
|
13301
|
+
pattern: string
|
|
13302
|
+
|
|
12726
13303
|
flags?: string
|
|
12727
13304
|
} | string)[] | ({
|
|
12728
|
-
|
|
13305
|
+
|
|
13306
|
+
pattern: string
|
|
13307
|
+
|
|
12729
13308
|
flags?: string
|
|
12730
13309
|
} | string)))
|
|
12731
13310
|
})
|
|
@@ -12735,17 +13314,21 @@ type PerfectionistSortObjectTypes = {
|
|
|
12735
13314
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12736
13315
|
|
|
12737
13316
|
ignorePattern?: (({
|
|
12738
|
-
|
|
13317
|
+
|
|
13318
|
+
pattern: string
|
|
13319
|
+
|
|
12739
13320
|
flags?: string
|
|
12740
13321
|
} | string)[] | ({
|
|
12741
|
-
|
|
13322
|
+
|
|
13323
|
+
pattern: string
|
|
13324
|
+
|
|
12742
13325
|
flags?: string
|
|
12743
13326
|
} | string))
|
|
12744
13327
|
sortBy?: ("name" | "value")
|
|
12745
13328
|
|
|
12746
13329
|
groups?: (string | string[] | {
|
|
12747
13330
|
|
|
12748
|
-
newlinesBetween
|
|
13331
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12749
13332
|
})[]
|
|
12750
13333
|
}[]
|
|
12751
13334
|
// ----- perfectionist/sort-objects -----
|
|
@@ -12756,7 +13339,6 @@ type PerfectionistSortObjects = {
|
|
|
12756
13339
|
order?: ("asc" | "desc")
|
|
12757
13340
|
|
|
12758
13341
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12759
|
-
[k: string]: unknown | undefined
|
|
12760
13342
|
}
|
|
12761
13343
|
|
|
12762
13344
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12786,10 +13368,9 @@ type PerfectionistSortObjects = {
|
|
|
12786
13368
|
order?: ("asc" | "desc")
|
|
12787
13369
|
|
|
12788
13370
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12789
|
-
[k: string]: unknown | undefined
|
|
12790
13371
|
}
|
|
12791
13372
|
|
|
12792
|
-
groupName
|
|
13373
|
+
groupName: string
|
|
12793
13374
|
|
|
12794
13375
|
order?: ("asc" | "desc")
|
|
12795
13376
|
|
|
@@ -12801,18 +13382,26 @@ type PerfectionistSortObjects = {
|
|
|
12801
13382
|
selector?: ("member" | "method" | "multiline" | "property")
|
|
12802
13383
|
|
|
12803
13384
|
elementValuePattern?: (({
|
|
12804
|
-
|
|
13385
|
+
|
|
13386
|
+
pattern: string
|
|
13387
|
+
|
|
12805
13388
|
flags?: string
|
|
12806
13389
|
} | string)[] | ({
|
|
12807
|
-
|
|
13390
|
+
|
|
13391
|
+
pattern: string
|
|
13392
|
+
|
|
12808
13393
|
flags?: string
|
|
12809
13394
|
} | string))
|
|
12810
13395
|
|
|
12811
13396
|
elementNamePattern?: (({
|
|
12812
|
-
|
|
13397
|
+
|
|
13398
|
+
pattern: string
|
|
13399
|
+
|
|
12813
13400
|
flags?: string
|
|
12814
13401
|
} | string)[] | ({
|
|
12815
|
-
|
|
13402
|
+
|
|
13403
|
+
pattern: string
|
|
13404
|
+
|
|
12816
13405
|
flags?: string
|
|
12817
13406
|
} | string))
|
|
12818
13407
|
}[]
|
|
@@ -12825,10 +13414,9 @@ type PerfectionistSortObjects = {
|
|
|
12825
13414
|
order?: ("asc" | "desc")
|
|
12826
13415
|
|
|
12827
13416
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12828
|
-
[k: string]: unknown | undefined
|
|
12829
13417
|
}
|
|
12830
13418
|
|
|
12831
|
-
groupName
|
|
13419
|
+
groupName: string
|
|
12832
13420
|
|
|
12833
13421
|
order?: ("asc" | "desc")
|
|
12834
13422
|
|
|
@@ -12839,36 +13427,53 @@ type PerfectionistSortObjects = {
|
|
|
12839
13427
|
selector?: ("member" | "method" | "multiline" | "property")
|
|
12840
13428
|
|
|
12841
13429
|
elementValuePattern?: (({
|
|
12842
|
-
|
|
13430
|
+
|
|
13431
|
+
pattern: string
|
|
13432
|
+
|
|
12843
13433
|
flags?: string
|
|
12844
13434
|
} | string)[] | ({
|
|
12845
|
-
|
|
13435
|
+
|
|
13436
|
+
pattern: string
|
|
13437
|
+
|
|
12846
13438
|
flags?: string
|
|
12847
13439
|
} | string))
|
|
12848
13440
|
|
|
12849
13441
|
elementNamePattern?: (({
|
|
12850
|
-
|
|
13442
|
+
|
|
13443
|
+
pattern: string
|
|
13444
|
+
|
|
12851
13445
|
flags?: string
|
|
12852
13446
|
} | string)[] | ({
|
|
12853
|
-
|
|
13447
|
+
|
|
13448
|
+
pattern: string
|
|
13449
|
+
|
|
12854
13450
|
flags?: string
|
|
12855
13451
|
} | string))
|
|
12856
13452
|
})[])
|
|
13453
|
+
|
|
12857
13454
|
useConfigurationIf?: {
|
|
12858
13455
|
|
|
12859
13456
|
allNamesMatchPattern?: (({
|
|
12860
|
-
|
|
13457
|
+
|
|
13458
|
+
pattern: string
|
|
13459
|
+
|
|
12861
13460
|
flags?: string
|
|
12862
13461
|
} | string)[] | ({
|
|
12863
|
-
|
|
13462
|
+
|
|
13463
|
+
pattern: string
|
|
13464
|
+
|
|
12864
13465
|
flags?: string
|
|
12865
13466
|
} | string))
|
|
12866
13467
|
|
|
12867
13468
|
callingFunctionNamePattern?: (({
|
|
12868
|
-
|
|
13469
|
+
|
|
13470
|
+
pattern: string
|
|
13471
|
+
|
|
12869
13472
|
flags?: string
|
|
12870
13473
|
} | string)[] | ({
|
|
12871
|
-
|
|
13474
|
+
|
|
13475
|
+
pattern: string
|
|
13476
|
+
|
|
12872
13477
|
flags?: string
|
|
12873
13478
|
} | string))
|
|
12874
13479
|
}
|
|
@@ -12880,24 +13485,38 @@ type PerfectionistSortObjects = {
|
|
|
12880
13485
|
styledComponents?: boolean
|
|
12881
13486
|
|
|
12882
13487
|
partitionByComment?: (boolean | (({
|
|
12883
|
-
|
|
13488
|
+
|
|
13489
|
+
pattern: string
|
|
13490
|
+
|
|
12884
13491
|
flags?: string
|
|
12885
13492
|
} | string)[] | ({
|
|
12886
|
-
|
|
13493
|
+
|
|
13494
|
+
pattern: string
|
|
13495
|
+
|
|
12887
13496
|
flags?: string
|
|
12888
13497
|
} | string)) | {
|
|
13498
|
+
|
|
12889
13499
|
block?: (boolean | (({
|
|
12890
|
-
|
|
13500
|
+
|
|
13501
|
+
pattern: string
|
|
13502
|
+
|
|
12891
13503
|
flags?: string
|
|
12892
13504
|
} | string)[] | ({
|
|
12893
|
-
|
|
13505
|
+
|
|
13506
|
+
pattern: string
|
|
13507
|
+
|
|
12894
13508
|
flags?: string
|
|
12895
13509
|
} | string)))
|
|
13510
|
+
|
|
12896
13511
|
line?: (boolean | (({
|
|
12897
|
-
|
|
13512
|
+
|
|
13513
|
+
pattern: string
|
|
13514
|
+
|
|
12898
13515
|
flags?: string
|
|
12899
13516
|
} | string)[] | ({
|
|
12900
|
-
|
|
13517
|
+
|
|
13518
|
+
pattern: string
|
|
13519
|
+
|
|
12901
13520
|
flags?: string
|
|
12902
13521
|
} | string)))
|
|
12903
13522
|
})
|
|
@@ -12907,16 +13526,20 @@ type PerfectionistSortObjects = {
|
|
|
12907
13526
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12908
13527
|
|
|
12909
13528
|
ignorePattern?: (({
|
|
12910
|
-
|
|
13529
|
+
|
|
13530
|
+
pattern: string
|
|
13531
|
+
|
|
12911
13532
|
flags?: string
|
|
12912
13533
|
} | string)[] | ({
|
|
12913
|
-
|
|
13534
|
+
|
|
13535
|
+
pattern: string
|
|
13536
|
+
|
|
12914
13537
|
flags?: string
|
|
12915
13538
|
} | string))
|
|
12916
13539
|
|
|
12917
13540
|
groups?: (string | string[] | {
|
|
12918
13541
|
|
|
12919
|
-
newlinesBetween
|
|
13542
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
12920
13543
|
})[]
|
|
12921
13544
|
}[]
|
|
12922
13545
|
// ----- perfectionist/sort-sets -----
|
|
@@ -12927,7 +13550,6 @@ type PerfectionistSortSets = {
|
|
|
12927
13550
|
order?: ("asc" | "desc")
|
|
12928
13551
|
|
|
12929
13552
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12930
|
-
[k: string]: unknown | undefined
|
|
12931
13553
|
}
|
|
12932
13554
|
|
|
12933
13555
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -12953,10 +13575,9 @@ type PerfectionistSortSets = {
|
|
|
12953
13575
|
order?: ("asc" | "desc")
|
|
12954
13576
|
|
|
12955
13577
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12956
|
-
[k: string]: unknown | undefined
|
|
12957
13578
|
}
|
|
12958
13579
|
|
|
12959
|
-
groupName
|
|
13580
|
+
groupName: string
|
|
12960
13581
|
|
|
12961
13582
|
order?: ("asc" | "desc")
|
|
12962
13583
|
|
|
@@ -12966,10 +13587,14 @@ type PerfectionistSortSets = {
|
|
|
12966
13587
|
selector?: ("literal" | "spread")
|
|
12967
13588
|
|
|
12968
13589
|
elementNamePattern?: (({
|
|
12969
|
-
|
|
13590
|
+
|
|
13591
|
+
pattern: string
|
|
13592
|
+
|
|
12970
13593
|
flags?: string
|
|
12971
13594
|
} | string)[] | ({
|
|
12972
|
-
|
|
13595
|
+
|
|
13596
|
+
pattern: string
|
|
13597
|
+
|
|
12973
13598
|
flags?: string
|
|
12974
13599
|
} | string))
|
|
12975
13600
|
}[]
|
|
@@ -12982,10 +13607,9 @@ type PerfectionistSortSets = {
|
|
|
12982
13607
|
order?: ("asc" | "desc")
|
|
12983
13608
|
|
|
12984
13609
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12985
|
-
[k: string]: unknown | undefined
|
|
12986
13610
|
}
|
|
12987
13611
|
|
|
12988
|
-
groupName
|
|
13612
|
+
groupName: string
|
|
12989
13613
|
|
|
12990
13614
|
order?: ("asc" | "desc")
|
|
12991
13615
|
|
|
@@ -12994,43 +13618,66 @@ type PerfectionistSortSets = {
|
|
|
12994
13618
|
selector?: ("literal" | "spread")
|
|
12995
13619
|
|
|
12996
13620
|
elementNamePattern?: (({
|
|
12997
|
-
|
|
13621
|
+
|
|
13622
|
+
pattern: string
|
|
13623
|
+
|
|
12998
13624
|
flags?: string
|
|
12999
13625
|
} | string)[] | ({
|
|
13000
|
-
|
|
13626
|
+
|
|
13627
|
+
pattern: string
|
|
13628
|
+
|
|
13001
13629
|
flags?: string
|
|
13002
13630
|
} | string))
|
|
13003
13631
|
})[]
|
|
13632
|
+
|
|
13004
13633
|
useConfigurationIf?: {
|
|
13005
13634
|
|
|
13006
13635
|
allNamesMatchPattern?: (({
|
|
13007
|
-
|
|
13636
|
+
|
|
13637
|
+
pattern: string
|
|
13638
|
+
|
|
13008
13639
|
flags?: string
|
|
13009
13640
|
} | string)[] | ({
|
|
13010
|
-
|
|
13641
|
+
|
|
13642
|
+
pattern: string
|
|
13643
|
+
|
|
13011
13644
|
flags?: string
|
|
13012
13645
|
} | string))
|
|
13013
13646
|
}
|
|
13014
13647
|
|
|
13015
13648
|
partitionByComment?: (boolean | (({
|
|
13016
|
-
|
|
13649
|
+
|
|
13650
|
+
pattern: string
|
|
13651
|
+
|
|
13017
13652
|
flags?: string
|
|
13018
13653
|
} | string)[] | ({
|
|
13019
|
-
|
|
13654
|
+
|
|
13655
|
+
pattern: string
|
|
13656
|
+
|
|
13020
13657
|
flags?: string
|
|
13021
13658
|
} | string)) | {
|
|
13659
|
+
|
|
13022
13660
|
block?: (boolean | (({
|
|
13023
|
-
|
|
13661
|
+
|
|
13662
|
+
pattern: string
|
|
13663
|
+
|
|
13024
13664
|
flags?: string
|
|
13025
13665
|
} | string)[] | ({
|
|
13026
|
-
|
|
13666
|
+
|
|
13667
|
+
pattern: string
|
|
13668
|
+
|
|
13027
13669
|
flags?: string
|
|
13028
13670
|
} | string)))
|
|
13671
|
+
|
|
13029
13672
|
line?: (boolean | (({
|
|
13030
|
-
|
|
13673
|
+
|
|
13674
|
+
pattern: string
|
|
13675
|
+
|
|
13031
13676
|
flags?: string
|
|
13032
13677
|
} | string)[] | ({
|
|
13033
|
-
|
|
13678
|
+
|
|
13679
|
+
pattern: string
|
|
13680
|
+
|
|
13034
13681
|
flags?: string
|
|
13035
13682
|
} | string)))
|
|
13036
13683
|
})
|
|
@@ -13041,7 +13688,7 @@ type PerfectionistSortSets = {
|
|
|
13041
13688
|
|
|
13042
13689
|
groups?: (string | string[] | {
|
|
13043
13690
|
|
|
13044
|
-
newlinesBetween
|
|
13691
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13045
13692
|
})[]
|
|
13046
13693
|
}[]
|
|
13047
13694
|
// ----- perfectionist/sort-switch-case -----
|
|
@@ -13052,7 +13699,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
13052
13699
|
order?: ("asc" | "desc")
|
|
13053
13700
|
|
|
13054
13701
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13055
|
-
[k: string]: unknown | undefined
|
|
13056
13702
|
}
|
|
13057
13703
|
|
|
13058
13704
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13068,14 +13714,13 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
13068
13714
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13069
13715
|
}]
|
|
13070
13716
|
// ----- perfectionist/sort-union-types -----
|
|
13071
|
-
type PerfectionistSortUnionTypes =
|
|
13717
|
+
type PerfectionistSortUnionTypes = {
|
|
13072
13718
|
|
|
13073
13719
|
fallbackSort?: {
|
|
13074
13720
|
|
|
13075
13721
|
order?: ("asc" | "desc")
|
|
13076
13722
|
|
|
13077
13723
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13078
|
-
[k: string]: unknown | undefined
|
|
13079
13724
|
}
|
|
13080
13725
|
|
|
13081
13726
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13090,25 +13735,103 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
13090
13735
|
|
|
13091
13736
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13092
13737
|
|
|
13738
|
+
customGroups?: ({
|
|
13739
|
+
|
|
13740
|
+
newlinesInside?: ("always" | "never")
|
|
13741
|
+
|
|
13742
|
+
fallbackSort?: {
|
|
13743
|
+
|
|
13744
|
+
order?: ("asc" | "desc")
|
|
13745
|
+
|
|
13746
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13747
|
+
}
|
|
13748
|
+
|
|
13749
|
+
groupName: string
|
|
13750
|
+
|
|
13751
|
+
order?: ("asc" | "desc")
|
|
13752
|
+
|
|
13753
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13754
|
+
anyOf?: {
|
|
13755
|
+
|
|
13756
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
13757
|
+
|
|
13758
|
+
elementNamePattern?: (({
|
|
13759
|
+
|
|
13760
|
+
pattern: string
|
|
13761
|
+
|
|
13762
|
+
flags?: string
|
|
13763
|
+
} | string)[] | ({
|
|
13764
|
+
|
|
13765
|
+
pattern: string
|
|
13766
|
+
|
|
13767
|
+
flags?: string
|
|
13768
|
+
} | string))
|
|
13769
|
+
}[]
|
|
13770
|
+
} | {
|
|
13771
|
+
|
|
13772
|
+
newlinesInside?: ("always" | "never")
|
|
13773
|
+
|
|
13774
|
+
fallbackSort?: {
|
|
13775
|
+
|
|
13776
|
+
order?: ("asc" | "desc")
|
|
13777
|
+
|
|
13778
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13779
|
+
}
|
|
13780
|
+
|
|
13781
|
+
groupName: string
|
|
13782
|
+
|
|
13783
|
+
order?: ("asc" | "desc")
|
|
13784
|
+
|
|
13785
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13786
|
+
|
|
13787
|
+
selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
|
|
13788
|
+
|
|
13789
|
+
elementNamePattern?: (({
|
|
13790
|
+
|
|
13791
|
+
pattern: string
|
|
13792
|
+
|
|
13793
|
+
flags?: string
|
|
13794
|
+
} | string)[] | ({
|
|
13795
|
+
|
|
13796
|
+
pattern: string
|
|
13797
|
+
|
|
13798
|
+
flags?: string
|
|
13799
|
+
} | string))
|
|
13800
|
+
})[]
|
|
13801
|
+
|
|
13093
13802
|
partitionByComment?: (boolean | (({
|
|
13094
|
-
|
|
13803
|
+
|
|
13804
|
+
pattern: string
|
|
13805
|
+
|
|
13095
13806
|
flags?: string
|
|
13096
13807
|
} | string)[] | ({
|
|
13097
|
-
|
|
13808
|
+
|
|
13809
|
+
pattern: string
|
|
13810
|
+
|
|
13098
13811
|
flags?: string
|
|
13099
13812
|
} | string)) | {
|
|
13813
|
+
|
|
13100
13814
|
block?: (boolean | (({
|
|
13101
|
-
|
|
13815
|
+
|
|
13816
|
+
pattern: string
|
|
13817
|
+
|
|
13102
13818
|
flags?: string
|
|
13103
13819
|
} | string)[] | ({
|
|
13104
|
-
|
|
13820
|
+
|
|
13821
|
+
pattern: string
|
|
13822
|
+
|
|
13105
13823
|
flags?: string
|
|
13106
13824
|
} | string)))
|
|
13825
|
+
|
|
13107
13826
|
line?: (boolean | (({
|
|
13108
|
-
|
|
13827
|
+
|
|
13828
|
+
pattern: string
|
|
13829
|
+
|
|
13109
13830
|
flags?: string
|
|
13110
13831
|
} | string)[] | ({
|
|
13111
|
-
|
|
13832
|
+
|
|
13833
|
+
pattern: string
|
|
13834
|
+
|
|
13112
13835
|
flags?: string
|
|
13113
13836
|
} | string)))
|
|
13114
13837
|
})
|
|
@@ -13119,9 +13842,9 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
13119
13842
|
|
|
13120
13843
|
groups?: (string | string[] | {
|
|
13121
13844
|
|
|
13122
|
-
newlinesBetween
|
|
13845
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13123
13846
|
})[]
|
|
13124
|
-
}]
|
|
13847
|
+
}[]
|
|
13125
13848
|
// ----- perfectionist/sort-variable-declarations -----
|
|
13126
13849
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
13127
13850
|
|
|
@@ -13130,7 +13853,6 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
13130
13853
|
order?: ("asc" | "desc")
|
|
13131
13854
|
|
|
13132
13855
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13133
|
-
[k: string]: unknown | undefined
|
|
13134
13856
|
}
|
|
13135
13857
|
|
|
13136
13858
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -13145,30 +13867,115 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
13145
13867
|
|
|
13146
13868
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13147
13869
|
|
|
13870
|
+
customGroups?: ({
|
|
13871
|
+
|
|
13872
|
+
newlinesInside?: ("always" | "never")
|
|
13873
|
+
|
|
13874
|
+
fallbackSort?: {
|
|
13875
|
+
|
|
13876
|
+
order?: ("asc" | "desc")
|
|
13877
|
+
|
|
13878
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13879
|
+
}
|
|
13880
|
+
|
|
13881
|
+
groupName: string
|
|
13882
|
+
|
|
13883
|
+
order?: ("asc" | "desc")
|
|
13884
|
+
|
|
13885
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13886
|
+
anyOf?: {
|
|
13887
|
+
|
|
13888
|
+
selector?: ("initialized" | "uninitialized")
|
|
13889
|
+
|
|
13890
|
+
elementNamePattern?: (({
|
|
13891
|
+
|
|
13892
|
+
pattern: string
|
|
13893
|
+
|
|
13894
|
+
flags?: string
|
|
13895
|
+
} | string)[] | ({
|
|
13896
|
+
|
|
13897
|
+
pattern: string
|
|
13898
|
+
|
|
13899
|
+
flags?: string
|
|
13900
|
+
} | string))
|
|
13901
|
+
}[]
|
|
13902
|
+
} | {
|
|
13903
|
+
|
|
13904
|
+
newlinesInside?: ("always" | "never")
|
|
13905
|
+
|
|
13906
|
+
fallbackSort?: {
|
|
13907
|
+
|
|
13908
|
+
order?: ("asc" | "desc")
|
|
13909
|
+
|
|
13910
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13911
|
+
}
|
|
13912
|
+
|
|
13913
|
+
groupName: string
|
|
13914
|
+
|
|
13915
|
+
order?: ("asc" | "desc")
|
|
13916
|
+
|
|
13917
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
13918
|
+
|
|
13919
|
+
selector?: ("initialized" | "uninitialized")
|
|
13920
|
+
|
|
13921
|
+
elementNamePattern?: (({
|
|
13922
|
+
|
|
13923
|
+
pattern: string
|
|
13924
|
+
|
|
13925
|
+
flags?: string
|
|
13926
|
+
} | string)[] | ({
|
|
13927
|
+
|
|
13928
|
+
pattern: string
|
|
13929
|
+
|
|
13930
|
+
flags?: string
|
|
13931
|
+
} | string))
|
|
13932
|
+
})[]
|
|
13933
|
+
|
|
13148
13934
|
partitionByComment?: (boolean | (({
|
|
13149
|
-
|
|
13935
|
+
|
|
13936
|
+
pattern: string
|
|
13937
|
+
|
|
13150
13938
|
flags?: string
|
|
13151
13939
|
} | string)[] | ({
|
|
13152
|
-
|
|
13940
|
+
|
|
13941
|
+
pattern: string
|
|
13942
|
+
|
|
13153
13943
|
flags?: string
|
|
13154
13944
|
} | string)) | {
|
|
13945
|
+
|
|
13155
13946
|
block?: (boolean | (({
|
|
13156
|
-
|
|
13947
|
+
|
|
13948
|
+
pattern: string
|
|
13949
|
+
|
|
13157
13950
|
flags?: string
|
|
13158
13951
|
} | string)[] | ({
|
|
13159
|
-
|
|
13952
|
+
|
|
13953
|
+
pattern: string
|
|
13954
|
+
|
|
13160
13955
|
flags?: string
|
|
13161
13956
|
} | string)))
|
|
13957
|
+
|
|
13162
13958
|
line?: (boolean | (({
|
|
13163
|
-
|
|
13959
|
+
|
|
13960
|
+
pattern: string
|
|
13961
|
+
|
|
13164
13962
|
flags?: string
|
|
13165
13963
|
} | string)[] | ({
|
|
13166
|
-
|
|
13964
|
+
|
|
13965
|
+
pattern: string
|
|
13966
|
+
|
|
13167
13967
|
flags?: string
|
|
13168
13968
|
} | string)))
|
|
13169
13969
|
})
|
|
13170
13970
|
|
|
13171
13971
|
partitionByNewLine?: boolean
|
|
13972
|
+
|
|
13973
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
13974
|
+
|
|
13975
|
+
groups?: (string | string[] | {
|
|
13976
|
+
|
|
13977
|
+
newlinesBetween: ("ignore" | "always" | "never")
|
|
13978
|
+
})[]
|
|
13172
13979
|
}]
|
|
13173
13980
|
// ----- pnpm/json-enforce-catalog -----
|
|
13174
13981
|
type PnpmJsonEnforceCatalog = []|[{
|