Skip to content

Commit 402c60a

Browse files
committed
[Fix] group-exports: use module.exports, not export default
Fixes #1031.
1 parent 44a038c commit 402c60a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rules/group-exports.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function create(context) {
9898
}
9999
}
100100

101-
export default {
101+
module.exports = {
102102
meta,
103103
create,
104104
}

0 commit comments

Comments
 (0)