@alexlit/lint-kit 185.5.1 → 185.7.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/lint-kit",
3
- "version": "185.5.1",
3
+ "version": "185.7.0",
4
4
  "private": false,
5
5
  "description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
6
6
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "138.4.2",
3
+ "version": "138.6.0",
4
4
  "private": false,
5
5
  "description": "Sharable ESLint configuration",
6
6
  "keywords": [
@@ -43,24 +43,24 @@
43
43
  "@eslint/json": "^1.2.0",
44
44
  "@intlify/eslint-plugin-vue-i18n": "^4.3.0",
45
45
  "@stylistic/eslint-plugin": "^5.10.0",
46
- "@tanstack/eslint-plugin-query": "^5.99.0",
46
+ "@tanstack/eslint-plugin-query": "^5.99.2",
47
47
  "@unocss/eslint-config": "^66.6.8",
48
48
  "@vitest/eslint-plugin": "^1.6.16",
49
- "eslint": "^10.2.0",
49
+ "eslint": "^10.2.1",
50
50
  "eslint-config-prettier": "^10.1.8",
51
51
  "eslint-plugin-jsdoc": "^62.9.0",
52
- "eslint-plugin-perfectionist": "^5.8.0",
52
+ "eslint-plugin-perfectionist": "^5.9.0",
53
53
  "eslint-plugin-prettier": "^5.5.5",
54
54
  "eslint-plugin-regexp": "^3.1.0",
55
55
  "eslint-plugin-sonarjs": "^4.0.3",
56
56
  "eslint-plugin-tailwindcss": "^3.18.3",
57
57
  "eslint-plugin-unicorn": "^64.0.0",
58
- "eslint-plugin-vue": "^10.8.0",
58
+ "eslint-plugin-vue": "^10.9.0",
59
59
  "eslint-plugin-vuejs-accessibility": "^2.5.0",
60
60
  "globals": "^17.5.0",
61
61
  "jsonc-eslint-parser": "^3.1.0",
62
62
  "typescript": "^6.0.3",
63
- "typescript-eslint": "^8.58.2",
63
+ "typescript-eslint": "^8.59.0",
64
64
  "yaml-eslint-parser": "^2.0.0"
65
65
  },
66
66
  "publishConfig": {
@@ -118,6 +118,10 @@ export const vue = defineConfig([
118
118
  'vue/no-unsupported-features': ['error'],
119
119
  'vue/no-unused-components': ['error'],
120
120
  'vue/no-unused-emit-declarations': ['error'],
121
+ 'vue/no-unused-properties': [
122
+ 'error',
123
+ { groups: ['inject', 'props', 'asyncData', 'computed', 'methods'] },
124
+ ],
121
125
  'vue/no-unused-refs': ['error'],
122
126
  'vue/no-use-computed-property-like-method': ['error'],
123
127
  'vue/no-use-v-else-with-v-for': ['warn'],
@@ -144,8 +148,10 @@ export const vue = defineConfig([
144
148
  'vue/prefer-define-options': ['error'],
145
149
  'vue/prefer-prop-type-boolean-first': ['error'],
146
150
  'vue/prefer-separate-static-class': ['error'],
151
+ 'vue/prefer-single-event-payload': ['error'],
147
152
  'vue/prefer-true-attribute-shorthand': ['error'],
148
153
  'vue/prefer-use-template-ref': ['error'],
154
+ 'vue/prefer-v-model': ['error'],
149
155
  'vue/quote-props': ['error', 'as-needed'],
150
156
  'vue/require-direct-export': 'off',
151
157
  'vue/require-explicit-slots': ['warn'],