@ivanmaxlogiudice/eslint-config 3.0.0-beta.1 → 3.0.0-beta.3
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/LICENSE +2 -2
- package/README.md +22 -214
- package/bin/index.js +1 -1
- package/dist/cli.js +156 -264
- package/dist/index.d.ts +13446 -3
- package/dist/index.js +1375 -32
- package/package.json +109 -144
- package/dist/cli.cjs +0 -579
- package/dist/cli.d.cts +0 -2
- package/dist/index.cjs +0 -80
- package/dist/index.d.cts +0 -5
package/package.json
CHANGED
|
@@ -1,154 +1,119 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
},
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/ivanmaxlogiudice/eslint-config/issues"
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"eslint",
|
|
18
|
-
"eslint-config"
|
|
19
|
-
],
|
|
20
|
-
"exports": {
|
|
21
|
-
".": {
|
|
22
|
-
"import": "./dist/index.js",
|
|
23
|
-
"require": "./dist/index.cjs"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"main": "./dist/index.js",
|
|
27
|
-
"types": "./dist/index.d.ts",
|
|
28
|
-
"bin": "./bin/index.js",
|
|
29
|
-
"files": [
|
|
30
|
-
"bin",
|
|
31
|
-
"dist"
|
|
32
|
-
],
|
|
33
|
-
"publishConfig": {
|
|
34
|
-
"access": "public"
|
|
35
|
-
},
|
|
36
|
-
"peerDependencies": {
|
|
37
|
-
"@eslint-react/eslint-plugin": ">=1.6.0",
|
|
38
|
-
"@prettier/plugin-xml": ">=3.4.1",
|
|
39
|
-
"@unocss/eslint-plugin": ">=0.61.6",
|
|
40
|
-
"astro-eslint-parser": ">=1.0.2",
|
|
41
|
-
"eslint": ">=9.8.0",
|
|
42
|
-
"eslint-plugin-astro": ">=1.2.3",
|
|
43
|
-
"eslint-plugin-format": ">=0.1.2",
|
|
44
|
-
"eslint-plugin-react-hooks": ">=4.6.2",
|
|
45
|
-
"eslint-plugin-react-refresh": ">=0.4.9",
|
|
46
|
-
"eslint-plugin-solid": ">=0.14.1",
|
|
47
|
-
"eslint-plugin-svelte": ">=2.43.0",
|
|
48
|
-
"prettier-plugin-astro": ">=0.14.1",
|
|
49
|
-
"prettier-plugin-slidev": ">=1.0.5",
|
|
50
|
-
"svelte-eslint-parser": ">=0.41.0"
|
|
51
|
-
},
|
|
52
|
-
"peerDependenciesMeta": {
|
|
53
|
-
"@eslint-react/eslint-plugin": {
|
|
54
|
-
"optional": true
|
|
55
|
-
},
|
|
56
|
-
"@prettier/plugin-xml": {
|
|
57
|
-
"optional": true
|
|
58
|
-
},
|
|
59
|
-
"@unocss/eslint-plugin": {
|
|
60
|
-
"optional": true
|
|
61
|
-
},
|
|
62
|
-
"astro-eslint-parser": {
|
|
63
|
-
"optional": true
|
|
64
|
-
},
|
|
65
|
-
"eslint-plugin-astro": {
|
|
66
|
-
"optional": true
|
|
2
|
+
"name": "@ivanmaxlogiudice/eslint-config",
|
|
3
|
+
"version": "3.0.0-beta.3",
|
|
4
|
+
"packageManager": "bun@1.1.24",
|
|
5
|
+
"description": "Personal ESLint config",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"keywords": ["eslint-config"],
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"homepage": "https://github.com/ivanmaxlogiudice/eslint-config#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/ivanmaxlogiudice/eslint-config/issues"
|
|
67
12
|
},
|
|
68
|
-
"
|
|
69
|
-
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/ivanmaxlogiudice/eslint-config.git"
|
|
70
16
|
},
|
|
71
|
-
"
|
|
72
|
-
|
|
17
|
+
"files": ["bin", "dist"],
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"require": "./dist/index.cjs",
|
|
23
|
+
"import": "./dist/index.js"
|
|
24
|
+
}
|
|
73
25
|
},
|
|
74
|
-
"
|
|
75
|
-
|
|
26
|
+
"bin": "./bin/index.js",
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
76
29
|
},
|
|
77
|
-
"
|
|
78
|
-
|
|
30
|
+
"scripts": {
|
|
31
|
+
"stub": "tsup --format esm",
|
|
32
|
+
"dev": "config-inspector --config eslint.config.ts",
|
|
33
|
+
"build": "bun run typegen && tsup --format esm --clean --dts",
|
|
34
|
+
"test": "vitest",
|
|
35
|
+
"lint": "eslint . --fix",
|
|
36
|
+
"typegen": "bun scripts/typegen.ts",
|
|
37
|
+
"prepack": "bun run build",
|
|
38
|
+
"release": "bumpp && npm publish",
|
|
39
|
+
"typecheck": "tsc --noEmit"
|
|
79
40
|
},
|
|
80
|
-
"
|
|
81
|
-
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@unocss/eslint-plugin": "^0.61.9",
|
|
43
|
+
"eslint": "^9.9.0",
|
|
44
|
+
"eslint-plugin-markdown": "^5.1.0",
|
|
45
|
+
"eslint-plugin-regexp": "^2.6.0",
|
|
46
|
+
"eslint-plugin-vue": "^9.27.0",
|
|
47
|
+
"eslint-plugin-yml": "^1.14.0",
|
|
48
|
+
"vue-eslint-parser": "^9.4.3",
|
|
49
|
+
"yaml-eslint-parser": "^1.2.3"
|
|
82
50
|
},
|
|
83
|
-
"
|
|
84
|
-
|
|
51
|
+
"peerDependenciesMeta": {
|
|
52
|
+
"@unocss/eslint-plugin": {
|
|
53
|
+
"optional": true
|
|
54
|
+
},
|
|
55
|
+
"eslint-plugin-markdown": {
|
|
56
|
+
"optional": true
|
|
57
|
+
},
|
|
58
|
+
"eslint-plugin-regexp": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"eslint-plugin-vue": {
|
|
62
|
+
"optional": true
|
|
63
|
+
},
|
|
64
|
+
"eslint-plugin-yml": {
|
|
65
|
+
"optional": true
|
|
66
|
+
},
|
|
67
|
+
"vue-eslint-parser": {
|
|
68
|
+
"optional": true
|
|
69
|
+
},
|
|
70
|
+
"yaml-eslint-parser": {
|
|
71
|
+
"optional": true
|
|
72
|
+
}
|
|
85
73
|
},
|
|
86
|
-
"
|
|
87
|
-
|
|
74
|
+
"dependencies": {
|
|
75
|
+
"@clack/prompts": "^0.7.0",
|
|
76
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
|
|
77
|
+
"@ivanmaxlogiudice/gitignore": "^0.0.2",
|
|
78
|
+
"@stylistic/eslint-plugin": "^2.6.2",
|
|
79
|
+
"@typescript-eslint/eslint-plugin": "^8.1.0",
|
|
80
|
+
"@typescript-eslint/parser": "^8.1.0",
|
|
81
|
+
"@vitest/eslint-plugin": "^1.0.2",
|
|
82
|
+
"eslint-plugin-antfu": "^2.3.5",
|
|
83
|
+
"eslint-plugin-import-x": "^3.1.0",
|
|
84
|
+
"eslint-plugin-jsdoc": "^50.2.2",
|
|
85
|
+
"eslint-plugin-jsonc": "^2.16.0",
|
|
86
|
+
"eslint-plugin-n": "^17.10.2",
|
|
87
|
+
"eslint-plugin-no-only-tests": "^3.1.0",
|
|
88
|
+
"eslint-plugin-perfectionist": "^3.1.3",
|
|
89
|
+
"eslint-plugin-unicorn": "^55.0.0",
|
|
90
|
+
"eslint-plugin-unused-imports": "^4.1.3",
|
|
91
|
+
"globals": "^15.9.0",
|
|
92
|
+
"jsonc-eslint-parser": "^2.4.0",
|
|
93
|
+
"picocolors": "^1.0.1",
|
|
94
|
+
"yargs": "^17.7.2"
|
|
88
95
|
},
|
|
89
|
-
"
|
|
90
|
-
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"@eslint/config-inspector": "^0.5.2",
|
|
98
|
+
"@stylistic/eslint-plugin-migrate": "^2.6.2",
|
|
99
|
+
"@types/eslint": "^9.6.0",
|
|
100
|
+
"@types/node": "^22.3.0",
|
|
101
|
+
"@types/yargs": "^17.0.33",
|
|
102
|
+
"@unocss/eslint-plugin": "^0.62.1",
|
|
103
|
+
"bumpp": "^9.5.1",
|
|
104
|
+
"bun-types": "^1.1.24",
|
|
105
|
+
"bundle-require": "^5.0.0",
|
|
106
|
+
"eslint": "^9.9.0",
|
|
107
|
+
"eslint-plugin-markdown": "^5.1.0",
|
|
108
|
+
"eslint-plugin-regexp": "^2.6.0",
|
|
109
|
+
"eslint-plugin-vue": "^9.27.0",
|
|
110
|
+
"eslint-plugin-yml": "^1.14.0",
|
|
111
|
+
"eslint-typegen": "^0.3.0",
|
|
112
|
+
"tsup": "^8.2.4",
|
|
113
|
+
"typescript": "^5.5.4",
|
|
114
|
+
"unbuild": "^2.0.0",
|
|
115
|
+
"vitest": "^2.0.5",
|
|
116
|
+
"vue-eslint-parser": "^9.4.3",
|
|
117
|
+
"yaml-eslint-parser": "^1.2.3"
|
|
91
118
|
}
|
|
92
|
-
|
|
93
|
-
"dependencies": {
|
|
94
|
-
"@antfu/eslint-config": "^2.24.0",
|
|
95
|
-
"@clack/prompts": "^0.7.0",
|
|
96
|
-
"defu": "^6.1.4",
|
|
97
|
-
"parse-gitignore": "^2.0.0",
|
|
98
|
-
"picocolors": "^1.0.1",
|
|
99
|
-
"yargs": "^17.7.2"
|
|
100
|
-
},
|
|
101
|
-
"devDependencies": {
|
|
102
|
-
"@eslint-react/eslint-plugin": "^1.6.0",
|
|
103
|
-
"@eslint/config-inspector": "^0.5.2",
|
|
104
|
-
"@prettier/plugin-xml": "^3.4.1",
|
|
105
|
-
"@types/eslint": "^9.6.0",
|
|
106
|
-
"@types/fs-extra": "^11.0.4",
|
|
107
|
-
"@types/node": "^22.0.0",
|
|
108
|
-
"@types/prompts": "^2.4.9",
|
|
109
|
-
"@types/yargs": "^17.0.32",
|
|
110
|
-
"@unocss/eslint-plugin": "^0.61.6",
|
|
111
|
-
"astro-eslint-parser": "^1.0.2",
|
|
112
|
-
"bumpp": "^9.4.1",
|
|
113
|
-
"eslint": "npm:eslint-ts-patch@9.8.0-1",
|
|
114
|
-
"eslint-plugin-astro": "^1.2.3",
|
|
115
|
-
"eslint-plugin-format": "^0.1.2",
|
|
116
|
-
"eslint-plugin-react-hooks": "^4.6.2",
|
|
117
|
-
"eslint-plugin-react-refresh": "^0.4.9",
|
|
118
|
-
"eslint-plugin-solid": "^0.14.1",
|
|
119
|
-
"eslint-plugin-svelte": "^2.43.0",
|
|
120
|
-
"eslint-ts-patch": "9.8.0-1",
|
|
121
|
-
"esno": "^4.7.0",
|
|
122
|
-
"execa": "^9.3.0",
|
|
123
|
-
"fast-glob": "^3.3.2",
|
|
124
|
-
"fs-extra": "^11.2.0",
|
|
125
|
-
"lint-staged": "^15.2.7",
|
|
126
|
-
"prettier-plugin-astro": "^0.14.1",
|
|
127
|
-
"prettier-plugin-slidev": "^1.0.5",
|
|
128
|
-
"simple-git-hooks": "^2.11.1",
|
|
129
|
-
"svelte": "^4.2.18",
|
|
130
|
-
"svelte-eslint-parser": "^0.41.0",
|
|
131
|
-
"tsup": "^8.2.3",
|
|
132
|
-
"tsx": "^4.16.2",
|
|
133
|
-
"typescript": "^5.5.4",
|
|
134
|
-
"vitest": "^2.0.4",
|
|
135
|
-
"vue": "^3.4.34",
|
|
136
|
-
"@ivanmaxlogiudice/eslint-config": "3.0.0-beta.1"
|
|
137
|
-
},
|
|
138
|
-
"simple-git-hooks": {
|
|
139
|
-
"pre-commit": "pnpm lint-staged"
|
|
140
|
-
},
|
|
141
|
-
"lint-staged": {
|
|
142
|
-
"*": "eslint --fix"
|
|
143
|
-
},
|
|
144
|
-
"scripts": {
|
|
145
|
-
"stub": "tsup --format esm",
|
|
146
|
-
"dev": "config-inspector --config eslint.config.ts",
|
|
147
|
-
"build": "tsup --format esm,cjs --clean --dts",
|
|
148
|
-
"build:inspector": "pnpm build && config-inspector build",
|
|
149
|
-
"lint": "pnpm run stub && eslint . --fix",
|
|
150
|
-
"release": "bumpp && pnpm publish",
|
|
151
|
-
"test": "vitest",
|
|
152
|
-
"typecheck": "tsc --noEmit"
|
|
153
|
-
}
|
|
154
|
-
}
|
|
119
|
+
}
|