~~ ifStatement.singleBodyPosition: nextLine, ifStatement.useBraces: preferNone, lineWidth: 40 ~~
== should move when on a single line ==
if (true) console.log(5);

[expect]
if (true)
    console.log(5);

== should keep on the next line when on the next line ==
if (true)
    console.log(5);

[expect]
if (true)
    console.log(5);

== should move and add braces (since useBraces is "preferNone") when exceeding line width on statement ==
if (true) testing(53452435245234523455555556666666);

[expect]
if (true) {
    testing(
        53452435245234523455555556666666,
    );
}
