@jsse/eslint-config 0.2.22 → 0.2.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/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.d.cts +57 -1
- package/dist/index.d.ts +57 -1
- package/package.json +15 -15
package/dist/cli.cjs
CHANGED
package/dist/cli.js
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -5165,6 +5165,7 @@ interface JsdocRuleOptions {
|
|
|
5165
5165
|
*/
|
|
5166
5166
|
"jsdoc/no-missing-syntax"?: Linter.RuleEntry<JsdocNoMissingSyntax>;
|
|
5167
5167
|
/**
|
|
5168
|
+
* Prevents use of multiple asterisks at the beginning of lines.
|
|
5168
5169
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-multi-asterisks.md#repos-sticky-header
|
|
5169
5170
|
*/
|
|
5170
5171
|
"jsdoc/no-multi-asterisks"?: Linter.RuleEntry<JsdocNoMultiAsterisks>;
|
|
@@ -5309,6 +5310,7 @@ interface JsdocRuleOptions {
|
|
|
5309
5310
|
*/
|
|
5310
5311
|
"jsdoc/tag-lines"?: Linter.RuleEntry<JsdocTagLines>;
|
|
5311
5312
|
/**
|
|
5313
|
+
* Auto-escape certain characters that are input within block and tag descriptions.
|
|
5312
5314
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/text-escaping.md#repos-sticky-header
|
|
5313
5315
|
*/
|
|
5314
5316
|
"jsdoc/text-escaping"?: Linter.RuleEntry<JsdocTextEscaping>;
|
|
@@ -9836,6 +9838,7 @@ interface PerfectionistRuleOptions {
|
|
|
9836
9838
|
/**
|
|
9837
9839
|
* Enforce sorted Astro attributes.
|
|
9838
9840
|
* @see https://perfectionist.dev/rules/sort-astro-attributes
|
|
9841
|
+
* @deprecated
|
|
9839
9842
|
*/
|
|
9840
9843
|
"perfectionist/sort-astro-attributes"?: Linter.RuleEntry<PerfectionistSortAstroAttributes>;
|
|
9841
9844
|
/**
|
|
@@ -9906,6 +9909,7 @@ interface PerfectionistRuleOptions {
|
|
|
9906
9909
|
/**
|
|
9907
9910
|
* Enforce sorted Svelte attributes.
|
|
9908
9911
|
* @see https://perfectionist.dev/rules/sort-svelte-attributes
|
|
9912
|
+
* @deprecated
|
|
9909
9913
|
*/
|
|
9910
9914
|
"perfectionist/sort-svelte-attributes"?: Linter.RuleEntry<PerfectionistSortSvelteAttributes>;
|
|
9911
9915
|
/**
|
|
@@ -9926,6 +9930,7 @@ interface PerfectionistRuleOptions {
|
|
|
9926
9930
|
/**
|
|
9927
9931
|
* Enforce sorted Vue attributes.
|
|
9928
9932
|
* @see https://perfectionist.dev/rules/sort-vue-attributes
|
|
9933
|
+
* @deprecated
|
|
9929
9934
|
*/
|
|
9930
9935
|
"perfectionist/sort-vue-attributes"?: Linter.RuleEntry<PerfectionistSortVueAttributes>;
|
|
9931
9936
|
}
|
|
@@ -9944,6 +9949,8 @@ type PerfectionistSortArrayIncludes =
|
|
|
9944
9949
|
|
|
9945
9950
|
ignoreCase?: boolean;
|
|
9946
9951
|
|
|
9952
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
9953
|
+
|
|
9947
9954
|
groupKind?: "mixed" | "literals-first" | "spreads-first";
|
|
9948
9955
|
|
|
9949
9956
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -9964,6 +9971,8 @@ type PerfectionistSortAstroAttributes =
|
|
|
9964
9971
|
|
|
9965
9972
|
ignoreCase?: boolean;
|
|
9966
9973
|
|
|
9974
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
9975
|
+
|
|
9967
9976
|
groups?: (string | string[])[];
|
|
9968
9977
|
|
|
9969
9978
|
customGroups?: {
|
|
@@ -9984,6 +9993,8 @@ type PerfectionistSortClasses =
|
|
|
9984
9993
|
|
|
9985
9994
|
ignoreCase?: boolean;
|
|
9986
9995
|
|
|
9996
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
9997
|
+
|
|
9987
9998
|
partitionByComment?: string[] | boolean | string;
|
|
9988
9999
|
|
|
9989
10000
|
groups?: (string | string[])[];
|
|
@@ -10030,6 +10041,8 @@ type PerfectionistSortClasses =
|
|
|
10030
10041
|
|
|
10031
10042
|
elementNamePattern?: string;
|
|
10032
10043
|
|
|
10044
|
+
elementValuePattern?: string;
|
|
10045
|
+
|
|
10033
10046
|
decoratorNamePattern?: string;
|
|
10034
10047
|
}[];
|
|
10035
10048
|
}
|
|
@@ -10070,6 +10083,8 @@ type PerfectionistSortClasses =
|
|
|
10070
10083
|
|
|
10071
10084
|
elementNamePattern?: string;
|
|
10072
10085
|
|
|
10086
|
+
elementValuePattern?: string;
|
|
10087
|
+
|
|
10073
10088
|
decoratorNamePattern?: string;
|
|
10074
10089
|
}
|
|
10075
10090
|
)[];
|
|
@@ -10088,6 +10103,8 @@ type PerfectionistSortEnums =
|
|
|
10088
10103
|
|
|
10089
10104
|
ignoreCase?: boolean;
|
|
10090
10105
|
|
|
10106
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10107
|
+
|
|
10091
10108
|
sortByValue?: boolean;
|
|
10092
10109
|
|
|
10093
10110
|
forceNumericSort?: boolean;
|
|
@@ -10110,6 +10127,8 @@ type PerfectionistSortExports =
|
|
|
10110
10127
|
|
|
10111
10128
|
ignoreCase?: boolean;
|
|
10112
10129
|
|
|
10130
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10131
|
+
|
|
10113
10132
|
partitionByComment?: string[] | boolean | string;
|
|
10114
10133
|
|
|
10115
10134
|
partitionByNewLine?: boolean;
|
|
@@ -10129,6 +10148,8 @@ type _PerfectionistSortImportsSortImports =
|
|
|
10129
10148
|
|
|
10130
10149
|
ignoreCase?: boolean;
|
|
10131
10150
|
|
|
10151
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10152
|
+
|
|
10132
10153
|
internalPattern?: string[];
|
|
10133
10154
|
|
|
10134
10155
|
sortSideEffects?: boolean;
|
|
@@ -10172,6 +10193,8 @@ type PerfectionistSortInterfaces =
|
|
|
10172
10193
|
|
|
10173
10194
|
ignoreCase?: boolean;
|
|
10174
10195
|
|
|
10196
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10197
|
+
|
|
10175
10198
|
ignorePattern?: string[];
|
|
10176
10199
|
|
|
10177
10200
|
partitionByComment?: boolean | string | string[];
|
|
@@ -10200,6 +10223,8 @@ type PerfectionistSortIntersectionTypes =
|
|
|
10200
10223
|
|
|
10201
10224
|
ignoreCase?: boolean;
|
|
10202
10225
|
|
|
10226
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10227
|
+
|
|
10203
10228
|
groups?: (string | string[])[];
|
|
10204
10229
|
|
|
10205
10230
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -10220,6 +10245,8 @@ type PerfectionistSortJsxProps =
|
|
|
10220
10245
|
|
|
10221
10246
|
ignoreCase?: boolean;
|
|
10222
10247
|
|
|
10248
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10249
|
+
|
|
10223
10250
|
ignorePattern?: string[];
|
|
10224
10251
|
|
|
10225
10252
|
groups?: (string | string[])[];
|
|
@@ -10242,6 +10269,8 @@ type PerfectionistSortMaps =
|
|
|
10242
10269
|
|
|
10243
10270
|
ignoreCase?: boolean;
|
|
10244
10271
|
|
|
10272
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10273
|
+
|
|
10245
10274
|
partitionByComment?: string[] | boolean | string;
|
|
10246
10275
|
|
|
10247
10276
|
partitionByNewLine?: boolean;
|
|
@@ -10260,6 +10289,8 @@ type PerfectionistSortNamedExports =
|
|
|
10260
10289
|
|
|
10261
10290
|
ignoreCase?: boolean;
|
|
10262
10291
|
|
|
10292
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10293
|
+
|
|
10263
10294
|
groupKind?: "mixed" | "values-first" | "types-first";
|
|
10264
10295
|
|
|
10265
10296
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -10280,6 +10311,8 @@ type PerfectionistSortNamedImports =
|
|
|
10280
10311
|
|
|
10281
10312
|
ignoreCase?: boolean;
|
|
10282
10313
|
|
|
10314
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10315
|
+
|
|
10283
10316
|
ignoreAlias?: boolean;
|
|
10284
10317
|
|
|
10285
10318
|
groupKind?: "mixed" | "values-first" | "types-first";
|
|
@@ -10302,6 +10335,8 @@ type PerfectionistSortObjectTypes =
|
|
|
10302
10335
|
|
|
10303
10336
|
ignoreCase?: boolean;
|
|
10304
10337
|
|
|
10338
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10339
|
+
|
|
10305
10340
|
partitionByComment?: string[] | boolean | string;
|
|
10306
10341
|
|
|
10307
10342
|
partitionByNewLine?: boolean;
|
|
@@ -10328,6 +10363,8 @@ type PerfectionistSortObjects =
|
|
|
10328
10363
|
|
|
10329
10364
|
ignoreCase?: boolean;
|
|
10330
10365
|
|
|
10366
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10367
|
+
|
|
10331
10368
|
partitionByComment?: string[] | boolean | string;
|
|
10332
10369
|
|
|
10333
10370
|
partitionByNewLine?: boolean;
|
|
@@ -10358,6 +10395,8 @@ type PerfectionistSortSets =
|
|
|
10358
10395
|
|
|
10359
10396
|
ignoreCase?: boolean;
|
|
10360
10397
|
|
|
10398
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10399
|
+
|
|
10361
10400
|
groupKind?: "mixed" | "literals-first" | "spreads-first";
|
|
10362
10401
|
|
|
10363
10402
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -10378,6 +10417,8 @@ type PerfectionistSortSvelteAttributes =
|
|
|
10378
10417
|
|
|
10379
10418
|
ignoreCase?: boolean;
|
|
10380
10419
|
|
|
10420
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10421
|
+
|
|
10381
10422
|
groups?: (string | string[])[];
|
|
10382
10423
|
|
|
10383
10424
|
customGroups?: {
|
|
@@ -10395,6 +10436,8 @@ type PerfectionistSortSwitchCase =
|
|
|
10395
10436
|
order?: "asc" | "desc";
|
|
10396
10437
|
|
|
10397
10438
|
ignoreCase?: boolean;
|
|
10439
|
+
|
|
10440
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10398
10441
|
},
|
|
10399
10442
|
];
|
|
10400
10443
|
// ----- perfectionist/sort-union-types -----
|
|
@@ -10410,6 +10453,8 @@ type PerfectionistSortUnionTypes =
|
|
|
10410
10453
|
|
|
10411
10454
|
ignoreCase?: boolean;
|
|
10412
10455
|
|
|
10456
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10457
|
+
|
|
10413
10458
|
groups?: (string | string[])[];
|
|
10414
10459
|
|
|
10415
10460
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -10430,6 +10475,8 @@ type PerfectionistSortVariableDeclarations =
|
|
|
10430
10475
|
|
|
10431
10476
|
ignoreCase?: boolean;
|
|
10432
10477
|
|
|
10478
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10479
|
+
|
|
10433
10480
|
partitionByComment?: string[] | boolean | string;
|
|
10434
10481
|
|
|
10435
10482
|
partitionByNewLine?: boolean;
|
|
@@ -10448,6 +10495,8 @@ type PerfectionistSortVueAttributes =
|
|
|
10448
10495
|
|
|
10449
10496
|
ignoreCase?: boolean;
|
|
10450
10497
|
|
|
10498
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10499
|
+
|
|
10451
10500
|
groups?: (string | string[])[];
|
|
10452
10501
|
|
|
10453
10502
|
customGroups?: {
|
|
@@ -15088,7 +15137,7 @@ interface TypescriptRuleOptions {
|
|
|
15088
15137
|
*/
|
|
15089
15138
|
"@typescript-eslint/no-array-delete"?: Linter.RuleEntry<[]>;
|
|
15090
15139
|
/**
|
|
15091
|
-
* Require `.toString()` to only be called on objects which provide useful information when stringified
|
|
15140
|
+
* Require `.toString()` and `.toLocaleString()` to only be called on objects which provide useful information when stringified
|
|
15092
15141
|
* @see https://typescript-eslint.io/rules/no-base-to-string
|
|
15093
15142
|
*/
|
|
15094
15143
|
"@typescript-eslint/no-base-to-string"?: Linter.RuleEntry<TypescriptEslintNoBaseToString>;
|
|
@@ -16000,6 +16049,7 @@ type TypescriptEslintExplicitMemberAccessibility =
|
|
|
16000
16049
|
accessibility?: "explicit" | "no-public" | "off";
|
|
16001
16050
|
|
|
16002
16051
|
ignoredMethodNames?: string[];
|
|
16052
|
+
|
|
16003
16053
|
overrides?: {
|
|
16004
16054
|
accessors?: "explicit" | "no-public" | "off";
|
|
16005
16055
|
constructors?: "explicit" | "no-public" | "off";
|
|
@@ -18787,6 +18837,7 @@ type TypescriptEslintNoMisusedPromises =
|
|
|
18787
18837
|
checksConditionals?: boolean;
|
|
18788
18838
|
|
|
18789
18839
|
checksSpreads?: boolean;
|
|
18840
|
+
|
|
18790
18841
|
checksVoidReturn?:
|
|
18791
18842
|
| boolean
|
|
18792
18843
|
| {
|
|
@@ -19134,6 +19185,7 @@ type TypescriptEslintPreferDestructuring =
|
|
|
19134
19185
|
),
|
|
19135
19186
|
{
|
|
19136
19187
|
enforceForDeclarationWithTypeAnnotation?: boolean;
|
|
19188
|
+
|
|
19137
19189
|
enforceForRenamedProperties?: boolean;
|
|
19138
19190
|
[k: string]: unknown | undefined;
|
|
19139
19191
|
},
|
|
@@ -19160,8 +19212,11 @@ type TypescriptEslintPreferNullishCoalescing =
|
|
|
19160
19212
|
ignorePrimitives?:
|
|
19161
19213
|
| {
|
|
19162
19214
|
bigint?: boolean;
|
|
19215
|
+
|
|
19163
19216
|
boolean?: boolean;
|
|
19217
|
+
|
|
19164
19218
|
number?: boolean;
|
|
19219
|
+
|
|
19165
19220
|
string?: boolean;
|
|
19166
19221
|
[k: string]: unknown | undefined;
|
|
19167
19222
|
}
|
|
@@ -19385,6 +19440,7 @@ type TypescriptEslintStrictBooleanExpressions =
|
|
|
19385
19440
|
allowNullableString?: boolean;
|
|
19386
19441
|
|
|
19387
19442
|
allowNumber?: boolean;
|
|
19443
|
+
|
|
19388
19444
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
|
|
19389
19445
|
|
|
19390
19446
|
allowString?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -5165,6 +5165,7 @@ interface JsdocRuleOptions {
|
|
|
5165
5165
|
*/
|
|
5166
5166
|
"jsdoc/no-missing-syntax"?: Linter.RuleEntry<JsdocNoMissingSyntax>;
|
|
5167
5167
|
/**
|
|
5168
|
+
* Prevents use of multiple asterisks at the beginning of lines.
|
|
5168
5169
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-multi-asterisks.md#repos-sticky-header
|
|
5169
5170
|
*/
|
|
5170
5171
|
"jsdoc/no-multi-asterisks"?: Linter.RuleEntry<JsdocNoMultiAsterisks>;
|
|
@@ -5309,6 +5310,7 @@ interface JsdocRuleOptions {
|
|
|
5309
5310
|
*/
|
|
5310
5311
|
"jsdoc/tag-lines"?: Linter.RuleEntry<JsdocTagLines>;
|
|
5311
5312
|
/**
|
|
5313
|
+
* Auto-escape certain characters that are input within block and tag descriptions.
|
|
5312
5314
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/text-escaping.md#repos-sticky-header
|
|
5313
5315
|
*/
|
|
5314
5316
|
"jsdoc/text-escaping"?: Linter.RuleEntry<JsdocTextEscaping>;
|
|
@@ -9836,6 +9838,7 @@ interface PerfectionistRuleOptions {
|
|
|
9836
9838
|
/**
|
|
9837
9839
|
* Enforce sorted Astro attributes.
|
|
9838
9840
|
* @see https://perfectionist.dev/rules/sort-astro-attributes
|
|
9841
|
+
* @deprecated
|
|
9839
9842
|
*/
|
|
9840
9843
|
"perfectionist/sort-astro-attributes"?: Linter.RuleEntry<PerfectionistSortAstroAttributes>;
|
|
9841
9844
|
/**
|
|
@@ -9906,6 +9909,7 @@ interface PerfectionistRuleOptions {
|
|
|
9906
9909
|
/**
|
|
9907
9910
|
* Enforce sorted Svelte attributes.
|
|
9908
9911
|
* @see https://perfectionist.dev/rules/sort-svelte-attributes
|
|
9912
|
+
* @deprecated
|
|
9909
9913
|
*/
|
|
9910
9914
|
"perfectionist/sort-svelte-attributes"?: Linter.RuleEntry<PerfectionistSortSvelteAttributes>;
|
|
9911
9915
|
/**
|
|
@@ -9926,6 +9930,7 @@ interface PerfectionistRuleOptions {
|
|
|
9926
9930
|
/**
|
|
9927
9931
|
* Enforce sorted Vue attributes.
|
|
9928
9932
|
* @see https://perfectionist.dev/rules/sort-vue-attributes
|
|
9933
|
+
* @deprecated
|
|
9929
9934
|
*/
|
|
9930
9935
|
"perfectionist/sort-vue-attributes"?: Linter.RuleEntry<PerfectionistSortVueAttributes>;
|
|
9931
9936
|
}
|
|
@@ -9944,6 +9949,8 @@ type PerfectionistSortArrayIncludes =
|
|
|
9944
9949
|
|
|
9945
9950
|
ignoreCase?: boolean;
|
|
9946
9951
|
|
|
9952
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
9953
|
+
|
|
9947
9954
|
groupKind?: "mixed" | "literals-first" | "spreads-first";
|
|
9948
9955
|
|
|
9949
9956
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -9964,6 +9971,8 @@ type PerfectionistSortAstroAttributes =
|
|
|
9964
9971
|
|
|
9965
9972
|
ignoreCase?: boolean;
|
|
9966
9973
|
|
|
9974
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
9975
|
+
|
|
9967
9976
|
groups?: (string | string[])[];
|
|
9968
9977
|
|
|
9969
9978
|
customGroups?: {
|
|
@@ -9984,6 +9993,8 @@ type PerfectionistSortClasses =
|
|
|
9984
9993
|
|
|
9985
9994
|
ignoreCase?: boolean;
|
|
9986
9995
|
|
|
9996
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
9997
|
+
|
|
9987
9998
|
partitionByComment?: string[] | boolean | string;
|
|
9988
9999
|
|
|
9989
10000
|
groups?: (string | string[])[];
|
|
@@ -10030,6 +10041,8 @@ type PerfectionistSortClasses =
|
|
|
10030
10041
|
|
|
10031
10042
|
elementNamePattern?: string;
|
|
10032
10043
|
|
|
10044
|
+
elementValuePattern?: string;
|
|
10045
|
+
|
|
10033
10046
|
decoratorNamePattern?: string;
|
|
10034
10047
|
}[];
|
|
10035
10048
|
}
|
|
@@ -10070,6 +10083,8 @@ type PerfectionistSortClasses =
|
|
|
10070
10083
|
|
|
10071
10084
|
elementNamePattern?: string;
|
|
10072
10085
|
|
|
10086
|
+
elementValuePattern?: string;
|
|
10087
|
+
|
|
10073
10088
|
decoratorNamePattern?: string;
|
|
10074
10089
|
}
|
|
10075
10090
|
)[];
|
|
@@ -10088,6 +10103,8 @@ type PerfectionistSortEnums =
|
|
|
10088
10103
|
|
|
10089
10104
|
ignoreCase?: boolean;
|
|
10090
10105
|
|
|
10106
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10107
|
+
|
|
10091
10108
|
sortByValue?: boolean;
|
|
10092
10109
|
|
|
10093
10110
|
forceNumericSort?: boolean;
|
|
@@ -10110,6 +10127,8 @@ type PerfectionistSortExports =
|
|
|
10110
10127
|
|
|
10111
10128
|
ignoreCase?: boolean;
|
|
10112
10129
|
|
|
10130
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10131
|
+
|
|
10113
10132
|
partitionByComment?: string[] | boolean | string;
|
|
10114
10133
|
|
|
10115
10134
|
partitionByNewLine?: boolean;
|
|
@@ -10129,6 +10148,8 @@ type _PerfectionistSortImportsSortImports =
|
|
|
10129
10148
|
|
|
10130
10149
|
ignoreCase?: boolean;
|
|
10131
10150
|
|
|
10151
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10152
|
+
|
|
10132
10153
|
internalPattern?: string[];
|
|
10133
10154
|
|
|
10134
10155
|
sortSideEffects?: boolean;
|
|
@@ -10172,6 +10193,8 @@ type PerfectionistSortInterfaces =
|
|
|
10172
10193
|
|
|
10173
10194
|
ignoreCase?: boolean;
|
|
10174
10195
|
|
|
10196
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10197
|
+
|
|
10175
10198
|
ignorePattern?: string[];
|
|
10176
10199
|
|
|
10177
10200
|
partitionByComment?: boolean | string | string[];
|
|
@@ -10200,6 +10223,8 @@ type PerfectionistSortIntersectionTypes =
|
|
|
10200
10223
|
|
|
10201
10224
|
ignoreCase?: boolean;
|
|
10202
10225
|
|
|
10226
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10227
|
+
|
|
10203
10228
|
groups?: (string | string[])[];
|
|
10204
10229
|
|
|
10205
10230
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -10220,6 +10245,8 @@ type PerfectionistSortJsxProps =
|
|
|
10220
10245
|
|
|
10221
10246
|
ignoreCase?: boolean;
|
|
10222
10247
|
|
|
10248
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10249
|
+
|
|
10223
10250
|
ignorePattern?: string[];
|
|
10224
10251
|
|
|
10225
10252
|
groups?: (string | string[])[];
|
|
@@ -10242,6 +10269,8 @@ type PerfectionistSortMaps =
|
|
|
10242
10269
|
|
|
10243
10270
|
ignoreCase?: boolean;
|
|
10244
10271
|
|
|
10272
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10273
|
+
|
|
10245
10274
|
partitionByComment?: string[] | boolean | string;
|
|
10246
10275
|
|
|
10247
10276
|
partitionByNewLine?: boolean;
|
|
@@ -10260,6 +10289,8 @@ type PerfectionistSortNamedExports =
|
|
|
10260
10289
|
|
|
10261
10290
|
ignoreCase?: boolean;
|
|
10262
10291
|
|
|
10292
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10293
|
+
|
|
10263
10294
|
groupKind?: "mixed" | "values-first" | "types-first";
|
|
10264
10295
|
|
|
10265
10296
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -10280,6 +10311,8 @@ type PerfectionistSortNamedImports =
|
|
|
10280
10311
|
|
|
10281
10312
|
ignoreCase?: boolean;
|
|
10282
10313
|
|
|
10314
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10315
|
+
|
|
10283
10316
|
ignoreAlias?: boolean;
|
|
10284
10317
|
|
|
10285
10318
|
groupKind?: "mixed" | "values-first" | "types-first";
|
|
@@ -10302,6 +10335,8 @@ type PerfectionistSortObjectTypes =
|
|
|
10302
10335
|
|
|
10303
10336
|
ignoreCase?: boolean;
|
|
10304
10337
|
|
|
10338
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10339
|
+
|
|
10305
10340
|
partitionByComment?: string[] | boolean | string;
|
|
10306
10341
|
|
|
10307
10342
|
partitionByNewLine?: boolean;
|
|
@@ -10328,6 +10363,8 @@ type PerfectionistSortObjects =
|
|
|
10328
10363
|
|
|
10329
10364
|
ignoreCase?: boolean;
|
|
10330
10365
|
|
|
10366
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10367
|
+
|
|
10331
10368
|
partitionByComment?: string[] | boolean | string;
|
|
10332
10369
|
|
|
10333
10370
|
partitionByNewLine?: boolean;
|
|
@@ -10358,6 +10395,8 @@ type PerfectionistSortSets =
|
|
|
10358
10395
|
|
|
10359
10396
|
ignoreCase?: boolean;
|
|
10360
10397
|
|
|
10398
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10399
|
+
|
|
10361
10400
|
groupKind?: "mixed" | "literals-first" | "spreads-first";
|
|
10362
10401
|
|
|
10363
10402
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -10378,6 +10417,8 @@ type PerfectionistSortSvelteAttributes =
|
|
|
10378
10417
|
|
|
10379
10418
|
ignoreCase?: boolean;
|
|
10380
10419
|
|
|
10420
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10421
|
+
|
|
10381
10422
|
groups?: (string | string[])[];
|
|
10382
10423
|
|
|
10383
10424
|
customGroups?: {
|
|
@@ -10395,6 +10436,8 @@ type PerfectionistSortSwitchCase =
|
|
|
10395
10436
|
order?: "asc" | "desc";
|
|
10396
10437
|
|
|
10397
10438
|
ignoreCase?: boolean;
|
|
10439
|
+
|
|
10440
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10398
10441
|
},
|
|
10399
10442
|
];
|
|
10400
10443
|
// ----- perfectionist/sort-union-types -----
|
|
@@ -10410,6 +10453,8 @@ type PerfectionistSortUnionTypes =
|
|
|
10410
10453
|
|
|
10411
10454
|
ignoreCase?: boolean;
|
|
10412
10455
|
|
|
10456
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10457
|
+
|
|
10413
10458
|
groups?: (string | string[])[];
|
|
10414
10459
|
|
|
10415
10460
|
partitionByComment?: string[] | boolean | string;
|
|
@@ -10430,6 +10475,8 @@ type PerfectionistSortVariableDeclarations =
|
|
|
10430
10475
|
|
|
10431
10476
|
ignoreCase?: boolean;
|
|
10432
10477
|
|
|
10478
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10479
|
+
|
|
10433
10480
|
partitionByComment?: string[] | boolean | string;
|
|
10434
10481
|
|
|
10435
10482
|
partitionByNewLine?: boolean;
|
|
@@ -10448,6 +10495,8 @@ type PerfectionistSortVueAttributes =
|
|
|
10448
10495
|
|
|
10449
10496
|
ignoreCase?: boolean;
|
|
10450
10497
|
|
|
10498
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
10499
|
+
|
|
10451
10500
|
groups?: (string | string[])[];
|
|
10452
10501
|
|
|
10453
10502
|
customGroups?: {
|
|
@@ -15088,7 +15137,7 @@ interface TypescriptRuleOptions {
|
|
|
15088
15137
|
*/
|
|
15089
15138
|
"@typescript-eslint/no-array-delete"?: Linter.RuleEntry<[]>;
|
|
15090
15139
|
/**
|
|
15091
|
-
* Require `.toString()` to only be called on objects which provide useful information when stringified
|
|
15140
|
+
* Require `.toString()` and `.toLocaleString()` to only be called on objects which provide useful information when stringified
|
|
15092
15141
|
* @see https://typescript-eslint.io/rules/no-base-to-string
|
|
15093
15142
|
*/
|
|
15094
15143
|
"@typescript-eslint/no-base-to-string"?: Linter.RuleEntry<TypescriptEslintNoBaseToString>;
|
|
@@ -16000,6 +16049,7 @@ type TypescriptEslintExplicitMemberAccessibility =
|
|
|
16000
16049
|
accessibility?: "explicit" | "no-public" | "off";
|
|
16001
16050
|
|
|
16002
16051
|
ignoredMethodNames?: string[];
|
|
16052
|
+
|
|
16003
16053
|
overrides?: {
|
|
16004
16054
|
accessors?: "explicit" | "no-public" | "off";
|
|
16005
16055
|
constructors?: "explicit" | "no-public" | "off";
|
|
@@ -18787,6 +18837,7 @@ type TypescriptEslintNoMisusedPromises =
|
|
|
18787
18837
|
checksConditionals?: boolean;
|
|
18788
18838
|
|
|
18789
18839
|
checksSpreads?: boolean;
|
|
18840
|
+
|
|
18790
18841
|
checksVoidReturn?:
|
|
18791
18842
|
| boolean
|
|
18792
18843
|
| {
|
|
@@ -19134,6 +19185,7 @@ type TypescriptEslintPreferDestructuring =
|
|
|
19134
19185
|
),
|
|
19135
19186
|
{
|
|
19136
19187
|
enforceForDeclarationWithTypeAnnotation?: boolean;
|
|
19188
|
+
|
|
19137
19189
|
enforceForRenamedProperties?: boolean;
|
|
19138
19190
|
[k: string]: unknown | undefined;
|
|
19139
19191
|
},
|
|
@@ -19160,8 +19212,11 @@ type TypescriptEslintPreferNullishCoalescing =
|
|
|
19160
19212
|
ignorePrimitives?:
|
|
19161
19213
|
| {
|
|
19162
19214
|
bigint?: boolean;
|
|
19215
|
+
|
|
19163
19216
|
boolean?: boolean;
|
|
19217
|
+
|
|
19164
19218
|
number?: boolean;
|
|
19219
|
+
|
|
19165
19220
|
string?: boolean;
|
|
19166
19221
|
[k: string]: unknown | undefined;
|
|
19167
19222
|
}
|
|
@@ -19385,6 +19440,7 @@ type TypescriptEslintStrictBooleanExpressions =
|
|
|
19385
19440
|
allowNullableString?: boolean;
|
|
19386
19441
|
|
|
19387
19442
|
allowNumber?: boolean;
|
|
19443
|
+
|
|
19388
19444
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
|
|
19389
19445
|
|
|
19390
19446
|
allowString?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsse/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.23",
|
|
5
5
|
"description": "@jsse/eslint-config ~ WYSIWYG",
|
|
6
6
|
"author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -66,26 +66,26 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
|
|
69
|
-
"@eslint/compat": "^1.2.
|
|
70
|
-
"@eslint/js": "~9.
|
|
71
|
-
"@eslint/markdown": "^6.2.
|
|
69
|
+
"@eslint/compat": "^1.2.1",
|
|
70
|
+
"@eslint/js": "~9.13.0",
|
|
71
|
+
"@eslint/markdown": "^6.2.1",
|
|
72
72
|
"@stylistic/eslint-plugin": "2.9.0",
|
|
73
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
74
|
-
"@typescript-eslint/parser": "^8.
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
74
|
+
"@typescript-eslint/parser": "^8.11.0",
|
|
75
75
|
"@vitest/eslint-plugin": "^1.1.7",
|
|
76
76
|
"eslint-config-flat-gitignore": "^0.3.0",
|
|
77
77
|
"eslint-define-config": "^2.1.0",
|
|
78
78
|
"eslint-merge-processors": "^0.1.0",
|
|
79
79
|
"eslint-plugin-antfu": "^2.7.0",
|
|
80
80
|
"eslint-plugin-import-x": "^4.3.1",
|
|
81
|
-
"eslint-plugin-jsdoc": "^50.4.
|
|
81
|
+
"eslint-plugin-jsdoc": "^50.4.3",
|
|
82
82
|
"eslint-plugin-jsonc": "^2.16.0",
|
|
83
83
|
"eslint-plugin-n": "^17.11.1",
|
|
84
84
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
85
|
-
"eslint-plugin-perfectionist": "^3.
|
|
85
|
+
"eslint-plugin-perfectionist": "^3.9.1",
|
|
86
86
|
"eslint-plugin-react": "~7.37.1",
|
|
87
87
|
"eslint-plugin-react-hooks": "~5.0.0",
|
|
88
|
-
"eslint-plugin-react-refresh": "~0.4.
|
|
88
|
+
"eslint-plugin-react-refresh": "~0.4.13",
|
|
89
89
|
"eslint-plugin-toml": "^0.11.1",
|
|
90
90
|
"eslint-plugin-tsdoc": "^0.3.0",
|
|
91
91
|
"eslint-plugin-unicorn": "^56.0.0",
|
|
@@ -93,11 +93,11 @@
|
|
|
93
93
|
"eslint-plugin-yml": "^1.14.0",
|
|
94
94
|
"jsonc-eslint-parser": "^2.4.0",
|
|
95
95
|
"toml-eslint-parser": "^0.10.0",
|
|
96
|
-
"typescript-eslint": "^8.
|
|
96
|
+
"typescript-eslint": "^8.11.0",
|
|
97
97
|
"yaml-eslint-parser": "^1.2.3"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@biomejs/biome": "1.9.
|
|
100
|
+
"@biomejs/biome": "1.9.4",
|
|
101
101
|
"@changesets/cli": "^2.27.9",
|
|
102
102
|
"@jsse/prettier-config": "^0.1.0",
|
|
103
103
|
"@jsse/tsconfig": "^0.2.2",
|
|
@@ -105,19 +105,19 @@
|
|
|
105
105
|
"@types/eslint": "^9.6.1",
|
|
106
106
|
"@types/eslint__js": "~8.42.3",
|
|
107
107
|
"@types/fs-extra": "^11.0.4",
|
|
108
|
-
"@types/node": "^22.7.
|
|
108
|
+
"@types/node": "^22.7.7",
|
|
109
109
|
"cac": "^6.7.14",
|
|
110
|
-
"eslint": "^9.
|
|
110
|
+
"eslint": "^9.13.0",
|
|
111
111
|
"eslint-flat-config-utils": "^0.4.0",
|
|
112
112
|
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
113
113
|
"eslint-typegen": "^0.3.2",
|
|
114
|
-
"execa": "~9.4.
|
|
114
|
+
"execa": "~9.4.1",
|
|
115
115
|
"fast-glob": "^3.3.2",
|
|
116
116
|
"fs-extra": "^11.2.0",
|
|
117
117
|
"globals": "^15.11.0",
|
|
118
118
|
"local-pkg": "^0.5.0",
|
|
119
119
|
"neverthrow": "^8.0.0",
|
|
120
|
-
"picocolors": "^1.1.
|
|
120
|
+
"picocolors": "^1.1.1",
|
|
121
121
|
"prettier": "^3.3.3",
|
|
122
122
|
"react": "~18.3.1",
|
|
123
123
|
"rimraf": "^6.0.1",
|