import-js/eslint-plugin-import

no-duplicates should also consider `export from`

Open

#2,958 opened on Jan 29, 2024

View on GitHub
 (1 comment) (1 reaction) (0 assignees)JavaScript (1,540 forks)batch import
enhancementhelp wantedsemver-minor

Repository metrics

Stars
 (4,946 stars)
PR merge metrics
 (Avg merge 138d 22h) (3 merged PRs in 30d)

Description

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";

Contributor guide