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
I think, due to the export default within group-exports.js, it's causing the following error when I try to lint my JavaScript:
export default
Error while loading rule 'import/group-exports': rule.create is not a function
because it compiles it to exports.default = {}; instead of module.exports = {.
exports.default = {};
module.exports = {
The text was updated successfully, but these errors were encountered:
Whoops. Yeah that needs fixing.
Sorry, something went wrong.
402c60a
@ljharb could this get released please? it looks like the latest release was published the day before this fix.
ljharb
No branches or pull requests
I think, due to the
export default
within group-exports.js, it's causing the following error when I try to lint my JavaScript:because it compiles it to
exports.default = {};
instead ofmodule.exports = {
.The text was updated successfully, but these errors were encountered: