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
Need a better name.
Given:
// foo.js export default 'foo'; export const bar = 'baz';
...this would be valid:
import foo from './foo.js';
...and this would be reported:
import bar from './foo.js';
Message something like Using exported name 'bar' as identifier for default export.
Using exported name 'bar' as identifier for default export.
Rationale: using an exported name as the name of the default export is either
foo.js
foo
bar
The text was updated successfully, but these errors were encountered:
a252c0c
No branches or pull requests
Need a better name.
Given:
...this would be valid:
...and this would be reported:
Message something like
Using exported name 'bar' as identifier for default export.
Rationale: using an exported name as the name of the default export is either
foo.js
probably expect the name to befoo
bar
and forgot the brackets (the case that is prompting this)The text was updated successfully, but these errors were encountered: