@ntnyq/eslint-config 3.5.1 → 3.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 +306 -85
- package/dist/index.d.cts +32 -19
- package/dist/index.d.ts +32 -19
- package/dist/index.js +306 -85
- package/package.json +10 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ntnyq/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.6.0",
|
|
5
5
|
"packageManager": "pnpm@9.14.2",
|
|
6
6
|
"description": "An opinionated ESLint config preset of ntnyq",
|
|
7
7
|
"keywords": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "pnpm run generate:type && tsup",
|
|
43
43
|
"clean": "rimraf dist",
|
|
44
|
-
"dev": "tsup --watch",
|
|
44
|
+
"dev": "tsup --watch src",
|
|
45
45
|
"generate:site": "tsx scripts/generateSite.ts",
|
|
46
46
|
"generate:type": "tsx scripts/generateType.ts",
|
|
47
47
|
"lint": "eslint --flag unstable_ts_config .",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"release": "run-s release:check release:version",
|
|
50
50
|
"release:check": "run-s clean build lint typecheck",
|
|
51
51
|
"release:version": "bumpp && npm publish",
|
|
52
|
+
"test": "vitest",
|
|
52
53
|
"typecheck": "tsc --noEmit"
|
|
53
54
|
},
|
|
54
55
|
"peerDependencies": {
|
|
@@ -60,7 +61,7 @@
|
|
|
60
61
|
"@eslint/markdown": "^6.2.1",
|
|
61
62
|
"@stylistic/eslint-plugin": "^2.11.0",
|
|
62
63
|
"@unocss/eslint-plugin": "^0.64.1",
|
|
63
|
-
"@vitest/eslint-plugin": "^1.1.
|
|
64
|
+
"@vitest/eslint-plugin": "^1.1.12",
|
|
64
65
|
"eslint-config-flat-gitignore": "^0.3.0",
|
|
65
66
|
"eslint-flat-config-utils": "^0.4.0",
|
|
66
67
|
"eslint-merge-processors": "^0.1.0",
|
|
@@ -69,11 +70,11 @@
|
|
|
69
70
|
"eslint-plugin-format": "^0.1.2",
|
|
70
71
|
"eslint-plugin-github-action": "^0.0.4",
|
|
71
72
|
"eslint-plugin-import-x": "^4.4.3",
|
|
72
|
-
"eslint-plugin-jsdoc": "^50.
|
|
73
|
+
"eslint-plugin-jsdoc": "^50.6.0",
|
|
73
74
|
"eslint-plugin-jsonc": "^2.18.2",
|
|
74
75
|
"eslint-plugin-n": "^17.14.0",
|
|
75
76
|
"eslint-plugin-ntnyq": "^0.7.0",
|
|
76
|
-
"eslint-plugin-perfectionist": "^4.
|
|
77
|
+
"eslint-plugin-perfectionist": "^4.1.2",
|
|
77
78
|
"eslint-plugin-prettier": "^5.2.1",
|
|
78
79
|
"eslint-plugin-regexp": "^2.7.0",
|
|
79
80
|
"eslint-plugin-toml": "^0.11.1",
|
|
@@ -85,7 +86,7 @@
|
|
|
85
86
|
"globals": "^15.12.0",
|
|
86
87
|
"jsonc-eslint-parser": "^2.4.0",
|
|
87
88
|
"local-pkg": "^0.5.1",
|
|
88
|
-
"prettier": "^3.
|
|
89
|
+
"prettier": "^3.4.1",
|
|
89
90
|
"toml-eslint-parser": "^0.10.0",
|
|
90
91
|
"typescript-eslint": "^8.16.0",
|
|
91
92
|
"vue-eslint-parser": "^9.4.3",
|
|
@@ -93,7 +94,7 @@
|
|
|
93
94
|
},
|
|
94
95
|
"devDependencies": {
|
|
95
96
|
"@ntnyq/prettier-config": "^1.22.0",
|
|
96
|
-
"@types/node": "^22.
|
|
97
|
+
"@types/node": "^22.10.1",
|
|
97
98
|
"bumpp": "^9.8.1",
|
|
98
99
|
"eslint": "^9.15.0",
|
|
99
100
|
"eslint-typegen": "^0.3.2",
|
|
@@ -105,7 +106,8 @@
|
|
|
105
106
|
"tsup": "^8.3.5",
|
|
106
107
|
"tsx": "^4.19.2",
|
|
107
108
|
"typescript": "^5.7.2",
|
|
108
|
-
"
|
|
109
|
+
"vitest": "^2.1.6",
|
|
110
|
+
"zx": "^8.2.3"
|
|
109
111
|
},
|
|
110
112
|
"engines": {
|
|
111
113
|
"node": ">=18.18.0"
|