~~ forOfStatement.bracePosition: sameLine, lineWidth: 40, forOfStatement.preferHanging: true ~~
== should use the same line for the brace position ==
for (const t of test)
{
}

[expect]
for (const t of test) {
}

== should use the same line for the brace position when hanging ==
for (const testingThisOut of testTestTestTest)
{
}

[expect]
for (const testingThisOut
    of testTestTestTest) {
}
