@tb-dev/eslint-config 8.1.0 → 8.2.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +8 -8
package/dist/index.js CHANGED
@@ -131,6 +131,7 @@ async function vue(options) {
131
131
  allowCoexistStyle: true
132
132
  }
133
133
  ],
134
+ "vue/no-duplicate-class-names": "error",
134
135
  "vue/no-export-in-script-setup": "error",
135
136
  "vue/no-expose-after-await": "error",
136
137
  "vue/no-import-compiler-macros": "error",
@@ -684,6 +685,8 @@ async function typescript(options) {
684
685
  "@typescript-eslint/no-unsafe-unary-minus": "error",
685
686
  "no-unused-expressions": "off",
686
687
  "@typescript-eslint/no-unused-expressions": ["error", { allowTaggedTemplates: true }],
688
+ "no-unused-private-class-members": "off",
689
+ "@typescript-eslint/no-unused-private-class-members": "error",
687
690
  "no-use-before-define": "off",
688
691
  "@typescript-eslint/no-use-before-define": [
689
692
  "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tb-dev/eslint-config",
3
- "version": "8.1.0",
3
+ "version": "8.2.0",
4
4
  "description": "ESLint config",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -21,20 +21,20 @@
21
21
  "vue"
22
22
  ],
23
23
  "dependencies": {
24
- "@typescript-eslint/eslint-plugin": "^8.46.2",
25
- "@typescript-eslint/parser": "^8.46.2",
24
+ "@typescript-eslint/eslint-plugin": "^8.48.0",
25
+ "@typescript-eslint/parser": "^8.48.0",
26
26
  "eslint-plugin-perfectionist": "^4.15.1",
27
27
  "eslint-plugin-unicorn": "^62.0.0",
28
- "eslint-plugin-vue": "^10.5.1",
29
- "globals": "^16.4.0",
28
+ "eslint-plugin-vue": "^10.6.2",
29
+ "globals": "^16.5.0",
30
30
  "vue-eslint-parser": "^10.2.0"
31
31
  },
32
32
  "devDependencies": {
33
- "@types/node": "^24.9.1",
34
- "eslint": "^9.38.0",
33
+ "@types/node": "^24.10.1",
34
+ "eslint": "^9.39.1",
35
35
  "tslib": "^2.8.1",
36
36
  "typescript": "^5.9.3",
37
- "vite": "^7.1.12",
37
+ "vite": "^7.2.4",
38
38
  "vite-plugin-dts": "^4.5.4"
39
39
  },
40
40
  "engines": {