import-js/eslint-plugin-import
`export * as ns` false positive on import/named rule
已关闭
#1,883 创建于 2020年8月17日
bughelp wanted
仓库指标
- 星标
- (5,938 个星标)
- PR 合并指标
- (平均合并 138天 22小时) (30 天内合并 3 个 PR)
描述
// 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.