import-js/eslint-plugin-import
Auf GitHub ansehenRule Proposal: No duplicate re-exports (no-duplicate-reexport)
Open
#773 geöffnet am 22. März 2017
help wantedrule proposal
Repository-Metriken
- Stars
- (4.946 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 138T 22h) (3 gemergte PRs in 30 T)
Beschreibung
With such a rule, the following would be considered a problem
export {a} from './source-file'
export {b} from './source-file'
export {c} from './source-file'
The following would not be considered a problem
export {a, b, c} from './source-file'