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

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

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

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