~~ forStatement.spaceAfterSemiColons: false, lineWidth: 40 ~~
== should print without spaces ==
for (let i = 0; i < 5; i++) {
}

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

== should print with newlines when multi-line ==
for (let testingThisOutttttt = 0; testingThisOutttttttttttttttt < 5; i++) {
}

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