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

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

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

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