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
Multiple exports of name is always reported as an error but it's a legitimate feature disciplined by ECMASCRIPT specs.
Es:
// D.js const f = () => 'D::f' export { f } // E.js export * from './D.js' const f = () => 'E::f' export { f }
Report -> import/export: Multiple exports of name 'f'.
Maybe eslint-plugin-import could give an optionable error that can ben disabled by config?
See also here and #1704
The text was updated successfully, but these errors were encountered:
An option sounds good.
Sorry, something went wrong.
No branches or pull requests
Multiple exports of name is always reported as an error but it's a legitimate feature disciplined by ECMASCRIPT specs.
Es:
Report -> import/export: Multiple exports of name 'f'.
Maybe eslint-plugin-import could give an optionable error that can ben disabled by config?
See also here and #1704
The text was updated successfully, but these errors were encountered: