eslint-plugin-import
eslint-plugin-import copied to clipboard
ESLint plugin with rules that help validate proper imports.
Results
362
eslint-plugin-import issues
Sort by
recently updated
recently updated
newest added
ref #2093 https://github.com/standard/standard/issues/863 ```js // File a.mjs export const A = 'a' // File b.js export * from './a.mjs' // File c.js export * from './b.js' ``` ```bash eslint c.js...
`exports` support
Hello, This is a feature request (kind of a continuation of #906), Some modules require module paths for some calls (like the `jest.mock()` in Jest). As a developer, I would...
enhancement