Prerequisites
Summary
Formatter always format code as the specified indent style no matter how long the statement is:
# before
$foo = if ($true) {1} else {0}
# after
$foo = if ($true) {
1
} else {
0
}
# expected
$foo = if ($true) { 1 } else { 0 }
The code became too sparse by being enforced to the indentation style.
Proposed Design
No response