@kazupon/eslint-config 0.15.0 → 0.17.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/README.md +24 -22
- package/dist/configs/comments.d.cts +1 -1
- package/dist/configs/comments.d.ts +1 -1
- package/dist/configs/imports.d.cts +21 -0
- package/dist/configs/imports.d.ts +21 -0
- package/dist/configs/index.d.cts +16 -15
- package/dist/configs/index.d.ts +16 -15
- package/dist/configs/javascript.d.cts +1 -1
- package/dist/configs/javascript.d.ts +1 -1
- package/dist/configs/jsdoc.d.cts +1 -1
- package/dist/configs/jsdoc.d.ts +1 -1
- package/dist/configs/jsonc.d.cts +1 -1
- package/dist/configs/jsonc.d.ts +1 -1
- package/dist/configs/prettier.d.cts +1 -1
- package/dist/configs/prettier.d.ts +1 -1
- package/dist/configs/promise.d.cts +1 -1
- package/dist/configs/promise.d.ts +1 -1
- package/dist/configs/react.d.cts +2 -2
- package/dist/configs/react.d.ts +2 -2
- package/dist/configs/regexp.d.cts +1 -1
- package/dist/configs/regexp.d.ts +1 -1
- package/dist/configs/svelte.d.cts +2 -2
- package/dist/configs/svelte.d.ts +2 -2
- package/dist/configs/toml.d.cts +1 -1
- package/dist/configs/toml.d.ts +1 -1
- package/dist/configs/typescript.d.cts +1 -1
- package/dist/configs/typescript.d.ts +1 -1
- package/dist/configs/unicorn.d.cts +1 -1
- package/dist/configs/unicorn.d.ts +1 -1
- package/dist/configs/vitest.d.cts +1 -1
- package/dist/configs/vitest.d.ts +1 -1
- package/dist/configs/vue.d.cts +19 -4
- package/dist/configs/vue.d.ts +19 -4
- package/dist/configs/yml.d.cts +1 -1
- package/dist/configs/yml.d.ts +1 -1
- package/dist/index.cjs +265 -182
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +260 -183
- package/dist/types/gens/eslint.d.cts +2 -1
- package/dist/types/gens/eslint.d.ts +2 -1
- package/dist/types/gens/imports.d.cts +519 -0
- package/dist/types/gens/imports.d.ts +519 -0
- package/dist/types/gens/vue.d.cts +281 -0
- package/dist/types/gens/vue.d.ts +281 -0
- package/dist/types/index.d.cts +18 -17
- package/dist/types/index.d.ts +18 -17
- package/dist/types/overrides.d.cts +1 -1
- package/dist/types/overrides.d.ts +1 -1
- package/package.json +32 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kazupon/eslint-config",
|
|
3
3
|
"description": "ESLint config for @kazupon",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.17.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"email": "kawakazu80@gmail.com",
|
|
7
7
|
"name": "kazuya kawaguchi"
|
|
@@ -50,6 +50,8 @@
|
|
|
50
50
|
"@vitest/eslint-plugin": ">=1.0.0",
|
|
51
51
|
"eslint": ">=8.56.0 || >=9.0.0",
|
|
52
52
|
"eslint-config-prettier": ">=9.1.0",
|
|
53
|
+
"eslint-import-resolver-typescript": ">=3.6.0",
|
|
54
|
+
"eslint-plugin-import-x": ">=4.1.0",
|
|
53
55
|
"eslint-plugin-jsdoc": ">=48.5.0",
|
|
54
56
|
"eslint-plugin-jsonc": ">=2.16.0",
|
|
55
57
|
"eslint-plugin-promise": ">=6.4.0",
|
|
@@ -60,7 +62,11 @@
|
|
|
60
62
|
"eslint-plugin-svelte": ">=2.43.0",
|
|
61
63
|
"eslint-plugin-toml": ">=0.11.0",
|
|
62
64
|
"eslint-plugin-unicorn": ">=54.0.0",
|
|
65
|
+
"eslint-plugin-unused-imports": ">=4.1.0",
|
|
63
66
|
"eslint-plugin-vue": ">=9.24.0",
|
|
67
|
+
"eslint-plugin-vue-composable": ">=1.0.0",
|
|
68
|
+
"eslint-plugin-vue-scoped-css": ">=2.8.0",
|
|
69
|
+
"eslint-plugin-vuejs-accessibility": ">=2.4.0",
|
|
64
70
|
"eslint-plugin-yml": ">=1.14.0",
|
|
65
71
|
"svelte": ">=4.0.0",
|
|
66
72
|
"typescript-eslint": ">=7.0.0"
|
|
@@ -72,6 +78,12 @@
|
|
|
72
78
|
"eslint-config-prettier": {
|
|
73
79
|
"optional": true
|
|
74
80
|
},
|
|
81
|
+
"eslint-import-resolver-typescript": {
|
|
82
|
+
"optional": true
|
|
83
|
+
},
|
|
84
|
+
"eslint-plugin-import-x": {
|
|
85
|
+
"optional": true
|
|
86
|
+
},
|
|
75
87
|
"eslint-plugin-jsdoc": {
|
|
76
88
|
"optional": true
|
|
77
89
|
},
|
|
@@ -102,9 +114,21 @@
|
|
|
102
114
|
"eslint-plugin-unicorn": {
|
|
103
115
|
"optional": true
|
|
104
116
|
},
|
|
117
|
+
"eslint-plugin-unused-imports": {
|
|
118
|
+
"optional": true
|
|
119
|
+
},
|
|
105
120
|
"eslint-plugin-vue": {
|
|
106
121
|
"optional": true
|
|
107
122
|
},
|
|
123
|
+
"eslint-plugin-vue-composable": {
|
|
124
|
+
"optional": true
|
|
125
|
+
},
|
|
126
|
+
"eslint-plugin-vue-scoped-css": {
|
|
127
|
+
"optional": true
|
|
128
|
+
},
|
|
129
|
+
"eslint-plugin-vuejs-accessibility": {
|
|
130
|
+
"optional": true
|
|
131
|
+
},
|
|
108
132
|
"eslint-plugin-yml": {
|
|
109
133
|
"optional": true
|
|
110
134
|
},
|
|
@@ -123,6 +147,8 @@
|
|
|
123
147
|
"bumpp": "^9.4.1",
|
|
124
148
|
"eslint": "^9.9.0",
|
|
125
149
|
"eslint-config-prettier": "^9.1.0",
|
|
150
|
+
"eslint-import-resolver-typescript": "^3.6.3",
|
|
151
|
+
"eslint-plugin-import-x": "^4.1.1",
|
|
126
152
|
"eslint-plugin-jsdoc": "^50.0.0",
|
|
127
153
|
"eslint-plugin-jsonc": "^2.16.0",
|
|
128
154
|
"eslint-plugin-promise": "^7.0.0",
|
|
@@ -133,7 +159,11 @@
|
|
|
133
159
|
"eslint-plugin-svelte": "^2.43.0",
|
|
134
160
|
"eslint-plugin-toml": "^0.11.0",
|
|
135
161
|
"eslint-plugin-unicorn": "^55.0.0",
|
|
162
|
+
"eslint-plugin-unused-imports": "^4.1.3",
|
|
136
163
|
"eslint-plugin-vue": "^9.27.0",
|
|
164
|
+
"eslint-plugin-vue-composable": "^1.0.0",
|
|
165
|
+
"eslint-plugin-vue-scoped-css": "^2.8.1",
|
|
166
|
+
"eslint-plugin-vuejs-accessibility": "^2.4.1",
|
|
137
167
|
"eslint-plugin-yml": "^1.14.0",
|
|
138
168
|
"eslint-typegen": "^0.3.1",
|
|
139
169
|
"gh-changelogen": "^0.2.8",
|
|
@@ -142,7 +172,7 @@
|
|
|
142
172
|
"npm-run-all2": "^6.2.2",
|
|
143
173
|
"prettier": "^3.3.2",
|
|
144
174
|
"svelte": "^4.2.18",
|
|
145
|
-
"tsdown": "^0.2.
|
|
175
|
+
"tsdown": "^0.2.10",
|
|
146
176
|
"typescript": "^5.5.3",
|
|
147
177
|
"typescript-eslint": "^8.1.0",
|
|
148
178
|
"vitest": "^2.0.0"
|