How to set the line for a single statement after an if or for if without braces in the configuration file for the uncrustify utility?
if(b) i++; => if(b)\n i++; for (i=0;i<5;i++) foo(i); => for (i=0;i<5;i++)\n foo(i); I found the setting for the opposite action:
# Change simple unbraced if statements into a one-liner # 'if(b)\n i++;' => 'if(b) i++;' nl_create_if_one_liner = false # false/true