~~ module.sortImportDeclarations: caseSensitive ~~
== should sort the import declarations ==
import {a} from "a1.ts";
import {a} from "A2.ts";

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