@putout/plugin-sort-imports-by-specifiers
v1.1.0
Published
šPutout plugin adds ability to find and sort imports by specifiers
Downloads
15,580
Maintainers
Readme
@putout/plugin-sort-imports-by-specifiers
The static import declaration is used to import read-only live bindings which are exported by another module. The imported bindings are called live bindings because they are updated by the module that exported the binding, but cannot be re-assigned by the importing module.
(c) MDN
šPutout plugin adds ability to find and sort import
statements by specifiers. Checkout in šPutout Editor.
Install
npm i @putout/plugin-sort-imports-by-specifiers
Rule
{
"rules": {
"sort-imports-by-specifiers": "on"
}
}
ā Example of incorrect code
import {
a,
b,
c,
d,
} from 'd';
import a1 from 'a1';
ā Example of correct code
import a1 from 'a1';
import {
a,
b,
c,
d,
} from 'd';
License
MIT