@alexlit/config-eslint 154.2.0 → 154.3.1

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/plugins/vue.js +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "154.2.0",
3
+ "version": "154.3.1",
4
4
  "private": false,
5
5
  "description": "Sharable ESLint configuration",
6
6
  "keywords": [
@@ -43,10 +43,10 @@
43
43
  "@eslint/json": "^2.0.1",
44
44
  "@intlify/eslint-plugin-vue-i18n": "^4.5.1",
45
45
  "@stylistic/eslint-plugin": "^5.10.0",
46
- "@tanstack/eslint-plugin-query": "^5.102.2",
46
+ "@tanstack/eslint-plugin-query": "^5.102.5",
47
47
  "@unocss/eslint-config": "^66.8.1",
48
48
  "@vitest/eslint-plugin": "^1.6.27",
49
- "eslint": "^10.9.0",
49
+ "eslint": "^10.9.1",
50
50
  "eslint-config-prettier": "^10.1.8",
51
51
  "eslint-plugin-de-morgan": "^2.1.3",
52
52
  "eslint-plugin-jsdoc": "^64.2.1",
@@ -59,11 +59,11 @@
59
59
  "eslint-plugin-unicorn": "^73.0.0",
60
60
  "eslint-plugin-vue": "^10.10.0",
61
61
  "eslint-plugin-vuejs-accessibility": "^2.6.0",
62
- "eslint-plugin-zod": "^4.9.1",
62
+ "eslint-plugin-zod": "^4.10.0",
63
63
  "globals": "^17.11.0",
64
64
  "jsonc-eslint-parser": "^3.3.0",
65
65
  "typescript": "^6.0.3",
66
- "typescript-eslint": "^8.67.0",
66
+ "typescript-eslint": "^8.68.0",
67
67
  "yaml-eslint-parser": "^2.1.0"
68
68
  },
69
69
  "devDependencies": {
package/plugins/vue.js CHANGED
@@ -226,7 +226,12 @@ export const vue = defineConfig([
226
226
  },
227
227
 
228
228
  {
229
- files: ['**/pages/**/*.vue', '**/layouts/**/*.vue'],
229
+ files: [
230
+ '**/app/*.vue',
231
+ '**/src/*.vue',
232
+ '**/layouts/**/*.vue',
233
+ '**/pages/**/*.vue',
234
+ ],
230
235
  rules: { 'vue/multi-word-component-names': 'off' },
231
236
  },
232
237