Allow enforcement of import-specifiers (original) (raw)

Imports can have multiple specifiers (objects which are being imported).
Would be awesome if there would be a way to enforce alphabetization there, too:

Example:

import { isNull, isNaN } from "util"; // reports an error: "isNaN" should appear before "isNull"