import-js/eslint-plugin-import
import/named doesn't work when the target has no exports
Ouverte
#1 147 ouverte le 30 juil. 2018
help wanted
Métriques du dépôt
- Stars
- (5 940 étoiles)
- Métriques de merge PR
- (Merge moyen 138j 22h) (3 PRs mergées en 30 j)
Description
Given:
// a.js
console.log('This file has no exports')
// b.js
import { doesntExist } from './a'
I'd expect the import/named rule to show an error for doesntExist. It doesn't. What am I missing? Is there a way to check for this type of error?