linter-bundle 2.8.3 → 2.8.4
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.4...HEAD)
|
|
10
|
+
|
|
11
|
+
## [2.8.4] - 2022.02.19
|
|
12
|
+
|
|
13
|
+
- [eslint] Disabled [`import/no-unused-modules`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-unused-modules.md) rule, because of false positives with type exports.
|
|
14
|
+
|
|
15
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.8.3...v2.8.4)
|
|
10
16
|
|
|
11
17
|
## [2.8.3] - 2022.02.19
|
|
12
18
|
|
package/eslint/index.js
CHANGED
|
@@ -791,7 +791,7 @@ module.exports = {
|
|
|
791
791
|
]
|
|
792
792
|
}],
|
|
793
793
|
'import/no-unresolved': ['error', { caseSensitiveStrict: true }],
|
|
794
|
-
'import/no-unused-modules': ['
|
|
794
|
+
'import/no-unused-modules': ['off', { unusedExports: true }], // Disabled because of false-positive with `export type { ... }` + `import type { ... }`
|
|
795
795
|
'import/no-useless-path-segments': 'error',
|
|
796
796
|
'import/no-webpack-loader-syntax': 'off', // Indeed, you should avoid that, but if we do it, we have a reason for it
|
|
797
797
|
'import/order': ['error', {
|