eslint-config-silverwind 96.0.4 → 96.0.6
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.js +6 -5
- package/dist/index.json +2 -2
- package/package.json +2 -3
package/dist/index.js
CHANGED
|
@@ -61,10 +61,10 @@ const eslintrc = {
|
|
|
61
61
|
"import/parsers": {
|
|
62
62
|
"@typescript-eslint/parser": [".js", ".jsx", ".ts", ".tsx"]
|
|
63
63
|
},
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
},
|
|
64
|
+
// avoid warning when react dependency is not there
|
|
65
|
+
// "react": { // used by eslint-plugin-react
|
|
66
|
+
// version: "detect",
|
|
67
|
+
// },
|
|
68
68
|
"linkComponents": [
|
|
69
69
|
// used by eslint-plugin-react
|
|
70
70
|
{ name: "Link", linkAttribute: "href" }
|
|
@@ -563,7 +563,8 @@ const eslintrc = {
|
|
|
563
563
|
"id-length": [0],
|
|
564
564
|
"id-match": [0],
|
|
565
565
|
"import/consistent-type-specifier-style": [0],
|
|
566
|
-
"import/default": [
|
|
566
|
+
"import/default": [0],
|
|
567
|
+
// has bugs, at least with monaco-editor package
|
|
567
568
|
"import/dynamic-import-chunkname": [0],
|
|
568
569
|
"import/export": [2],
|
|
569
570
|
"import/exports-last": [0],
|
package/dist/index.json
CHANGED
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
]
|
|
52
52
|
},
|
|
53
53
|
"react": {
|
|
54
|
-
"version": "
|
|
54
|
+
"version": "19"
|
|
55
55
|
},
|
|
56
56
|
"linkComponents": [
|
|
57
57
|
{
|
|
@@ -1582,7 +1582,7 @@
|
|
|
1582
1582
|
0
|
|
1583
1583
|
],
|
|
1584
1584
|
"import/default": [
|
|
1585
|
-
|
|
1585
|
+
0
|
|
1586
1586
|
],
|
|
1587
1587
|
"import/dynamic-import-chunkname": [
|
|
1588
1588
|
0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-silverwind",
|
|
3
|
-
"version": "96.0.
|
|
3
|
+
"version": "96.0.6",
|
|
4
4
|
"description": "Exhaustive ESLint configuration",
|
|
5
5
|
"author": "silverwind <me@silverwind.io>",
|
|
6
6
|
"repository": "silverwind/eslint-config-silverwind",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"eslint-plugin-react-hooks": "5.1.0",
|
|
33
33
|
"eslint-plugin-react-refresh": "0.4.16",
|
|
34
34
|
"eslint-plugin-regexp": "2.7.0",
|
|
35
|
-
"eslint-plugin-sonarjs": "
|
|
35
|
+
"eslint-plugin-sonarjs": "3.0.1",
|
|
36
36
|
"eslint-plugin-storybook": "0.11.1",
|
|
37
37
|
"eslint-plugin-unicorn": "56.0.1",
|
|
38
38
|
"eslint-plugin-validate-jsx-nesting": "0.1.1",
|
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"@types/eslint-plugin-jsx-a11y": "6.10.0",
|
|
47
47
|
"@types/node": "22.10.1",
|
|
48
48
|
"eslint": "9.16.0",
|
|
49
|
-
"react": "19.0.0",
|
|
50
49
|
"typescript": "5.7.2",
|
|
51
50
|
"typescript-config-silverwind": "6.2.0",
|
|
52
51
|
"updates": "16.4.0",
|