~~ ifStatement.bracePosition: sameLine, ifStatement.nextControlFlowPosition: nextLine, lineWidth: 40, ifStatement.preferHanging: true ~~
== should use the same line for the brace position ==
if (true)
{
}
else
{
}

[expect]
if (true) {
}
else {
}

== should use the same line for the brace position when hanging ==
if (someCondition && otherConditionThatTakesItOver)
{
}
else if (someCondition && otherConditionLong)
{
}
else
{
}

[expect]
if (someCondition
    && otherConditionThatTakesItOver) {
}
else if (someCondition
    && otherConditionLong) {
}
else {
}
