~~ lineWidth: 40 ~~
== should format when using many named exports ==
export {n1,n2,n3} from    "test"  ;

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

== should format when using many named exports that go over the line width ==
export { n1, n2,   n3,   n4  , n5, n6} from   "test";

[expect]
export { n1, n2, n3, n4, n5,
    n6 } from "test";

== should format with newlines if the first is on a different line ==
export {
    n1, n2,   n3,   n4  , n5, n6} from   "test";

[expect]
export {
    n1,
    n2,
    n3,
    n4,
    n5,
    n6
} from "test";
