enhancementhelp wanted
倉庫指標
- Star
- (4,946 star)
- PR 合併指標
- (平均合併 138天 22小時) (30 天內合併 3 個 PR)
描述
I have following code :
const { addCellToRow } = require("./cell-utils.js");
const { setCellValue, findCell, createCell } = require("./cell-utils.js");
Both require are using the same path, and should thus be grouped.
I've tried to enable this in my .eslintrc :
"import/no-duplicates": ["error", {"prefer-inline": true}],
But it didn't have any effect.
Are there any rules that can catch this ?