~~ forStatement.bracePosition: maintain, lineWidth: 40, preferHanging: true ~~
== should maintain the position for the brace position when on same line ==
for (let i = 0; i < 5; i++) {
}

[expect]
for (let i = 0; i < 5; i++) {
}

== should maintain the position for the brace position when on a new line ==
for (let i = 0; i < 5; i++)
{
}

[expect]
for (let i = 0; i < 5; i++)
{
}

== should maintain the position for the brace position when hanging and on the same line ==
for (let testingThisOut = 0; testingThisOut < 5; i++) {
}

[expect]
for (let testingThisOut = 0;
    testingThisOut < 5; i++) {
}

== should maintain the position for the brace position when hanging and on the next line ==
for (let testingThisOut = 0; testingThisOut < 5; i++)
{
}

[expect]
for (let testingThisOut = 0;
    testingThisOut < 5; i++)
{
}
