import-js/eslint-plugin-import

new rule: no-unnamed-default-export

Open

#1,927 opened on Oct 20, 2020

 (6 comments) (5 reactions) (0 assignees)JavaScript (1,549 forks)batch import
help wantedrule proposal

Repository metrics

Stars
 (5,940 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