@cuiqg/eslint-config 2.2.3 → 2.3.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/LICENSE +24 -24
- package/README.md +3 -45
- package/dist/index.d.ts +124 -0
- package/dist/index.js +391 -857
- package/package.json +69 -45
package/package.json
CHANGED
|
@@ -1,61 +1,85 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuiqg/eslint-config",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
|
|
3
|
+
"version": "2.3.0",
|
|
4
|
+
"description": "Eslint config for @cuiqg",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"eslint-config"
|
|
7
|
+
],
|
|
8
|
+
"homepage": "https://eslint.tsuiqg.me",
|
|
7
9
|
"repository": {
|
|
8
10
|
"type": "git",
|
|
9
11
|
"url": "git+https://github.com/cuiqg/eslint-config.git"
|
|
10
12
|
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public",
|
|
15
|
+
"registry": "https://registry.npmjs.org/"
|
|
16
|
+
},
|
|
17
|
+
"license": "Unlicense",
|
|
11
18
|
"author": "Tsuiqg <i@tsuiqg.me>",
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
19
|
+
"type": "module",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@cuiqg/prettier-config": "latest",
|
|
22
|
+
"@cuiqg/typescript-config": "^0.1.2",
|
|
23
|
+
"@eslint/config-inspector": "^1.1.0",
|
|
24
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
25
|
+
"@types/node": "^24.2.0",
|
|
26
|
+
"@vitest/ui": "^3.2.4",
|
|
27
|
+
"bumpp": "^10.2.2",
|
|
28
|
+
"eslint": "^9.32.0",
|
|
29
|
+
"prettier": "^3.6.2",
|
|
30
|
+
"publint": "^0.3.12",
|
|
31
|
+
"tsdown": "^0.13.3",
|
|
32
|
+
"vitest": "^3.2.4"
|
|
18
33
|
},
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"access": "public"
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"eslint": ">=9.28.0"
|
|
22
36
|
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"build:inspector": "npx @eslint/config-inspector build",
|
|
26
|
-
"lint:inspector": "npx @eslint/config-inspector --open false",
|
|
27
|
-
"lint": "eslint .",
|
|
28
|
-
"lint:fix": "eslint . --fix",
|
|
29
|
-
"prepublishOnly": "npm run build",
|
|
30
|
-
"release": "bumpp && npm publish"
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=22.11.0"
|
|
31
39
|
},
|
|
32
40
|
"dependencies": {
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
41
|
+
"@eslint/js": "^9.32.0",
|
|
42
|
+
"@next/eslint-plugin-next": "^15.4.6",
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^8.39.0",
|
|
44
|
+
"@typescript-eslint/parser": "^8.39.0",
|
|
45
|
+
"@unocss/eslint-plugin": "^66.4.2",
|
|
35
46
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
36
|
-
"eslint-
|
|
37
|
-
"eslint-
|
|
38
|
-
"eslint-
|
|
39
|
-
"eslint-plugin-
|
|
40
|
-
"eslint-plugin-
|
|
41
|
-
"eslint-plugin-
|
|
42
|
-
"eslint-plugin-
|
|
43
|
-
"eslint-plugin-
|
|
44
|
-
"eslint-plugin-
|
|
45
|
-
"eslint-plugin-
|
|
46
|
-
"eslint-plugin-
|
|
47
|
-
"eslint-plugin-
|
|
48
|
-
"
|
|
47
|
+
"eslint-config-prettier": "^10.1.8",
|
|
48
|
+
"eslint-flat-config-utils": "^2.1.1",
|
|
49
|
+
"eslint-merge-processors": "^2.0.0",
|
|
50
|
+
"eslint-plugin-de-morgan": "^1.3.1",
|
|
51
|
+
"eslint-plugin-depend": "^1.2.0",
|
|
52
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
53
|
+
"eslint-plugin-jsdoc": "^52.0.4",
|
|
54
|
+
"eslint-plugin-n": "^17.21.3",
|
|
55
|
+
"eslint-plugin-package-json": "^0.52.1",
|
|
56
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
57
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
58
|
+
"eslint-plugin-vue": "^10.4.0",
|
|
59
|
+
"eslint-plugin-vuejs-accessibility": "^2.4.1",
|
|
60
|
+
"eslint-processor-vue-blocks": "^2.0.0",
|
|
61
|
+
"globals": "^16.3.0",
|
|
49
62
|
"jsonc-eslint-parser": "^2.4.0",
|
|
50
63
|
"local-pkg": "^1.1.1",
|
|
51
|
-
"
|
|
52
|
-
"unconfig": "^7.3.2",
|
|
53
|
-
"vue-eslint-parser": "^10.1.3",
|
|
54
|
-
"yaml-eslint-parser": "^1.3.0"
|
|
64
|
+
"vue-eslint-parser": "^10.2.0"
|
|
55
65
|
},
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
66
|
+
"prettier": "@cuiqg/prettier-config",
|
|
67
|
+
"main": "./dist/index.js",
|
|
68
|
+
"exports": {
|
|
69
|
+
".": "./dist/index.js"
|
|
70
|
+
},
|
|
71
|
+
"types": "./dist/index.d.ts",
|
|
72
|
+
"files": [
|
|
73
|
+
"./dist"
|
|
74
|
+
],
|
|
75
|
+
"scripts": {
|
|
76
|
+
"build": "tsdown",
|
|
77
|
+
"dev": "tsdown --watch",
|
|
78
|
+
"build:inspect": "pnpm build && eslint-config-inspector build --config eslint-inspector.config.ts",
|
|
79
|
+
"lint": "eslint .",
|
|
80
|
+
"lint:inspect": "eslint-config-inspector --open false --config eslint-inspector.config.ts",
|
|
81
|
+
"release": "bumpp && pnpm publish",
|
|
82
|
+
"test": "vitest --ui",
|
|
83
|
+
"typecheck": "tsc --noEmit --pretty"
|
|
60
84
|
}
|
|
61
|
-
}
|
|
85
|
+
}
|