@kikiutils/eslint-config 0.7.4 → 0.8.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.
- package/dist/index.mjs +2 -0
- package/package.json +11 -6
package/dist/index.mjs
CHANGED
|
@@ -238,6 +238,8 @@ function createConfig(environment = 'node', options) {
|
|
|
238
238
|
},
|
|
239
239
|
],
|
|
240
240
|
'vue/no-multi-spaces': 'error',
|
|
241
|
+
'vue/no-multiple-objects-in-class': 'error',
|
|
242
|
+
'vue/prefer-separate-static-class': 'error',
|
|
241
243
|
},
|
|
242
244
|
}, {
|
|
243
245
|
files: ['**/.vscode/*.json'],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kikiutils/eslint-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Using antfu/eslint-config as a base for eslint-config, slightly modified the settings and added additional plugins, mainly for my own use.",
|
|
5
5
|
"author": "kiki-kanri",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,16 +31,21 @@
|
|
|
31
31
|
"release": "pnpm run lint && pnpm run build && changelogen --push --release && npm publish"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@antfu/eslint-config": "^4.
|
|
35
|
-
"eslint": "^
|
|
36
|
-
"eslint
|
|
34
|
+
"@antfu/eslint-config": "^4.4.0",
|
|
35
|
+
"@kikiutils/eslint-plugin-tailwindcss": "^1.0.0",
|
|
36
|
+
"eslint": "^9.21.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@kikiutils/changelogen": "^0.7.1",
|
|
40
40
|
"@kikiutils/tsconfigs": "^3.0.2",
|
|
41
|
-
"esbuild": "^0.
|
|
42
|
-
"eslint-flat-config-utils": "^2.0.
|
|
41
|
+
"esbuild": "^0.25.0",
|
|
42
|
+
"eslint-flat-config-utils": "^2.0.1",
|
|
43
43
|
"nodemon": "^3.1.9",
|
|
44
44
|
"ts-project-builder": "^3.4.0"
|
|
45
|
+
},
|
|
46
|
+
"pnpm": {
|
|
47
|
+
"onlyBuiltDependencies": [
|
|
48
|
+
"esbuild"
|
|
49
|
+
]
|
|
45
50
|
}
|
|
46
51
|
}
|