~~ statements.sortImportDeclarations: caseInsensitive ~~
== should sort the import declarations ==
import {} from "a1.ts";
import {} from "A2.ts";

[expect]
import {} from "a1.ts";
import {} from "A2.ts";
