@mikey-pro/eslint-config-vue 10.0.0 → 10.0.2
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/index.js +4 -4
- package/package.json +14 -6
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Modern Vue ESLint configuration for Mikey Pro
|
|
2
|
-
import { baseConfig, globalPlugins } from '
|
|
3
|
-
import { baseOverrides } from '
|
|
2
|
+
import { baseConfig, globalPlugins } from '@mikey-pro/eslint-config/base-config.js';
|
|
3
|
+
import { baseOverrides } from '@mikey-pro/eslint-config/overrides.js';
|
|
4
4
|
import vue from 'eslint-plugin-vue';
|
|
5
5
|
import vueParser from 'vue-eslint-parser';
|
|
6
6
|
|
|
@@ -153,5 +153,5 @@ export default [
|
|
|
153
153
|
];
|
|
154
154
|
|
|
155
155
|
// Export individual components for advanced usage
|
|
156
|
-
export { baseConfig, globalPlugins } from '
|
|
157
|
-
export { baseOverrides } from '
|
|
156
|
+
export { baseConfig, globalPlugins } from '@mikey-pro/eslint-config/base-config.js';
|
|
157
|
+
export { baseOverrides } from '@mikey-pro/eslint-config/overrides.js';
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikey-pro/eslint-config-vue",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.2",
|
|
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
|
-
"@mikey-pro/eslint-config": "
|
|
8
|
+
"@mikey-pro/eslint-config": "^10.0.0",
|
|
9
9
|
"eslint-plugin-vue": "^10.8.0",
|
|
10
10
|
"vue-eslint-parser": "^10.4.0"
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
|
-
"@mikey-pro/eslint-config": "
|
|
13
|
+
"@mikey-pro/eslint-config": "^10.0.0",
|
|
14
14
|
"eslint": "^10.0.0"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
@@ -21,7 +21,13 @@
|
|
|
21
21
|
"optional": true
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
-
"files": [
|
|
24
|
+
"files": [
|
|
25
|
+
"index.js",
|
|
26
|
+
"flat.js",
|
|
27
|
+
"legacy.js",
|
|
28
|
+
"README.md",
|
|
29
|
+
"LICENSE"
|
|
30
|
+
],
|
|
25
31
|
"homepage": "https://github.com/chiefmikey/mikey-pro#readme",
|
|
26
32
|
"repository": {
|
|
27
33
|
"type": "git",
|
|
@@ -45,7 +51,7 @@
|
|
|
45
51
|
"style-guide",
|
|
46
52
|
"style",
|
|
47
53
|
"guide",
|
|
48
|
-
"eslint-
|
|
54
|
+
"eslint-10",
|
|
49
55
|
"flat-config"
|
|
50
56
|
],
|
|
51
57
|
"author": "Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)",
|
|
@@ -55,7 +61,9 @@
|
|
|
55
61
|
"pnpm": ">=8.0.0",
|
|
56
62
|
"yarn": ">=4.0.0"
|
|
57
63
|
},
|
|
58
|
-
"browserslist": [
|
|
64
|
+
"browserslist": [
|
|
65
|
+
"defaults"
|
|
66
|
+
],
|
|
59
67
|
"exports": {
|
|
60
68
|
".": {
|
|
61
69
|
"import": "./index.js",
|