import-js/eslint-plugin-import
`export * as ns` false positive on import/named rule
クローズ
#1,883 opened on 2020/08/17
bughelp wanted
Repository metrics
- Stars
- (5,940 個のスター)
- PR merge metrics
- (平均マージ 138d 22h) (30d で 3 merged PRs)
説明
// module1.js
export const hello = 'world';
// module2.js
export * as mod1 from './module1'
// module3.js
import { mod1 } from './module2'; // <-- getting "mod1 not found", triggered by `import/named` rule.
I can create a repro case if needed.