@wistia/eslint-config 2.4.4 → 2.4.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/CHANGELOG.md +12 -0
- package/package.json +3 -3
- package/src/rules/import.mjs +2 -1
- package/src/rules/typescript.mjs +3 -1
- package/src/rules/vitest.mjs +1 -1
- package/test/__snapshots__/javascript.mjs.snap +2 -2
- package/test/__snapshots__/typescript.mjs.snap +4 -4
- package/test/__snapshots__/vitest.mjs.snap +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @wistia/eslint-config
|
|
2
2
|
|
|
3
|
+
## 2.4.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#460](https://github.com/wistia/eslint-config/pull/460) [`f64171a`](https://github.com/wistia/eslint-config/commit/f64171a08af79506c27f8612511285ad2e253d24) Thanks [@okize](https://github.com/okize)! - fix: disable `@typescript-eslint/init-declarations` because conflict with `no-useless-assignment`
|
|
8
|
+
|
|
9
|
+
## 2.4.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#458](https://github.com/wistia/eslint-config/pull/458) [`b5f69cb`](https://github.com/wistia/eslint-config/commit/b5f69cb7fc61550f2f6c498bdbe1a370007604c2) Thanks [@okize](https://github.com/okize)! - fix: set `import-x/no-cycle` maxDepth to 2 for perofmance improvement
|
|
14
|
+
|
|
3
15
|
## 2.4.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wistia/eslint-config",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.6",
|
|
4
4
|
"description": "Wistia's ESLint configurations",
|
|
5
5
|
"packageManager": "yarn@4.12.0",
|
|
6
6
|
"type": "module",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@eslint/compat": "^2.0.3",
|
|
43
43
|
"@eslint/js": "^10.0.1",
|
|
44
44
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
|
46
|
-
"@typescript-eslint/parser": "^8.57.2",
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^8.57.3-alpha.2",
|
|
46
|
+
"@typescript-eslint/parser": "^8.57.3-alpha.2",
|
|
47
47
|
"@vitest/eslint-plugin": "^1.6.13",
|
|
48
48
|
"confusing-browser-globals": "^1.0.11",
|
|
49
49
|
"eslint-import-resolver-typescript": "^4.4.4",
|
package/src/rules/import.mjs
CHANGED
|
@@ -5,7 +5,8 @@ export default {
|
|
|
5
5
|
|
|
6
6
|
// Forbid cyclical dependencies between modules
|
|
7
7
|
// https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-cycle.md
|
|
8
|
-
|
|
8
|
+
// decision: set `maxDepth` to 2 because setting it higher is too much of a performance hit
|
|
9
|
+
'import-x/no-cycle': ['error', { maxDepth: 2 }],
|
|
9
10
|
|
|
10
11
|
// ensure imports point to files/modules that can be resolved
|
|
11
12
|
// https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-unresolved.md
|
package/src/rules/typescript.mjs
CHANGED
|
@@ -204,7 +204,9 @@ export default {
|
|
|
204
204
|
|
|
205
205
|
// Require or disallow initialization in variable declarations
|
|
206
206
|
// https://typescript-eslint.io/rules/init-declarations
|
|
207
|
-
|
|
207
|
+
// decision: disabled because it conflicts with `no-useless-assignment` — forcing initializers on
|
|
208
|
+
// `let` declarations that are immediately overwritten creates dead stores and obscures real bugs
|
|
209
|
+
'@typescript-eslint/init-declarations': 'off',
|
|
208
210
|
|
|
209
211
|
// Enforce a maximum number of parameters in function definitions
|
|
210
212
|
// https://typescript-eslint.io/rules/max-params
|
package/src/rules/vitest.mjs
CHANGED
|
@@ -222,7 +222,7 @@ export default {
|
|
|
222
222
|
// Prefer vi.importActual/vi.importMock in vi.mock factories
|
|
223
223
|
// https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-import-in-mock.md
|
|
224
224
|
// decision: potentially helpful but causes too many type errors
|
|
225
|
-
'vitest/prefer-import-in-mock': '
|
|
225
|
+
'vitest/prefer-import-in-mock': 'off',
|
|
226
226
|
|
|
227
227
|
// Prefer importing vitest globals instead of using them implicitly
|
|
228
228
|
// https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-importing-vitest-globals.md
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"undefined": false,
|
|
65
65
|
"unescape": false,
|
|
66
66
|
},
|
|
67
|
-
"parser": "typescript-eslint/parser@8.57.2",
|
|
67
|
+
"parser": "typescript-eslint/parser@8.57.3-alpha.2",
|
|
68
68
|
"parserOptions": {
|
|
69
69
|
"requireConfigFile": false,
|
|
70
70
|
},
|
|
@@ -915,7 +915,7 @@
|
|
|
915
915
|
{
|
|
916
916
|
"allowUnsafeDynamicCyclicDependency": false,
|
|
917
917
|
"ignoreExternal": false,
|
|
918
|
-
"maxDepth":
|
|
918
|
+
"maxDepth": 2,
|
|
919
919
|
},
|
|
920
920
|
],
|
|
921
921
|
"import-x/no-default-export": [
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"undefined": false,
|
|
65
65
|
"unescape": false,
|
|
66
66
|
},
|
|
67
|
-
"parser": "typescript-eslint/parser@8.57.2",
|
|
67
|
+
"parser": "typescript-eslint/parser@8.57.3-alpha.2",
|
|
68
68
|
"parserOptions": {
|
|
69
69
|
"ecmaVersion": 2024,
|
|
70
70
|
"project": "./tsconfig.json",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"plugins": [
|
|
79
79
|
"@",
|
|
80
80
|
"@stylistic:@stylistic/eslint-plugin@5.10.0",
|
|
81
|
-
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.57.2",
|
|
81
|
+
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.57.3-alpha.2",
|
|
82
82
|
"barrel-files:eslint-plugin-barrel-files@3.0.1",
|
|
83
83
|
"filenames",
|
|
84
84
|
"import-x:eslint-plugin-import-x@4.16.2",
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
2,
|
|
738
738
|
],
|
|
739
739
|
"@typescript-eslint/init-declarations": [
|
|
740
|
-
|
|
740
|
+
0,
|
|
741
741
|
],
|
|
742
742
|
"@typescript-eslint/max-params": [
|
|
743
743
|
0,
|
|
@@ -1375,7 +1375,7 @@
|
|
|
1375
1375
|
{
|
|
1376
1376
|
"allowUnsafeDynamicCyclicDependency": false,
|
|
1377
1377
|
"ignoreExternal": false,
|
|
1378
|
-
"maxDepth":
|
|
1378
|
+
"maxDepth": 2,
|
|
1379
1379
|
},
|
|
1380
1380
|
],
|
|
1381
1381
|
"import-x/no-default-export": [
|