We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// eslint.config.mjs import { config, configs } from 'typescript-eslint' import pluginImportX from 'eslint-plugin-import-x' export default config({ extends: [configs.recommended], plugins: { 'import-x': pluginImportX }, rules: { 'import-x/no-duplicates': 'error', 'import-x/export': 'error' } })
// foo.ts export const foo = 'bar' export const bar = 'foo'
export * from './foo' export * from './foo' export { foo } from './foo' export { bar } from './foo'
export * from './foo'
import-x/no-duplicates
Nothing.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ESLint config
Code
Expect behavior
export * from './foo'
import-x/no-duplicates
does for import statementCurrent behavior
Nothing.
The text was updated successfully, but these errors were encountered: