@fullstacksjs/eslint-config 10.0.1 → 10.2.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/jest.js +0 -3
- package/package.json +21 -22
- package/test.js +5 -1
package/jest.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fullstacksjs/eslint-config",
|
|
3
|
-
"version": "10.0
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "fullstacks <fullstacksjs@gmail.com>",
|
|
6
6
|
"description": "fullstacks eslint config",
|
|
@@ -48,45 +48,44 @@
|
|
|
48
48
|
},
|
|
49
49
|
"main": "index.js",
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"@typescript-eslint/
|
|
54
|
-
"@typescript-eslint/parser": "5.61.0",
|
|
51
|
+
"@graphql-eslint/eslint-plugin": "3.20.1",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "6.6.0",
|
|
53
|
+
"@typescript-eslint/parser": "6.6.0",
|
|
55
54
|
"deepmerge": "4.3.1",
|
|
56
|
-
"eslint-config-next": "13.4.
|
|
57
|
-
"eslint-config-prettier": "
|
|
58
|
-
"eslint-import-resolver-typescript": "3.
|
|
59
|
-
"eslint-plugin-cypress": "2.
|
|
55
|
+
"eslint-config-next": "13.4.19",
|
|
56
|
+
"eslint-config-prettier": "9.0.0",
|
|
57
|
+
"eslint-import-resolver-typescript": "3.6.0",
|
|
58
|
+
"eslint-plugin-cypress": "2.14.0",
|
|
60
59
|
"eslint-plugin-fp": "2.3.0",
|
|
61
|
-
"eslint-plugin-import": "2.
|
|
62
|
-
"eslint-plugin-jest": "27.2.
|
|
60
|
+
"eslint-plugin-import": "2.28.1",
|
|
61
|
+
"eslint-plugin-jest": "27.2.3",
|
|
63
62
|
"eslint-plugin-jest-formatting": "3.1.0",
|
|
64
63
|
"eslint-plugin-jsx-a11y": "6.7.1",
|
|
65
64
|
"eslint-plugin-node": "11.1.0",
|
|
66
65
|
"eslint-plugin-prettier": "5.0.0",
|
|
67
66
|
"eslint-plugin-promise": "6.1.1",
|
|
68
|
-
"eslint-plugin-react": "7.
|
|
67
|
+
"eslint-plugin-react": "7.33.2",
|
|
69
68
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
70
69
|
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
71
|
-
"eslint-plugin-storybook": "0.6.
|
|
70
|
+
"eslint-plugin-storybook": "0.6.13",
|
|
72
71
|
"eslint-plugin-tailwindcss": "3.13.0",
|
|
73
72
|
"read-pkg-up": "7.0.1"
|
|
74
73
|
},
|
|
75
74
|
"devDependencies": {
|
|
76
|
-
"@semantic-release/github": "9.0.
|
|
77
|
-
"@semantic-release/npm": "10.0.
|
|
78
|
-
"@semantic-release/release-notes-generator": "11.0.
|
|
79
|
-
"cspell": "
|
|
80
|
-
"eslint": "8.
|
|
75
|
+
"@semantic-release/github": "9.0.4",
|
|
76
|
+
"@semantic-release/npm": "10.0.5",
|
|
77
|
+
"@semantic-release/release-notes-generator": "11.0.7",
|
|
78
|
+
"cspell": "7.3.2",
|
|
79
|
+
"eslint": "8.48.0",
|
|
81
80
|
"eslint-find-rules": "4.1.0",
|
|
82
81
|
"husky": "8.0.3",
|
|
83
|
-
"lint-staged": "
|
|
82
|
+
"lint-staged": "14.0.1",
|
|
84
83
|
"np": "8.0.4",
|
|
85
84
|
"npm-run-all": "4.1.5",
|
|
86
85
|
"pinst": "3.0.0",
|
|
87
|
-
"prettier": "3.0.
|
|
88
|
-
"semantic-release": "21.
|
|
89
|
-
"typescript": "5.
|
|
86
|
+
"prettier": "3.0.3",
|
|
87
|
+
"semantic-release": "21.1.1",
|
|
88
|
+
"typescript": "5.2.2"
|
|
90
89
|
},
|
|
91
90
|
"peerDependencies": {
|
|
92
91
|
"cypress": ">=8",
|
package/test.js
CHANGED
|
@@ -22,8 +22,11 @@ module.exports = {
|
|
|
22
22
|
'jest-formatting/padding-around-expect-groups': 'warn',
|
|
23
23
|
'jest-formatting/padding-around-test-blocks': 'warn',
|
|
24
24
|
|
|
25
|
-
// other modules
|
|
26
25
|
'max-lines-per-function': 'off',
|
|
26
|
+
'fp/no-let': 'off',
|
|
27
|
+
'fp/no-loops': 'off',
|
|
28
|
+
'no-sparse-arrays': 'off',
|
|
29
|
+
|
|
27
30
|
...(global.fullstacksjs?.react && {
|
|
28
31
|
'react/jsx-no-constructed-context-values': 'off',
|
|
29
32
|
}),
|
|
@@ -31,6 +34,7 @@ module.exports = {
|
|
|
31
34
|
'@typescript-eslint/method-signature-style': 'off',
|
|
32
35
|
'@typescript-eslint/no-namespace ': 'off',
|
|
33
36
|
'@typescript-eslint/unbound-method': 'off',
|
|
37
|
+
'@typescript-eslint/no-empty-function': 'off',
|
|
34
38
|
}),
|
|
35
39
|
},
|
|
36
40
|
};
|