UNPKG

eslint-plugin-import-sorting

Version:

ESLint plugin to group and sort imports by module, à la Python isort

13 lines (12 loc) 237 B
import order from "./rules/order.js"; import specifierOrder from "./rules/specifier-order.js"; const plugin = { name: "import-sorting", rules: { order, "specifier-order": specifierOrder } }; export { plugin as default };