@mikey-pro/eslint-config-vue 9.0.3 → 9.0.5

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/index.js +1 -2
  2. package/package.json +2 -7
package/index.js CHANGED
@@ -22,7 +22,7 @@ const vueConfig = {
22
22
  },
23
23
  rules: {
24
24
  // Vue rules
25
- ...vue.configs['vue3-recommended'].rules,
25
+ ...vue.configs.recommended.rules,
26
26
 
27
27
  // Basic Vue-specific overrides
28
28
  'vue/attribute-hyphenation': ['error', 'always'],
@@ -70,7 +70,6 @@ const vueConfig = {
70
70
  'vue/this-in-template': 'error',
71
71
  'vue/use-v-on-exact': 'error',
72
72
  'vue/v-for-delimiter-style': ['error', 'in'],
73
- 'vue/v-on-function-call': 'error',
74
73
  'vue/valid-define-emits': 'error',
75
74
  'vue/valid-define-props': 'error',
76
75
  'vue/valid-next-tick': 'error',
package/package.json CHANGED
@@ -1,16 +1,11 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config-vue",
3
- "version": "9.0.3",
3
+ "version": "9.0.5",
4
4
  "description": "Mikey Pro ESLint Vue configuration - Ultimate Vue coding style guide",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "dependencies": {
8
- "@babel/core": "^7.28.4",
9
- "@babel/eslint-parser": "^7.28.4",
10
- "@babel/plugin-transform-react-jsx": "^7.28.0",
11
- "@babel/preset-env": "^7.28.3",
12
- "@mikey-pro/eslint-config": "^9.0.0",
13
- "@typescript-eslint/parser": "^8.43.0",
8
+ "@mikey-pro/eslint-config": "^9.0.1",
14
9
  "eslint-plugin-vue": "^10.4.0",
15
10
  "vue-eslint-parser": "^10.2.0"
16
11
  },