import-js / eslint-plugin-import

ESLint plugin with rules that help validate proper imports.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

no-duplicates should also consider `export from`

hornta opened this issue · comments

The following code could be combined into export { a, b } from "module"; but this rule doesn't seem to consider export.

export { a } from "module";
export { b } from "module";

I agree, that should be added (behind an option, for compat reasons)