blob: f666ae862d9f50792df9dc862ad238bd5c0e56a3 [file] [log] [blame]
<option>BRACE_STYLE=NEXT_LINE</option>
<option>SPACE_BEFORE_ELSE_LBRACE=false</option>
<option>SPACE_BEFORE_IF_LBRACE=true</option>
<option>ELSE_ON_NEW_LINE=true</option>
if (true){
doo()
} else {bar()}
-----
if (true)
{
doo()
}
else
{
bar()
}