@vitnode/config 1.2.0-canary.70 → 1.2.0-canary.73
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/eslint.config.mjs +3 -0
- package/eslint.react.config.mjs +0 -2
- package/package.json +14 -14
package/eslint.config.mjs
CHANGED
|
@@ -12,6 +12,9 @@ export default [
|
|
|
12
12
|
"dist",
|
|
13
13
|
"**/\\(main\\)/\\(plugins\\)/**",
|
|
14
14
|
"**/\\(auth\\)/\\(plugins\\)/**",
|
|
15
|
+
"**/\\(blank\\)/\\(plugins\\)/**",
|
|
16
|
+
"**/\\(main\\)/@breadcrumb/**",
|
|
17
|
+
"**/\\(auth\\)/@breadcrumb/**",
|
|
15
18
|
".prettierrc.mjs",
|
|
16
19
|
"node_modules",
|
|
17
20
|
"eslint.config.mjs",
|
package/eslint.react.config.mjs
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
// @ts-check
|
|
2
2
|
|
|
3
3
|
import eslintReact from "@eslint-react/eslint-plugin";
|
|
4
|
-
import reactPlugin from "eslint-plugin-react";
|
|
5
4
|
import hooksPlugin from "eslint-plugin-react-hooks";
|
|
6
5
|
import reactYouMightNotNeedAnEffect from "eslint-plugin-react-you-might-not-need-an-effect";
|
|
7
6
|
|
|
8
7
|
export default [
|
|
9
8
|
reactYouMightNotNeedAnEffect.configs.recommended,
|
|
10
9
|
eslintReact.configs.recommended,
|
|
11
|
-
reactPlugin.configs.flat.recommended,
|
|
12
10
|
{
|
|
13
11
|
files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"],
|
|
14
12
|
settings: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitnode/config",
|
|
3
|
-
"version": "1.2.0-canary.
|
|
3
|
+
"version": "1.2.0-canary.73",
|
|
4
4
|
"description": "ESLint, Prettier, TypeScript (TSConfig) config for VitNode",
|
|
5
5
|
"author": "VitNode Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,24 +37,24 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"eslint": "^
|
|
41
|
-
"prettier": "^3.
|
|
42
|
-
"typescript": "
|
|
40
|
+
"eslint": "^10.0.0",
|
|
41
|
+
"prettier": "^3.x.x",
|
|
42
|
+
"typescript": "6.0.x"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"
|
|
45
|
+
"eslint": "^10.5.0",
|
|
46
|
+
"typescript": "^6.0.3"
|
|
46
47
|
},
|
|
47
48
|
"dependencies": {
|
|
48
|
-
"@eslint-react/eslint-plugin": "^
|
|
49
|
-
"@eslint/js": "^
|
|
49
|
+
"@eslint-react/eslint-plugin": "^5.9.0",
|
|
50
|
+
"@eslint/js": "^10.0.1",
|
|
50
51
|
"eslint-config-prettier": "^10.1.8",
|
|
51
52
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
52
|
-
"eslint-plugin-perfectionist": "^
|
|
53
|
-
"eslint-plugin-prettier": "^5.5.
|
|
54
|
-
"eslint-plugin-react": "^7.
|
|
55
|
-
"eslint-plugin-react-
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"typescript-eslint": "^8.46.4"
|
|
53
|
+
"eslint-plugin-perfectionist": "^5.9.0",
|
|
54
|
+
"eslint-plugin-prettier": "^5.5.6",
|
|
55
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
56
|
+
"eslint-plugin-react-you-might-not-need-an-effect": "^1.0.0",
|
|
57
|
+
"prettier-plugin-tailwindcss": "^0.8.0",
|
|
58
|
+
"typescript-eslint": "^8.61.0"
|
|
59
59
|
}
|
|
60
60
|
}
|