~~ forInStatement.useBraces: preferNone, lineWidth: 40, forInStatement.preferHanging: true ~~
== should not use braces when only one line ==
for (const t in test) {
    a;
}

[expect]
for (const t in test)
    a;

== should use braces when condition is hanging ==
for (const someLongTextThat in willBringIt)
    a;

[expect]
for (const someLongTextThat
    in willBringIt)
{
    a;
}
