~~ lineWidth: 40, importDeclaration.preferHanging: false ~~
== should format on a single line when hanging and short enough ==
import { n1, n2,
    n3 } from "test";

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

== should format on multiple lines when long enough ==
import { testing, thisOut, aBit } from "test";

[expect]
import {
    testing,
    thisOut,
    aBit
} from "test";
