@alexlit/config-eslint 136.2.1 → 136.4.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/package.json +9 -9
- package/plugins/vue.js +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "136.
|
|
3
|
+
"version": "136.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Sharable ESLint configuration",
|
|
6
6
|
"keywords": [
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@eslint/js": "^10.0.1",
|
|
43
|
-
"@eslint/json": "^1.0
|
|
43
|
+
"@eslint/json": "^1.1.0",
|
|
44
44
|
"@intlify/eslint-plugin-vue-i18n": "^4.3.0",
|
|
45
|
-
"@stylistic/eslint-plugin": "^5.
|
|
45
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
46
46
|
"@tanstack/eslint-plugin-query": "^5.91.4",
|
|
47
|
-
"@unocss/eslint-config": "^66.6.
|
|
48
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
49
|
-
"eslint": "^10.0.
|
|
47
|
+
"@unocss/eslint-config": "^66.6.6",
|
|
48
|
+
"@vitest/eslint-plugin": "^1.6.10",
|
|
49
|
+
"eslint": "^10.0.3",
|
|
50
50
|
"eslint-config-prettier": "^10.1.8",
|
|
51
51
|
"eslint-plugin-jsdoc": "^62.7.1",
|
|
52
52
|
"eslint-plugin-perfectionist": "^5.6.0",
|
|
53
53
|
"eslint-plugin-prettier": "^5.5.5",
|
|
54
|
-
"eslint-plugin-regexp": "^3.
|
|
55
|
-
"eslint-plugin-sonarjs": "^4.0.
|
|
54
|
+
"eslint-plugin-regexp": "^3.1.0",
|
|
55
|
+
"eslint-plugin-sonarjs": "^4.0.1",
|
|
56
56
|
"eslint-plugin-tailwindcss": "^3.18.2",
|
|
57
57
|
"eslint-plugin-unicorn": "^63.0.0",
|
|
58
58
|
"eslint-plugin-vue": "^10.8.0",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"globals": "^17.4.0",
|
|
61
61
|
"jsonc-eslint-parser": "^3.1.0",
|
|
62
62
|
"typescript": "^5.9.3",
|
|
63
|
-
"typescript-eslint": "^8.
|
|
63
|
+
"typescript-eslint": "^8.57.0",
|
|
64
64
|
"yaml-eslint-parser": "^2.0.0"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
package/plugins/vue.js
CHANGED
|
@@ -190,4 +190,9 @@ export const vue = defineConfig([
|
|
|
190
190
|
files: ['**/pages/**/*.vue', '**/layouts/**/*.vue'],
|
|
191
191
|
rules: { 'vue/multi-word-component-names': 'off' },
|
|
192
192
|
},
|
|
193
|
+
|
|
194
|
+
{
|
|
195
|
+
files: ['**/*.{test,spec}.{js,ts}'],
|
|
196
|
+
rules: { 'vue/one-component-per-file': 'off' },
|
|
197
|
+
},
|
|
193
198
|
]);
|