UNPKG

eslint-plugin-import-sorting

Version:

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

7 lines (6 loc) 199 B
"use strict"; Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }); function isSortable(node) { return Array.isArray(node) && node.length > 1; } exports.isSortable = isSortable;