Skip to content

Commit 985e05a

Browse files
authored
[Docs] import/no-named-as-default: Fix typo
add semicolon.
1 parent bbe529a commit 985e05a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/no-named-as-default.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For post-ES2015 `export` extensions, this also prevents exporting the default fr
3131

3232
```js
3333
// valid:
34-
export foo from './foo.js'
34+
export foo from './foo.js';
3535

3636
// message: Using exported name 'bar' as identifier for default export.
3737
export bar from './foo.js';

0 commit comments

Comments
 (0)