import-js/eslint-plugin-import

Rule Proposal: No duplicate re-exports (no-duplicate-reexport)

Open

#773 建立於 2017年3月22日

在 GitHub 查看
 (5 留言) (1 反應) (0 負責人)JavaScript (4,946 star) (1,540 fork)batch import
help wantedrule proposal

描述

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'

貢獻者指南