Package Exports
- eslint-plugin-sort-imports-es6-autofix
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-sort-imports-es6-autofix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
eslint-plugin-sort-imports-es6 
A sort-imports rule that properly distinguishes between ES6 import types.
ESLint's built-in sort-imports
rule considers the following to be the same type of import:
import foo from 'foo';
import { bar } from 'bar';
This version of the rule fixes that.
It accepts the same options as the original rule, but the multiple
type corresponds to all named imports (regardless of how many are imported), while the single
type corresponds only to default imports.
Usage
npm i --save-dev eslint-plugin-sort-imports-es6
{
"plugins": [
"sort-imports-es6"
],
"rules": {
"sort-imports-es6/sort-imports-es6": [2, {
"ignoreCase": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
}]
}
}