~~ 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 { test1, test2, test3 } from "test";

[expect]
import {
    test1,
    test2,
    test3,
} from "test";
