~~ lineWidth: 80 ~~
== 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 hanging when long enough ==
import { hereAreSomeVery, veryLongImportsThat, willCauseItToGo, over80CharsOfWidth } from "test";

[expect]
import { hereAreSomeVery, veryLongImportsThat, willCauseItToGo,
    over80CharsOfWidth } from "test";

== should format on multiple lines when the first is on a different line ==
import {
    n1, n2, n3 } from "test";

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