From 4c07c895a53aed9988ce53333ca387dce3fefab7 Mon Sep 17 00:00:00 2001 From: soufianeboutahlil Date: Tue, 23 Mar 2021 20:59:55 +0100 Subject: [PATCH] Fix: ignore unmergable imports when checking no-duplicate-imports (fixes #13180) & Fix: Ignore re-export all in no-duplicate-imports (fixes #12760) --- docs/rules/no-duplicate-imports.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-duplicate-imports.md b/docs/rules/no-duplicate-imports.md index ea198721a0dc..ac536dd59220 100644 --- a/docs/rules/no-duplicate-imports.md +++ b/docs/rules/no-duplicate-imports.md @@ -70,7 +70,7 @@ export { find }; ``` There is a special case even the export is duplicate we ignore it, because it can't be merged with another import/export from the same source, it's when we have export with type export *. - + Example of **correct** code for this rule with the `{ "includeExports": true }` option: ```js