@kitschpatrol/eslint-config 5.12.0 → 5.13.0
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/bin/cli.js +1 -1
- package/dist/index.d.ts +22 -0
- package/init/.vscode/settings.json +3 -3
- package/package.json +15 -15
package/bin/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -9796,6 +9796,8 @@ type JsdocTypeFormatting =
|
|
|
9796
9796
|
|
|
9797
9797
|
objectFieldSeparatorTrailingPunctuation?: boolean
|
|
9798
9798
|
|
|
9799
|
+
objectTypeBracketSpacing?: string
|
|
9800
|
+
|
|
9799
9801
|
parameterDefaultValueSpacing?: string
|
|
9800
9802
|
|
|
9801
9803
|
postMethodNameSpacing?: string
|
|
@@ -9806,6 +9808,8 @@ type JsdocTypeFormatting =
|
|
|
9806
9808
|
|
|
9807
9809
|
stringQuotes?: 'double' | 'single'
|
|
9808
9810
|
|
|
9811
|
+
trailingPunctuationMultilineOnly?: boolean
|
|
9812
|
+
|
|
9809
9813
|
typeBracketSpacing?: string
|
|
9810
9814
|
|
|
9811
9815
|
unionSpacing?: string
|
|
@@ -16880,6 +16884,8 @@ type PerfectionistSortEnums =
|
|
|
16880
16884
|
|
|
16881
16885
|
sortByValue?: 'always' | 'ifNumericEnum' | 'never'
|
|
16882
16886
|
|
|
16887
|
+
useExperimentalDependencyDetection?: boolean
|
|
16888
|
+
|
|
16883
16889
|
partitionByComment?:
|
|
16884
16890
|
| boolean
|
|
16885
16891
|
| (
|
|
@@ -18134,6 +18140,8 @@ type PerfectionistSortImports = {
|
|
|
18134
18140
|
|
|
18135
18141
|
environment?: 'node' | 'bun'
|
|
18136
18142
|
|
|
18143
|
+
useExperimentalDependencyDetection?: boolean
|
|
18144
|
+
|
|
18137
18145
|
partitionByComment?:
|
|
18138
18146
|
| boolean
|
|
18139
18147
|
| (
|
|
@@ -19601,6 +19609,8 @@ type PerfectionistSortModules =
|
|
|
19601
19609
|
)[]
|
|
19602
19610
|
newlinesBetween?: 'ignore' | number
|
|
19603
19611
|
|
|
19612
|
+
useExperimentalDependencyDetection?: boolean
|
|
19613
|
+
|
|
19604
19614
|
partitionByComment?:
|
|
19605
19615
|
| boolean
|
|
19606
19616
|
| (
|
|
@@ -20502,6 +20512,7 @@ type PerfectionistSortObjects = {
|
|
|
20502
20512
|
type: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order'
|
|
20503
20513
|
|
|
20504
20514
|
order?: 'asc' | 'desc'
|
|
20515
|
+
sortBy?: 'name' | 'value'
|
|
20505
20516
|
}
|
|
20506
20517
|
|
|
20507
20518
|
type?: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order'
|
|
@@ -20515,6 +20526,7 @@ type PerfectionistSortObjects = {
|
|
|
20515
20526
|
locales?: string | string[]
|
|
20516
20527
|
|
|
20517
20528
|
order?: 'asc' | 'desc'
|
|
20529
|
+
sortBy?: 'name' | 'value'
|
|
20518
20530
|
|
|
20519
20531
|
customGroups?: (
|
|
20520
20532
|
| {
|
|
@@ -20528,6 +20540,7 @@ type PerfectionistSortObjects = {
|
|
|
20528
20540
|
| 'subgroup-order'
|
|
20529
20541
|
|
|
20530
20542
|
order?: 'asc' | 'desc'
|
|
20543
|
+
sortBy?: 'name' | 'value'
|
|
20531
20544
|
}
|
|
20532
20545
|
|
|
20533
20546
|
type?: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order'
|
|
@@ -20536,6 +20549,7 @@ type PerfectionistSortObjects = {
|
|
|
20536
20549
|
newlinesInside?: 'ignore' | number
|
|
20537
20550
|
|
|
20538
20551
|
order?: 'asc' | 'desc'
|
|
20552
|
+
sortBy?: 'name' | 'value'
|
|
20539
20553
|
|
|
20540
20554
|
anyOf: [
|
|
20541
20555
|
{
|
|
@@ -20633,6 +20647,7 @@ type PerfectionistSortObjects = {
|
|
|
20633
20647
|
| 'subgroup-order'
|
|
20634
20648
|
|
|
20635
20649
|
order?: 'asc' | 'desc'
|
|
20650
|
+
sortBy?: 'name' | 'value'
|
|
20636
20651
|
}
|
|
20637
20652
|
|
|
20638
20653
|
type?: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order'
|
|
@@ -20641,6 +20656,7 @@ type PerfectionistSortObjects = {
|
|
|
20641
20656
|
newlinesInside?: 'ignore' | number
|
|
20642
20657
|
|
|
20643
20658
|
order?: 'asc' | 'desc'
|
|
20659
|
+
sortBy?: 'name' | 'value'
|
|
20644
20660
|
|
|
20645
20661
|
elementNamePattern?:
|
|
20646
20662
|
| (
|
|
@@ -20704,6 +20720,7 @@ type PerfectionistSortObjects = {
|
|
|
20704
20720
|
| 'subgroup-order'
|
|
20705
20721
|
|
|
20706
20722
|
order?: 'asc' | 'desc'
|
|
20723
|
+
sortBy?: 'name' | 'value'
|
|
20707
20724
|
}
|
|
20708
20725
|
|
|
20709
20726
|
commentAbove?: string
|
|
@@ -20712,6 +20729,7 @@ type PerfectionistSortObjects = {
|
|
|
20712
20729
|
newlinesInside?: 'ignore' | number
|
|
20713
20730
|
|
|
20714
20731
|
order?: 'asc' | 'desc'
|
|
20732
|
+
sortBy?: 'name' | 'value'
|
|
20715
20733
|
}
|
|
20716
20734
|
)[]
|
|
20717
20735
|
newlinesBetween?: 'ignore' | number
|
|
@@ -20808,6 +20826,8 @@ type PerfectionistSortObjects = {
|
|
|
20808
20826
|
|
|
20809
20827
|
styledComponents?: boolean
|
|
20810
20828
|
|
|
20829
|
+
useExperimentalDependencyDetection?: boolean
|
|
20830
|
+
|
|
20811
20831
|
partitionByComment?:
|
|
20812
20832
|
| boolean
|
|
20813
20833
|
| (
|
|
@@ -21599,6 +21619,8 @@ type PerfectionistSortVariableDeclarations =
|
|
|
21599
21619
|
)[]
|
|
21600
21620
|
newlinesBetween?: 'ignore' | number
|
|
21601
21621
|
|
|
21622
|
+
useExperimentalDependencyDetection?: boolean
|
|
21623
|
+
|
|
21602
21624
|
partitionByComment?:
|
|
21603
21625
|
| boolean
|
|
21604
21626
|
| (
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
},
|
|
6
6
|
"eslint.enable": true,
|
|
7
7
|
"eslint.runtime": "node",
|
|
8
|
+
"eslint.useFlatConfig": true,
|
|
8
9
|
"eslint.validate": [
|
|
9
10
|
"astro",
|
|
10
11
|
"html",
|
|
@@ -22,7 +23,6 @@
|
|
|
22
23
|
"xml",
|
|
23
24
|
"yaml"
|
|
24
25
|
],
|
|
25
|
-
"
|
|
26
|
-
"typescript.tsdk": "node_modules/typescript/lib"
|
|
27
|
-
"typescript.enablePromptUseWorkspaceTsdk": true
|
|
26
|
+
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
27
|
+
"typescript.tsdk": "node_modules/typescript/lib"
|
|
28
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/eslint-config",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.13.0",
|
|
4
4
|
"description": "ESLint configuration for @kitschpatrol/shared-config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shared-config",
|
|
@@ -47,40 +47,40 @@
|
|
|
47
47
|
"@html-eslint/eslint-plugin": "^0.53.0",
|
|
48
48
|
"@html-eslint/parser": "^0.53.0",
|
|
49
49
|
"@pinojs/json-colorizer": "^4.0.0",
|
|
50
|
-
"@typescript-eslint/eslint-plugin": "^8.53.
|
|
51
|
-
"@typescript-eslint/parser": "^8.53.
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
51
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
52
52
|
"@vitest/eslint-plugin": "^1.6.6",
|
|
53
53
|
"astro-eslint-parser": "^1.2.2",
|
|
54
54
|
"eslint": "^9.39.2",
|
|
55
55
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
56
|
-
"eslint-flat-config-utils": "^
|
|
56
|
+
"eslint-flat-config-utils": "^3.0.0",
|
|
57
57
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
58
58
|
"eslint-mdx": "^3.6.2",
|
|
59
59
|
"eslint-plugin-astro": "^1.5.0",
|
|
60
60
|
"eslint-plugin-depend": "^1.4.0",
|
|
61
|
-
"eslint-plugin-html": "^8.1.
|
|
61
|
+
"eslint-plugin-html": "^8.1.4",
|
|
62
62
|
"eslint-plugin-import-x": "^4.16.1",
|
|
63
|
-
"eslint-plugin-jsdoc": "^62.1
|
|
63
|
+
"eslint-plugin-jsdoc": "^62.4.1",
|
|
64
64
|
"eslint-plugin-jsonc": "^2.21.0",
|
|
65
65
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
66
66
|
"eslint-plugin-mdx": "^3.6.2",
|
|
67
67
|
"eslint-plugin-n": "^17.23.2",
|
|
68
68
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
69
|
-
"eslint-plugin-package-json": "^0.88.
|
|
70
|
-
"eslint-plugin-perfectionist": "^5.
|
|
71
|
-
"eslint-plugin-regexp": "^
|
|
69
|
+
"eslint-plugin-package-json": "^0.88.2",
|
|
70
|
+
"eslint-plugin-perfectionist": "^5.4.0",
|
|
71
|
+
"eslint-plugin-regexp": "^3.0.0",
|
|
72
72
|
"eslint-plugin-svelte": "^3.14.0",
|
|
73
|
-
"eslint-plugin-toml": "^1.0.
|
|
73
|
+
"eslint-plugin-toml": "^1.0.3",
|
|
74
74
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
75
|
-
"eslint-plugin-yml": "^
|
|
75
|
+
"eslint-plugin-yml": "^3.0.0",
|
|
76
76
|
"execa": "^9.6.1",
|
|
77
77
|
"find-workspaces": "^0.3.1",
|
|
78
78
|
"fs-extra": "^11.3.3",
|
|
79
|
-
"globals": "^17.
|
|
79
|
+
"globals": "^17.1.0",
|
|
80
80
|
"jsonc-eslint-parser": "^2.4.2",
|
|
81
81
|
"local-pkg": "^1.1.2",
|
|
82
|
-
"prettier": "^3.8.
|
|
83
|
-
"sort-package-json": "^3.6.
|
|
82
|
+
"prettier": "^3.8.1",
|
|
83
|
+
"sort-package-json": "^3.6.1",
|
|
84
84
|
"svelte-eslint-parser": "^1.4.1",
|
|
85
85
|
"to-valid-identifier": "^1.0.0",
|
|
86
86
|
"toml-eslint-parser": "^1.0.3",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"eslint-plugin-de-morgan": "^2.0.0",
|
|
96
96
|
"eslint-typegen": "^2.3.0",
|
|
97
97
|
"globby": "^16.1.0",
|
|
98
|
-
"svelte": "^5.
|
|
98
|
+
"svelte": "^5.48.2",
|
|
99
99
|
"tsup": "^8.5.1"
|
|
100
100
|
},
|
|
101
101
|
"engines": {
|