import-js/eslint-plugin-import
GitHub で見るRule Proposal: No duplicate re-exports (no-duplicate-reexport)
Open
#773 opened on 2017年3月22日
help wantedrule proposal
Repository metrics
- Stars
- (4,946 stars)
- PR merge metrics
- (平均マージ 138d 22h) (30d で 3 merged PRs)
説明
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'