Has anyone found a combination of formatting options that will turn:
if (2 < 3) { return; }elseif (2 > 3) { return; }else{ return; }
Into
if (2 < 3) return; elseif (2 > 3) return; else return;
Of course never this:
if (2 < 3) if (2 > 3) return; else return;
Which should always be bracketed
if (2 < 3) { if (2 > 3) return; else return; }