import-js/eslint-plugin-import

new rule: no-unnamed-default-export

Open

#1,927 opened on Oct 20, 2020

View on GitHub
 (6 comments) (5 reactions) (0 assignees)JavaScript (1,540 forks)batch import
help wantedrule proposal

Repository metrics

Stars
 (4,946 stars)
PR merge metrics
 (Avg merge 138d 22h) (3 merged PRs in 30d)

Description

Good:

const foo = () => {};

export default foo;

Bad:

export default () => {};

Contributor guide