@wistia/eslint-config 1.5.1 → 1.5.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @wistia/eslint-config
|
|
2
2
|
|
|
3
|
+
## 1.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#418](https://github.com/wistia/eslint-config/pull/418) [`7ad0310`](https://github.com/wistia/eslint-config/commit/7ad03102734ff7f50677f3a938bea6c9e0b17166) Thanks [@okize](https://github.com/okize)! - fix: temporarily disable `@typescript-eslint/no-useless-default-assignment` rule'
|
|
8
|
+
|
|
3
9
|
## 1.5.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
package/src/rules/typescript.mjs
CHANGED
|
@@ -712,5 +712,7 @@ export default {
|
|
|
712
712
|
|
|
713
713
|
// Disallow default values that will never be used
|
|
714
714
|
// https://typescript-eslint.io/rules/no-useless-default-assignment/
|
|
715
|
-
|
|
715
|
+
// decision: temporarily disabled because of bug
|
|
716
|
+
// see: https://github.com/typescript-eslint/typescript-eslint/issues/11849
|
|
717
|
+
'@typescript-eslint/no-useless-default-assignment': 'off',
|
|
716
718
|
};
|