Rule: no-default-export
Disallows default exports in ES6-style modules.
Use named exports instead.
Rationale
Named imports/exports promote clarity. In addition, current tooling differs on the correct way to handle default imports/exports. Avoiding them all together can help avoid tooling bugs and conflicts.
Config
Not configurable.
Config examples
"no-default-export": true
Schema
null