@wistia/eslint-config 2.4.5 → 2.4.7
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.
|
@@ -29,7 +29,7 @@ jobs:
|
|
|
29
29
|
uses: ./.github/actions/setup-node-env
|
|
30
30
|
|
|
31
31
|
- name: Publish branch package to npm
|
|
32
|
-
uses: wistia/publish-branch-to-npm@v2.3.
|
|
32
|
+
uses: wistia/publish-branch-to-npm@v2.3.6
|
|
33
33
|
with:
|
|
34
34
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
35
35
|
npm_token: ${{ secrets.NPM_AUTH_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @wistia/eslint-config
|
|
2
2
|
|
|
3
|
+
## 2.4.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#463](https://github.com/wistia/eslint-config/pull/463) [`96f0593`](https://github.com/wistia/eslint-config/commit/96f0593748b91e9501ac31a77b8fca7c1f96fbdc) Thanks [@okize](https://github.com/okize)! - fix: disable `non-nullable-type-assertion-style` to resolve conflict with `no-non-null-assertion`
|
|
8
|
+
|
|
9
|
+
## 2.4.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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`
|
|
14
|
+
|
|
3
15
|
## 2.4.5
|
|
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.7",
|
|
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.
|
|
46
|
-
"@typescript-eslint/parser": "^8.
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
46
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
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",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"eslint-plugin-styled-components-a11y": "^2.2.1",
|
|
65
65
|
"eslint-plugin-testing-library": "^7.16.2",
|
|
66
66
|
"globals": "^17.4.0",
|
|
67
|
-
"globals-vitest": "^4.1.
|
|
67
|
+
"globals-vitest": "^4.1.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@changesets/changelog-github": "^0.6.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"prettier": "^3.8.1",
|
|
79
79
|
"storybook": "^10.3.3",
|
|
80
80
|
"typescript": "^6.0.2",
|
|
81
|
-
"vitest": "^4.1.
|
|
81
|
+
"vitest": "^4.1.2"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
84
|
"eslint": ">= 10",
|
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
|
|
@@ -521,7 +523,9 @@ export default {
|
|
|
521
523
|
|
|
522
524
|
// Enforce non-null assertions over explicit type casts
|
|
523
525
|
// https://typescript-eslint.io/rules/non-nullable-type-assertion-style
|
|
524
|
-
|
|
526
|
+
// decision: disabled because it conflicts with `no-non-null-assertion` — this rule's autofix
|
|
527
|
+
// rewrites `value as T` to `value!`, which `no-non-null-assertion` then rejects
|
|
528
|
+
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
|
|
525
529
|
|
|
526
530
|
// Disallow throwing non-Error values as exceptions
|
|
527
531
|
// https://typescript-eslint.io/rules/only-throw-error
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"undefined": false,
|
|
65
65
|
"unescape": false,
|
|
66
66
|
},
|
|
67
|
-
"parser": "typescript-eslint/parser@8.
|
|
67
|
+
"parser": "typescript-eslint/parser@8.58.0",
|
|
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.
|
|
81
|
+
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.58.0",
|
|
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,
|
|
@@ -1004,7 +1004,7 @@
|
|
|
1004
1004
|
2,
|
|
1005
1005
|
],
|
|
1006
1006
|
"@typescript-eslint/non-nullable-type-assertion-style": [
|
|
1007
|
-
|
|
1007
|
+
0,
|
|
1008
1008
|
],
|
|
1009
1009
|
"@typescript-eslint/only-throw-error": [
|
|
1010
1010
|
2,
|