@ivanmaxlogiudice/eslint-config 3.0.6 → 3.0.8
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/cli.js +43 -41
- package/dist/index.d.ts +919 -555
- package/dist/index.js +24 -25
- package/package.json +42 -41
package/dist/cli.js
CHANGED
|
@@ -11,30 +11,30 @@ import c from "picocolors";
|
|
|
11
11
|
// package.json
|
|
12
12
|
var package_default = {
|
|
13
13
|
name: "@ivanmaxlogiudice/eslint-config",
|
|
14
|
-
|
|
14
|
+
type: "module",
|
|
15
|
+
version: "3.0.8",
|
|
15
16
|
packageManager: "bun@1.1.29",
|
|
16
17
|
description: "Personal ESLint config",
|
|
17
|
-
type: "module",
|
|
18
|
-
keywords: ["eslint-config"],
|
|
19
18
|
license: "MIT",
|
|
20
19
|
homepage: "https://github.com/ivanmaxlogiudice/eslint-config#readme",
|
|
21
|
-
bugs: {
|
|
22
|
-
url: "https://github.com/ivanmaxlogiudice/eslint-config/issues"
|
|
23
|
-
},
|
|
24
20
|
repository: {
|
|
25
21
|
type: "git",
|
|
26
22
|
url: "git+https://github.com/ivanmaxlogiudice/eslint-config.git"
|
|
27
23
|
},
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
bugs: {
|
|
25
|
+
url: "https://github.com/ivanmaxlogiudice/eslint-config/issues"
|
|
26
|
+
},
|
|
27
|
+
keywords: ["eslint-config"],
|
|
31
28
|
exports: {
|
|
32
29
|
".": {
|
|
33
30
|
require: "./dist/index.cjs",
|
|
34
31
|
import: "./dist/index.js"
|
|
35
32
|
}
|
|
36
33
|
},
|
|
34
|
+
main: "./dist/index.js",
|
|
35
|
+
types: "./dist/index.d.ts",
|
|
37
36
|
bin: "./bin/index.js",
|
|
37
|
+
files: ["bin", "dist"],
|
|
38
38
|
publishConfig: {
|
|
39
39
|
access: "public"
|
|
40
40
|
},
|
|
@@ -82,60 +82,61 @@ var package_default = {
|
|
|
82
82
|
}
|
|
83
83
|
},
|
|
84
84
|
dependencies: {
|
|
85
|
-
"@
|
|
86
|
-
"@
|
|
87
|
-
"@eslint/
|
|
85
|
+
"@antfu/install-pkg": "^0.5.0",
|
|
86
|
+
"@clack/prompts": "^0.8.2",
|
|
87
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
|
|
88
|
+
"@eslint/markdown": "^6.2.1",
|
|
88
89
|
"@ivanmaxlogiudice/gitignore": "^0.0.2",
|
|
89
|
-
"@stylistic/eslint-plugin": "^2.
|
|
90
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
91
|
-
"@typescript-eslint/parser": "^8.
|
|
92
|
-
"@vitest/eslint-plugin": "^1.1.
|
|
90
|
+
"@stylistic/eslint-plugin": "^2.11.0",
|
|
91
|
+
"@typescript-eslint/eslint-plugin": "^8.16.0",
|
|
92
|
+
"@typescript-eslint/parser": "^8.16.0",
|
|
93
|
+
"@vitest/eslint-plugin": "^1.1.12",
|
|
93
94
|
"eslint-plugin-antfu": "^2.7.0",
|
|
94
|
-
"eslint-plugin-import-x": "^4.3
|
|
95
|
-
"eslint-plugin-jsdoc": "^50.
|
|
96
|
-
"eslint-plugin-jsonc": "^2.
|
|
97
|
-
"eslint-plugin-n": "^17.
|
|
95
|
+
"eslint-plugin-import-x": "^4.4.3",
|
|
96
|
+
"eslint-plugin-jsdoc": "^50.6.0",
|
|
97
|
+
"eslint-plugin-jsonc": "^2.18.2",
|
|
98
|
+
"eslint-plugin-n": "^17.14.0",
|
|
98
99
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
99
|
-
"eslint-plugin-perfectionist": "^
|
|
100
|
-
"eslint-plugin-unicorn": "^56.0.
|
|
100
|
+
"eslint-plugin-perfectionist": "^4.1.2",
|
|
101
|
+
"eslint-plugin-unicorn": "^56.0.1",
|
|
101
102
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
102
|
-
globals: "^15.
|
|
103
|
+
globals: "^15.12.0",
|
|
103
104
|
"jsonc-eslint-parser": "^2.4.0",
|
|
104
|
-
"local-pkg": "^0.5.
|
|
105
|
-
picocolors: "^1.1.
|
|
105
|
+
"local-pkg": "^0.5.1",
|
|
106
|
+
picocolors: "^1.1.1",
|
|
106
107
|
yargs: "^17.7.2"
|
|
107
108
|
},
|
|
108
109
|
devDependencies: {
|
|
109
|
-
"@eslint/config-inspector": "^0.5.
|
|
110
|
-
"@stylistic/eslint-plugin-migrate": "^2.
|
|
111
|
-
"@types/node": "^22.
|
|
110
|
+
"@eslint/config-inspector": "^0.5.6",
|
|
111
|
+
"@stylistic/eslint-plugin-migrate": "^2.11.0",
|
|
112
|
+
"@types/node": "^22.10.0",
|
|
112
113
|
"@types/yargs": "^17.0.33",
|
|
113
|
-
"@unocss/eslint-plugin": "^0.
|
|
114
|
-
bumpp: "^9.
|
|
115
|
-
"bun-types": "^1.1.
|
|
116
|
-
eslint: "^9.
|
|
114
|
+
"@unocss/eslint-plugin": "^0.64.1",
|
|
115
|
+
bumpp: "^9.8.1",
|
|
116
|
+
"bun-types": "^1.1.37",
|
|
117
|
+
eslint: "^9.15.0",
|
|
117
118
|
"eslint-plugin-markdown": "^5.1.0",
|
|
118
|
-
"eslint-plugin-regexp": "^2.
|
|
119
|
-
"eslint-plugin-vue": "^9.
|
|
120
|
-
"eslint-plugin-yml": "^1.
|
|
119
|
+
"eslint-plugin-regexp": "^2.7.0",
|
|
120
|
+
"eslint-plugin-vue": "^9.31.0",
|
|
121
|
+
"eslint-plugin-yml": "^1.15.0",
|
|
121
122
|
"eslint-typegen": "^0.3.2",
|
|
122
123
|
"lint-staged": "^15.2.10",
|
|
123
124
|
"simple-git-hooks": "^2.11.1",
|
|
124
|
-
tsup: "^8.3.
|
|
125
|
-
typescript: "^5.
|
|
125
|
+
tsup: "^8.3.5",
|
|
126
|
+
typescript: "^5.7.2",
|
|
126
127
|
unbuild: "^2.0.0",
|
|
127
|
-
vitest: "^2.1.
|
|
128
|
+
vitest: "^2.1.6",
|
|
128
129
|
"vue-eslint-parser": "^9.4.3",
|
|
129
130
|
"yaml-eslint-parser": "^1.2.3"
|
|
130
131
|
},
|
|
132
|
+
resolutions: {
|
|
133
|
+
"@types/mdast": "^4.0.4"
|
|
134
|
+
},
|
|
131
135
|
"simple-git-hooks": {
|
|
132
136
|
"pre-commit": "npx lint-staged"
|
|
133
137
|
},
|
|
134
138
|
"lint-staged": {
|
|
135
139
|
"*": "eslint --flag unstable_ts_config --fix"
|
|
136
|
-
},
|
|
137
|
-
resolutions: {
|
|
138
|
-
"@types/mdast": "^4.0.4"
|
|
139
140
|
}
|
|
140
141
|
};
|
|
141
142
|
|
|
@@ -174,6 +175,7 @@ var vscodeSettingsString = `
|
|
|
174
175
|
"vue",
|
|
175
176
|
"markdown",
|
|
176
177
|
"json",
|
|
178
|
+
"json5",
|
|
177
179
|
"jsonc",
|
|
178
180
|
"yaml"
|
|
179
181
|
]
|