eslint-config-silverwind 100.2.0 → 100.2.2
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 +3 -1
- package/dist/index.json +4 -1
- package/package.json +13 -13
package/dist/index.js
CHANGED
|
@@ -452,10 +452,12 @@ const eslintrc = o({
|
|
|
452
452
|
"@typescript-eslint/no-unnecessary-parameter-property-assignment": [2],
|
|
453
453
|
"@typescript-eslint/no-unnecessary-qualifier": [0],
|
|
454
454
|
"@typescript-eslint/no-unnecessary-template-expression": [0],
|
|
455
|
-
"@typescript-eslint/no-unnecessary-type-arguments": [
|
|
455
|
+
"@typescript-eslint/no-unnecessary-type-arguments": [0],
|
|
456
456
|
"@typescript-eslint/no-unnecessary-type-assertion": [2],
|
|
457
457
|
// previously had typesToIgnore: [HTMLElement, NodeListOf<HTMLElement>]
|
|
458
458
|
"@typescript-eslint/no-unnecessary-type-constraint": [2],
|
|
459
|
+
"@typescript-eslint/no-unnecessary-type-conversion": [0],
|
|
460
|
+
// TODO: evaluate
|
|
459
461
|
"@typescript-eslint/no-unsafe-argument": [0],
|
|
460
462
|
"@typescript-eslint/no-unsafe-assignment": [0],
|
|
461
463
|
"@typescript-eslint/no-unsafe-call": [0],
|
package/dist/index.json
CHANGED
|
@@ -1245,7 +1245,7 @@
|
|
|
1245
1245
|
0
|
|
1246
1246
|
],
|
|
1247
1247
|
"@typescript-eslint/no-unnecessary-type-arguments": [
|
|
1248
|
-
|
|
1248
|
+
0
|
|
1249
1249
|
],
|
|
1250
1250
|
"@typescript-eslint/no-unnecessary-type-assertion": [
|
|
1251
1251
|
2
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"@typescript-eslint/no-unnecessary-type-constraint": [
|
|
1254
1254
|
2
|
|
1255
1255
|
],
|
|
1256
|
+
"@typescript-eslint/no-unnecessary-type-conversion": [
|
|
1257
|
+
0
|
|
1258
|
+
],
|
|
1256
1259
|
"@typescript-eslint/no-unsafe-argument": [
|
|
1257
1260
|
0
|
|
1258
1261
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-silverwind",
|
|
3
|
-
"version": "100.2.
|
|
3
|
+
"version": "100.2.2",
|
|
4
4
|
"description": "Exhaustive ESLint configuration",
|
|
5
5
|
"author": "silverwind <me@silverwind.io>",
|
|
6
6
|
"repository": "silverwind/eslint-config-silverwind",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"@stylistic/eslint-plugin-js": "3.1.0",
|
|
20
20
|
"@stylistic/eslint-plugin-jsx": "3.1.0",
|
|
21
21
|
"@stylistic/eslint-plugin-ts": "3.1.0",
|
|
22
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
23
|
-
"@typescript-eslint/parser": "8.
|
|
24
|
-
"@vitest/eslint-plugin": "1.
|
|
22
|
+
"@typescript-eslint/eslint-plugin": "8.32.1",
|
|
23
|
+
"@typescript-eslint/parser": "8.32.1",
|
|
24
|
+
"@vitest/eslint-plugin": "1.2.0",
|
|
25
25
|
"deepie-merge": "1.3.1",
|
|
26
|
-
"eslint-import-resolver-typescript": "4.3.
|
|
26
|
+
"eslint-import-resolver-typescript": "4.3.5",
|
|
27
27
|
"eslint-plugin-array-func": "4.0.0",
|
|
28
|
-
"eslint-plugin-import-x": "4.
|
|
28
|
+
"eslint-plugin-import-x": "4.12.2",
|
|
29
29
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
30
30
|
"eslint-plugin-no-use-extend-native": "0.5.0",
|
|
31
31
|
"eslint-plugin-playwright": "2.2.0",
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"eslint-plugin-tsdoc": "0.4.0",
|
|
39
39
|
"eslint-plugin-unicorn": "56.0.1",
|
|
40
40
|
"eslint-plugin-validate-jsx-nesting": "0.1.1",
|
|
41
|
-
"globals": "16.
|
|
42
|
-
"typescript-eslint": "8.
|
|
41
|
+
"globals": "16.1.0",
|
|
42
|
+
"typescript-eslint": "8.32.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/eslint": "9.6.1",
|
|
46
46
|
"@types/eslint-plugin-jsx-a11y": "6.10.0",
|
|
47
|
-
"@types/node": "22.15.
|
|
47
|
+
"@types/node": "22.15.19",
|
|
48
48
|
"eslint": "8.57.1",
|
|
49
49
|
"eslint-define-config": "2.1.0",
|
|
50
50
|
"typescript": "5.8.3",
|
|
51
|
-
"typescript-config-silverwind": "9.0.
|
|
51
|
+
"typescript-config-silverwind": "9.0.8",
|
|
52
52
|
"updates": "16.4.2",
|
|
53
53
|
"versions": "12.1.3",
|
|
54
|
-
"vite": "6.3.
|
|
55
|
-
"vite-config-silverwind": "5.2.
|
|
56
|
-
"vitest": "3.1.
|
|
54
|
+
"vite": "6.3.5",
|
|
55
|
+
"vite-config-silverwind": "5.2.4",
|
|
56
|
+
"vitest": "3.1.3",
|
|
57
57
|
"vitest-config-silverwind": "10.0.2"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|