~~ lineWidth: 40, importDeclaration.trailingCommas: never ~~
== should not use trailing commas when multi-line ==
import {
    testing1, testing2,
    testing3 } from "test";

[expect]
import {
    testing1,
    testing2,
    testing3
} from "test";

== should sort the imports in alphabetical order taking into account the comma ==
import {
    testing3, testing2, testing1
} from "test";

[expect]
import {
    testing1,
    testing2,
    testing3
} from "test";
