@lntvow/eslint-config 9.5.4 → 9.6.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/dist/index.cjs +0 -4
- package/dist/index.mjs +0 -4
- package/package.json +16 -18
package/dist/index.cjs
CHANGED
|
@@ -321,7 +321,6 @@ async function imports(options) {
|
|
|
321
321
|
import: import_eslint_plugin_import_x.default
|
|
322
322
|
},
|
|
323
323
|
rules: {
|
|
324
|
-
// Update to eslint-plugin-import-x v0.5.2
|
|
325
324
|
// Helpful warnings
|
|
326
325
|
// 'import/export': 'error',
|
|
327
326
|
// 'import/no-deprecated': 'error',
|
|
@@ -416,7 +415,6 @@ async function javascript(options = {}) {
|
|
|
416
415
|
reportUnusedDisableDirectives: true
|
|
417
416
|
},
|
|
418
417
|
rules: {
|
|
419
|
-
// Update to eslint-plugin-vue v9.4.0
|
|
420
418
|
...import_js.default.configs.all.rules,
|
|
421
419
|
// Possible Problems
|
|
422
420
|
// 禁止未使用过的变量
|
|
@@ -598,7 +596,6 @@ async function regexp(options = {}) {
|
|
|
598
596
|
regexp: pluginRegexp
|
|
599
597
|
},
|
|
600
598
|
rules: {
|
|
601
|
-
// Update to eslint-plugin-regexp v2.6.0
|
|
602
599
|
...rules,
|
|
603
600
|
// Overrides
|
|
604
601
|
...overrides
|
|
@@ -781,7 +778,6 @@ async function vue(options = {}) {
|
|
|
781
778
|
processor: import_eslint_plugin_vue.default.processors[".vue"],
|
|
782
779
|
files: [GLOB_VUE],
|
|
783
780
|
rules: {
|
|
784
|
-
// Update to eslint-plugin-vue v9.26.0
|
|
785
781
|
...import_eslint_plugin_vue.default.configs.base.rules,
|
|
786
782
|
...vueVersion === 3 ? vue3Rules : vue2Rules,
|
|
787
783
|
// Override default configuration
|
package/dist/index.mjs
CHANGED
|
@@ -241,7 +241,6 @@ async function imports(options) {
|
|
|
241
241
|
import: pluginImport
|
|
242
242
|
},
|
|
243
243
|
rules: {
|
|
244
|
-
// Update to eslint-plugin-import-x v0.5.2
|
|
245
244
|
// Helpful warnings
|
|
246
245
|
// 'import/export': 'error',
|
|
247
246
|
// 'import/no-deprecated': 'error',
|
|
@@ -336,7 +335,6 @@ async function javascript(options = {}) {
|
|
|
336
335
|
reportUnusedDisableDirectives: true
|
|
337
336
|
},
|
|
338
337
|
rules: {
|
|
339
|
-
// Update to eslint-plugin-vue v9.4.0
|
|
340
338
|
...js.configs.all.rules,
|
|
341
339
|
// Possible Problems
|
|
342
340
|
// 禁止未使用过的变量
|
|
@@ -518,7 +516,6 @@ async function regexp(options = {}) {
|
|
|
518
516
|
regexp: pluginRegexp
|
|
519
517
|
},
|
|
520
518
|
rules: {
|
|
521
|
-
// Update to eslint-plugin-regexp v2.6.0
|
|
522
519
|
...rules,
|
|
523
520
|
// Overrides
|
|
524
521
|
...overrides
|
|
@@ -701,7 +698,6 @@ async function vue(options = {}) {
|
|
|
701
698
|
processor: pluginVue.processors[".vue"],
|
|
702
699
|
files: [GLOB_VUE],
|
|
703
700
|
rules: {
|
|
704
|
-
// Update to eslint-plugin-vue v9.26.0
|
|
705
701
|
...pluginVue.configs.base.rules,
|
|
706
702
|
...vueVersion === 3 ? vue3Rules : vue2Rules,
|
|
707
703
|
// Override default configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lntvow/eslint-config",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.6.0",
|
|
4
4
|
"author": "lntvow",
|
|
5
5
|
"description": "eslint-config",
|
|
6
6
|
"type": "module",
|
|
@@ -24,37 +24,35 @@
|
|
|
24
24
|
"module": "./dist/index.mjs",
|
|
25
25
|
"types": "./dist/index.d.ts",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@lntvow/dev": "^1.1.
|
|
28
|
-
"@types/
|
|
29
|
-
"@types/node": "^20.14.8",
|
|
27
|
+
"@lntvow/dev": "^1.1.6",
|
|
28
|
+
"@types/node": "^20.14.10",
|
|
30
29
|
"axios": "^1.7.2",
|
|
31
30
|
"cheerio": "1.0.0-rc.12",
|
|
31
|
+
"find-up": "^7.0.0",
|
|
32
32
|
"tsup": "^8.1.0",
|
|
33
|
-
"
|
|
34
|
-
"vue": "^3.4.30"
|
|
33
|
+
"vue": "^3.4.31"
|
|
35
34
|
},
|
|
36
35
|
"dependencies": {
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
-
"@lntvow/utils": "^3.
|
|
39
|
-
"@stylistic/eslint-plugin": "^2.
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
41
|
-
"@typescript-eslint/parser": "^7.
|
|
42
|
-
"eslint": "^9.
|
|
36
|
+
"@eslint/js": "^9.6.0",
|
|
37
|
+
"@lntvow/utils": "^3.1.2",
|
|
38
|
+
"@stylistic/eslint-plugin": "^2.3.0",
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "^7.16.0",
|
|
40
|
+
"@typescript-eslint/parser": "^7.16.0",
|
|
41
|
+
"eslint": "^9.6.0",
|
|
43
42
|
"eslint-config-prettier": "^9.1.0",
|
|
44
43
|
"eslint-flat-config-utils": "^0.2.5",
|
|
45
|
-
"eslint-plugin-import-x": "^0.5.
|
|
44
|
+
"eslint-plugin-import-x": "^0.5.3",
|
|
46
45
|
"eslint-plugin-prettier": "^5.1.3",
|
|
47
46
|
"eslint-plugin-regexp": "^2.6.0",
|
|
48
47
|
"eslint-plugin-vitest": "^0.5.4",
|
|
49
|
-
"eslint-plugin-vue": "^9.
|
|
50
|
-
"
|
|
51
|
-
"globals": "^15.6.0",
|
|
48
|
+
"eslint-plugin-vue": "^9.27.0",
|
|
49
|
+
"globals": "^15.8.0",
|
|
52
50
|
"local-pkg": "^0.5.0",
|
|
53
51
|
"parse-gitignore": "^2.0.0",
|
|
54
52
|
"tslib": "^2.6.3",
|
|
55
|
-
"typescript": "^5.5.
|
|
53
|
+
"typescript": "^5.5.3",
|
|
56
54
|
"vue-eslint-parser": "^9.4.3",
|
|
57
|
-
"@lntvow/eslint-plugin": "^9.
|
|
55
|
+
"@lntvow/eslint-plugin": "^9.6.0"
|
|
58
56
|
},
|
|
59
57
|
"scripts": {
|
|
60
58
|
"dev": "pnpm build --format esm --watch",
|