@vinicunca/eslint-config 2.0.9 → 2.0.12
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 +21 -0
- package/dist/index.cjs +313 -191
- package/dist/index.d.cts +120 -93
- package/dist/index.d.ts +120 -93
- package/dist/index.js +326 -192
- package/package.json +28 -23
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vinicunca/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.12",
|
|
5
5
|
"description": "Vinicunca ESLint config",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "praburangki",
|
|
@@ -54,36 +54,33 @@
|
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": ">=18.0.0"
|
|
56
56
|
},
|
|
57
|
-
"scripts": {
|
|
58
|
-
"stub": "tsup src/index.ts --format esm",
|
|
59
|
-
"lint": "pnpm run stub && eslint .",
|
|
60
|
-
"test": "vitest",
|
|
61
|
-
"build": "tsup src/index.ts --format esm,cjs --clean --dts",
|
|
62
|
-
"release": "bumpp package.json --commit --push --tag --commit 'chore: release v'"
|
|
63
|
-
},
|
|
64
57
|
"peerDependencies": {
|
|
65
|
-
"eslint": ">=8.
|
|
58
|
+
"eslint": ">=8.55.0"
|
|
66
59
|
},
|
|
67
60
|
"dependencies": {
|
|
68
61
|
"@antfu/eslint-define-config": "1.23.0-2",
|
|
69
|
-
"@
|
|
70
|
-
"@typescript-eslint
|
|
71
|
-
"@
|
|
72
|
-
"@
|
|
62
|
+
"@eslint-types/jsdoc": "^46.9.0",
|
|
63
|
+
"@eslint-types/typescript-eslint": "^6.12.0",
|
|
64
|
+
"@eslint-types/unicorn": "^49.0.0",
|
|
65
|
+
"@stylistic/eslint-plugin": "^1.5.0-beta.0",
|
|
66
|
+
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
67
|
+
"@typescript-eslint/parser": "^6.13.1",
|
|
68
|
+
"@unocss/eslint-plugin": "^0.50.8",
|
|
69
|
+
"@vinicunca/eslint-plugin-vinicunca": "^1.0.9",
|
|
73
70
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
74
71
|
"eslint-plugin-i": "^2.29.0",
|
|
75
|
-
"eslint-plugin-jsdoc": "^46.
|
|
72
|
+
"eslint-plugin-jsdoc": "^46.9.0",
|
|
76
73
|
"eslint-plugin-jsonc": "^2.10.0",
|
|
77
74
|
"eslint-plugin-markdown": "^3.0.1",
|
|
78
|
-
"eslint-plugin-n": "^16.
|
|
75
|
+
"eslint-plugin-n": "^16.3.1",
|
|
79
76
|
"eslint-plugin-no-only-tests": "^3.1.0",
|
|
80
|
-
"eslint-plugin-perfectionist": "^2.
|
|
77
|
+
"eslint-plugin-perfectionist": "^2.5.0",
|
|
81
78
|
"eslint-plugin-react": "^7.33.2",
|
|
82
79
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
83
80
|
"eslint-plugin-unicorn": "^49.0.0",
|
|
84
81
|
"eslint-plugin-unused-imports": "^3.0.0",
|
|
85
|
-
"eslint-plugin-vitest": "^0.3.
|
|
86
|
-
"eslint-plugin-vue": "^9.
|
|
82
|
+
"eslint-plugin-vitest": "^0.3.10",
|
|
83
|
+
"eslint-plugin-vue": "^9.19.2",
|
|
87
84
|
"eslint-plugin-yml": "^1.10.0",
|
|
88
85
|
"globals": "^13.23.0",
|
|
89
86
|
"jsonc-eslint-parser": "^2.4.0",
|
|
@@ -93,10 +90,18 @@
|
|
|
93
90
|
"yaml-eslint-parser": "^1.2.2"
|
|
94
91
|
},
|
|
95
92
|
"devDependencies": {
|
|
96
|
-
"@eslint-stylistic/metadata": "^
|
|
97
|
-
"@types/fs-extra": "^11.0.
|
|
98
|
-
"
|
|
93
|
+
"@eslint-stylistic/metadata": "^1.4.1",
|
|
94
|
+
"@types/fs-extra": "^11.0.4",
|
|
95
|
+
"execa": "^8.0.1",
|
|
96
|
+
"fs-extra": "^11.2.0",
|
|
99
97
|
"react": "^18.2.0",
|
|
100
|
-
"tsup": "^
|
|
98
|
+
"tsup": "^8.0.1"
|
|
99
|
+
},
|
|
100
|
+
"scripts": {
|
|
101
|
+
"stub": "tsup src/index.ts --format esm",
|
|
102
|
+
"lint": "pnpm run stub && eslint .",
|
|
103
|
+
"test": "vitest",
|
|
104
|
+
"build": "tsup src/index.ts --format esm,cjs --clean --dts",
|
|
105
|
+
"release": "bumpp package.json --commit --push --tag --commit 'chore: release v'"
|
|
101
106
|
}
|
|
102
|
-
}
|
|
107
|
+
}
|