~~ lineWidth: 40, importDeclaration.sortNamedImports: caseSensitive ~~
== should sort case sensitive ==
import {
    n2,n1,
    n3, N2, N3, N1} from "test";

[expect]
import {
    N1,
    N2,
    N3,
    n1,
    n2,
    n3,
} from "test";
