@mikey-pro/eslint-config-vue 9.0.4 → 9.0.6

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 (3) hide show
  1. package/index.js +1 -2
  2. package/package.json +3 -8
  3. package/README.md +0 -46
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,21 +1,16 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config-vue",
3
- "version": "9.0.4",
3
+ "version": "9.0.6",
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.6",
14
9
  "eslint-plugin-vue": "^10.4.0",
15
10
  "vue-eslint-parser": "^10.2.0"
16
11
  },
17
12
  "peerDependencies": {
18
- "@mikey-pro/eslint-config": "^9.0.0"
13
+ "@mikey-pro/eslint-config": "^9.0.6"
19
14
  },
20
15
  "peerDependenciesMeta": {
21
16
  "@types/node": {
package/README.md DELETED
@@ -1,46 +0,0 @@
1
- <div width="100%" align="center">
2
- <h1>
3
- <a href="https://github.com/chiefmikey/mikey-pro">
4
- <b>Mikey Pro</b>
5
- </a>
6
- </h1>
7
- </div>
8
-
9
- ## **@mikey-pro/eslint-config-vue**
10
-
11
- A preset ESLint Vue configuration
12
-
13
- ## Usage
14
-
15
- ### Install
16
-
17
- ```shell
18
- npm i -D mikey-pro @mikey-pro/eslint-config-vue
19
- ```
20
-
21
- ### Configure (Flat ESLint v9+ Default)
22
-
23
- ```js
24
- // eslint.config.js
25
- import vueConfig from '@mikey-pro/eslint-config-vue';
26
-
27
- export default vueConfig;
28
- ```
29
-
30
- ### Legacy (eslintrc) Configuration (still supported)
31
-
32
- Legacy consumers should explicitly import the legacy entry:
33
-
34
- ```json
35
- {
36
- "eslintConfig": {
37
- "extends": ["@mikey-pro/eslint-config-vue/legacy"]
38
- }
39
- }
40
- ```
41
-
42
- Or via direct require:
43
-
44
- ```js
45
- module.exports = require('@mikey-pro/eslint-config-vue/legacy');
46
- ```