~~ bracePosition: maintain, useBraces: always ~~
== should place brace on same line when not existing ==
if (true)
    statement;

[expect]
if (true) {
    statement;
}
