import-js/eslint-plugin-import

`export * as ns` false positive on import/named rule

Closed

#1,883 opened on Aug 17, 2020

 (3 comments) (12 reactions) (0 assignees)JavaScript (1,549 forks)batch import
bughelp wanted

Repository metrics

Stars
 (5,940 stars)
PR merge metrics
 (Avg merge 138d 22h) (3 merged PRs in 30d)

Description

// 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.

Contributor guide