We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
prefer-default-export
1 parent e8d79b5 commit e156316Copy full SHA for e156316
docs/rules/prefer-default-export.md
@@ -22,7 +22,7 @@ The following patterns are not warnings:
22
// There is a default export.
23
export const foo = 'foo';
24
const bar = 'bar';
25
-export default 'bar';
+export default bar;
26
```
27
28
```javascript
0 commit comments