Pattern: Use of default
export
Issue: -
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.