~~ lineWidth: 40, exportDeclaration.preferHanging: false ~~
== should format when single line ==
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";
