@mikey-pro/eslint-config-svelte 10.0.4 → 10.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.
- package/index.js +4 -4
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Modern Svelte ESLint configuration for Mikey Pro
|
|
2
|
-
import { baseConfig, globalPlugins } from '
|
|
3
|
-
import { baseOverrides } from '
|
|
2
|
+
import { baseConfig, globalPlugins } from 'mikey-pro/eslint/base-config.js';
|
|
3
|
+
import { baseOverrides } from 'mikey-pro/eslint/overrides.js';
|
|
4
4
|
import svelte from 'eslint-plugin-svelte';
|
|
5
5
|
import svelteParser from 'svelte-eslint-parser';
|
|
6
6
|
|
|
@@ -92,5 +92,5 @@ export default [
|
|
|
92
92
|
];
|
|
93
93
|
|
|
94
94
|
// Export individual components for advanced usage
|
|
95
|
-
export { baseConfig, globalPlugins } from '
|
|
96
|
-
export { baseOverrides } from '
|
|
95
|
+
export { baseConfig, globalPlugins } from 'mikey-pro/eslint/base-config.js';
|
|
96
|
+
export { baseOverrides } from 'mikey-pro/eslint/overrides.js';
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikey-pro/eslint-config-svelte",
|
|
3
|
-
"version": "10.0
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"description": "Mikey Pro ESLint Svelte configuration - Ultimate Svelte coding style guide",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@babel/eslint-parser": "^7.28.6",
|
|
9
|
-
"
|
|
9
|
+
"mikey-pro": "^10.0.4",
|
|
10
10
|
"@typescript-eslint/parser": "^8.56.1",
|
|
11
11
|
"eslint-plugin-svelte": "^3.15.0",
|
|
12
12
|
"svelte-eslint-parser": "^1.5.1"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"
|
|
15
|
+
"mikey-pro": "^10.0.4"
|
|
16
16
|
},
|
|
17
17
|
"peerDependenciesMeta": {
|
|
18
18
|
"typescript": {
|