linter-bundle 2.8.1 → 2.8.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 +7 -1
- package/eslint/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.8.
|
|
9
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.8.2...HEAD)
|
|
10
|
+
|
|
11
|
+
## [2.8.2] - 2022.02.19
|
|
12
|
+
|
|
13
|
+
- [eslint] Disable `@typescript-eslint/no-unnecessary-type-arguments` rule, because of false positives with `React.FunctionComponent` generics
|
|
14
|
+
|
|
15
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.8.1...v2.8.2)
|
|
10
16
|
|
|
11
17
|
## [2.8.1] - 2022.02.19
|
|
12
18
|
|
package/eslint/index.js
CHANGED
|
@@ -660,7 +660,7 @@ module.exports = {
|
|
|
660
660
|
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'error',
|
|
661
661
|
'@typescript-eslint/no-unnecessary-condition': 'error',
|
|
662
662
|
'@typescript-eslint/no-unnecessary-qualifier': 'error',
|
|
663
|
-
'@typescript-eslint/no-unnecessary-type-arguments': '
|
|
663
|
+
'@typescript-eslint/no-unnecessary-type-arguments': 'off', // @todo Disabled because of false positives with `React.FunctionComponent` generics
|
|
664
664
|
'@typescript-eslint/no-unnecessary-type-assertion': 'error',
|
|
665
665
|
'@typescript-eslint/no-unnecessary-type-constraint': 'error',
|
|
666
666
|
'@typescript-eslint/no-unsafe-argument': 'error',
|