@mikey-pro/eslint-config-vue 9.0.8 → 10.0.1

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 +8 -5
  2. package/package.json +8 -7
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // Modern Vue ESLint configuration for Mikey Pro
2
- import { baseConfig } from '../eslint-config/base-config.js';
3
- import { baseOverrides } from '../eslint-config/overrides.js';
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
 
@@ -91,7 +91,7 @@ const vueConfig = {
91
91
  'vue/valid-v-text': 'error',
92
92
  },
93
93
  settings: {
94
- 'import/resolver': {
94
+ 'import-x/resolver': {
95
95
  typescript: {
96
96
  alwaysTryTypes: true,
97
97
  },
@@ -139,6 +139,9 @@ export default [
139
139
  ],
140
140
  },
141
141
 
142
+ // Global plugin registration
143
+ globalPlugins,
144
+
142
145
  // Base configuration
143
146
  baseConfig,
144
147
 
@@ -150,5 +153,5 @@ export default [
150
153
  ];
151
154
 
152
155
  // Export individual components for advanced usage
153
- export { baseConfig } from '../eslint-config/base-config.js';
154
- export { baseOverrides } from '../eslint-config/overrides.js';
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,17 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config-vue",
3
- "version": "9.0.8",
3
+ "version": "10.0.1",
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": "file:../eslint-config",
9
- "eslint-plugin-vue": "^10.4.0",
10
- "vue-eslint-parser": "^10.2.0"
8
+ "@mikey-pro/eslint-config": "^10.0.0",
9
+ "eslint-plugin-vue": "^10.8.0",
10
+ "vue-eslint-parser": "^10.4.0"
11
11
  },
12
12
  "peerDependencies": {
13
- "@mikey-pro/eslint-config": "file:../eslint-config"
13
+ "@mikey-pro/eslint-config": "^10.0.0",
14
+ "eslint": "^10.0.0"
14
15
  },
15
16
  "peerDependenciesMeta": {
16
17
  "@types/node": {
@@ -50,12 +51,12 @@
50
51
  "style-guide",
51
52
  "style",
52
53
  "guide",
53
- "eslint-9",
54
+ "eslint-10",
54
55
  "flat-config"
55
56
  ],
56
57
  "author": "Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)",
57
58
  "engines": {
58
- "node": ">=20.0.0",
59
+ "node": ">=20.19.0",
59
60
  "npm": ">=9.0.0",
60
61
  "pnpm": ">=8.0.0",
61
62
  "yarn": ">=4.0.0"