@pawover/eslint-rules 0.0.0-alpha.8 → 0.0.0-beta.10
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/core.imports.js +11 -0
- package/dist/core.javascript.js +2 -2
- package/dist/core.react.js +40 -39
- package/dist/core.stylistic.js +19 -35
- package/dist/core.typescript.js +4 -4
- package/dist/core.vue.js +247 -5
- package/dist/index.js +3 -0
- package/dist/types/core.antfu.d.ts +1 -0
- package/dist/types/core.antfu.d.ts.map +1 -0
- package/dist/types/core.imports.d.ts +15 -0
- package/dist/types/core.imports.d.ts.map +1 -0
- package/dist/types/core.javascript.d.ts +1 -0
- package/dist/types/core.javascript.d.ts.map +1 -0
- package/dist/types/core.react.d.ts +19 -17
- package/dist/types/core.react.d.ts.map +1 -0
- package/dist/types/core.stylistic.d.ts +17 -14
- package/dist/types/core.stylistic.d.ts.map +1 -0
- package/dist/types/core.typescript.d.ts +12 -2
- package/dist/types/core.typescript.d.ts.map +1 -0
- package/dist/types/core.vue.d.ts +251 -7
- package/dist/types/core.vue.d.ts.map +1 -0
- package/dist/types/index.d.ts +5 -3
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/preset.d.ts +1 -0
- package/dist/types/preset.d.ts.map +1 -0
- package/package.json +29 -25
package/package.json
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
"description": "pawover's esLint rules",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"version": "0.0.0-
|
|
8
|
-
"packageManager": "pnpm@10.
|
|
7
|
+
"version": "0.0.0-beta.10",
|
|
8
|
+
"packageManager": "pnpm@10.28.2",
|
|
9
9
|
"engines": {
|
|
10
|
-
"node": ">=22.
|
|
10
|
+
"node": ">=22.22.0"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
13
|
"pawover",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
|
-
"build": "tsc",
|
|
41
|
+
"build": "pnpm clean:output && tsc -p tsconfig.build.json",
|
|
42
42
|
"public": "pnpm build && npm publish --access public",
|
|
43
43
|
"check": "pnpm check:types & pnpm check:eslint & pnpm check:format",
|
|
44
44
|
"check:types": "tsc --noEmit",
|
|
45
|
-
"check:eslint": "eslint --fix \"**/*.{js,cjs,mjs,ts,cts,mts,jsx,tsx,vue}\" --cache-location=.cache/eslint.cache.json --cache",
|
|
45
|
+
"check:eslint": "pnpm build && pnpm eslint --fix \"**/*.{js,cjs,mjs,ts,cts,mts,jsx,tsx,vue}\" --cache-location=.cache/eslint.cache.json --cache",
|
|
46
46
|
"check:format": "prettier --write \"**/*.{html,json}\" !.vscode/settings.json --cache-location=.cache/prettier.cache.json --cache",
|
|
47
47
|
"check:pack": "attw --pack .",
|
|
48
48
|
"clean": "pnpm clean:cache & pnpm clean:lib & pnpm clean:output",
|
|
@@ -52,29 +52,30 @@
|
|
|
52
52
|
"lib:up": "taze -I -r --exclude pnpm"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@eslint-react/eslint-plugin": "^
|
|
56
|
-
"@stylistic/eslint-plugin": "^5.
|
|
57
|
-
"eslint": "^
|
|
58
|
-
"eslint-plugin-antfu": "^3.
|
|
55
|
+
"@eslint-react/eslint-plugin": "^3.0.0",
|
|
56
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
57
|
+
"eslint": "^10.0.3",
|
|
58
|
+
"eslint-plugin-antfu": "^3.2.2",
|
|
59
|
+
"eslint-plugin-import-lite": "^0.5.2",
|
|
59
60
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
60
|
-
"eslint-plugin-vue": "^10.
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"taze": "^19.9.0",
|
|
61
|
+
"eslint-plugin-vue": "^10.8.0",
|
|
62
|
+
"prettier": "^3.8.1",
|
|
63
|
+
"rimraf": "^6.1.3",
|
|
64
|
+
"taze": "^19.10.0",
|
|
65
65
|
"typescript": "^5.9.3",
|
|
66
|
-
"typescript-eslint": "^8.
|
|
66
|
+
"typescript-eslint": "^8.57.0"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"@eslint-react/eslint-plugin": "
|
|
70
|
-
"@stylistic/eslint-plugin": "
|
|
71
|
-
"eslint": "^9.
|
|
72
|
-
"eslint-plugin-antfu": "
|
|
73
|
-
"eslint-plugin-
|
|
74
|
-
"eslint-plugin-
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"typescript
|
|
69
|
+
"@eslint-react/eslint-plugin": ">=2.13.0",
|
|
70
|
+
"@stylistic/eslint-plugin": ">=5.9.0",
|
|
71
|
+
"eslint": "^9.0.0 || ^10.0.0",
|
|
72
|
+
"eslint-plugin-antfu": ">=3.2.2",
|
|
73
|
+
"eslint-plugin-import-lite": ">=0.5.2",
|
|
74
|
+
"eslint-plugin-react-hooks": ">=7.0.1",
|
|
75
|
+
"eslint-plugin-vue": ">=10.8.0",
|
|
76
|
+
"react": ">=19.2.0",
|
|
77
|
+
"typescript": ">=5.9.3",
|
|
78
|
+
"typescript-eslint": ">=8.46.4"
|
|
78
79
|
},
|
|
79
80
|
"peerDependenciesMeta": {
|
|
80
81
|
"@eslint-react/eslint-plugin": {
|
|
@@ -86,13 +87,16 @@
|
|
|
86
87
|
"eslint-plugin-antfu": {
|
|
87
88
|
"optional": true
|
|
88
89
|
},
|
|
90
|
+
"eslint-plugin-import-lite": {
|
|
91
|
+
"optional": true
|
|
92
|
+
},
|
|
89
93
|
"eslint-plugin-react-hooks": {
|
|
90
94
|
"optional": true
|
|
91
95
|
},
|
|
92
96
|
"eslint-plugin-vue": {
|
|
93
97
|
"optional": true
|
|
94
98
|
},
|
|
95
|
-
"
|
|
99
|
+
"react": {
|
|
96
100
|
"optional": true
|
|
97
101
|
},
|
|
98
102
|
"typescript": {
|