@ntnyq/eslint-config 5.3.0 → 5.3.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.d.ts +0 -1
- package/package.json +13 -9
package/dist/index.d.ts
CHANGED
|
@@ -14143,7 +14143,6 @@ type PrettierPrettier = [] | [{
|
|
|
14143
14143
|
fileInfoOptions?: {
|
|
14144
14144
|
[k: string]: unknown | undefined;
|
|
14145
14145
|
};
|
|
14146
|
-
[k: string]: unknown | undefined;
|
|
14147
14146
|
}];
|
|
14148
14147
|
// ----- quote-props -----
|
|
14149
14148
|
type QuoteProps = ([] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ntnyq/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.3.
|
|
4
|
+
"version": "5.3.1",
|
|
5
5
|
"description": "An opinionated ESLint config preset of ntnyq",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"eslint",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
91
91
|
"@eslint/js": "^9.32.0",
|
|
92
92
|
"@eslint/markdown": "^7.1.0",
|
|
93
|
-
"@unocss/eslint-plugin": "^66.4.
|
|
93
|
+
"@unocss/eslint-plugin": "^66.4.2",
|
|
94
94
|
"@vitest/eslint-plugin": "^1.3.4",
|
|
95
95
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
96
96
|
"eslint-flat-config-utils": "^2.1.1",
|
|
@@ -103,15 +103,15 @@
|
|
|
103
103
|
"eslint-plugin-depend": "^1.2.0",
|
|
104
104
|
"eslint-plugin-github-action": "^0.0.16",
|
|
105
105
|
"eslint-plugin-import-x": "^4.16.1",
|
|
106
|
-
"eslint-plugin-jsdoc": "^52.0.
|
|
106
|
+
"eslint-plugin-jsdoc": "^52.0.4",
|
|
107
107
|
"eslint-plugin-jsonc": "^2.20.1",
|
|
108
108
|
"eslint-plugin-n": "^17.21.3",
|
|
109
109
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
110
|
-
"eslint-plugin-ntnyq": "^0.
|
|
110
|
+
"eslint-plugin-ntnyq": "^0.12.0",
|
|
111
111
|
"eslint-plugin-perfectionist": "^4.15.0",
|
|
112
112
|
"eslint-plugin-pinia": "^0.4.1",
|
|
113
|
-
"eslint-plugin-prettier": "^5.5.
|
|
114
|
-
"eslint-plugin-regexp": "^2.
|
|
113
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
114
|
+
"eslint-plugin-regexp": "^2.10.0",
|
|
115
115
|
"eslint-plugin-svgo": "^0.10.0",
|
|
116
116
|
"eslint-plugin-toml": "^0.12.0",
|
|
117
117
|
"eslint-plugin-unicorn": "^60.0.0",
|
|
@@ -142,6 +142,7 @@
|
|
|
142
142
|
"npm-run-all2": "^8.0.4",
|
|
143
143
|
"tinyglobby": "^0.2.14",
|
|
144
144
|
"tsdown": "^0.13.3",
|
|
145
|
+
"tsx": "^4.20.3",
|
|
145
146
|
"typescript": "^5.9.2",
|
|
146
147
|
"uncase": "^0.1.0",
|
|
147
148
|
"vitest": "^3.2.4"
|
|
@@ -154,18 +155,21 @@
|
|
|
154
155
|
"*.{css,scss,html}": "prettier -uw"
|
|
155
156
|
},
|
|
156
157
|
"scripts": {
|
|
157
|
-
"build": "
|
|
158
|
-
"dev": "
|
|
158
|
+
"build": "run-s types:generate lib:build",
|
|
159
|
+
"dev": "run-s types:generate lib:dev",
|
|
159
160
|
"docs:build": "pnpm -C docs run build",
|
|
160
161
|
"docs:dev": "pnpm -C docs run dev",
|
|
161
162
|
"inspector:build": "run-s build inspector:generate",
|
|
162
163
|
"inspector:generate": "pnpm dlx @eslint/config-inspector build --config eslint-inspector.config.ts",
|
|
164
|
+
"lib:build": "tsdown",
|
|
165
|
+
"lib:dev": "tsdown --watch",
|
|
163
166
|
"lint": "eslint --cache",
|
|
164
167
|
"release": "run-s release:check release:version release:publish",
|
|
165
168
|
"release:check": "run-s build lint test typecheck",
|
|
166
169
|
"release:publish": "pnpm publish",
|
|
167
170
|
"release:version": "bumpp",
|
|
168
171
|
"test": "vitest",
|
|
169
|
-
"typecheck": "tsc --noEmit"
|
|
172
|
+
"typecheck": "tsc --noEmit",
|
|
173
|
+
"types:generate": "tsx scripts/generateType.ts"
|
|
170
174
|
}
|
|
171
175
|
}
|