Our company's coding standard specifies that curly braces are always used
for ifs, fors, etc even when they are followed by a single line, e.g.

like this:

if(myBoolean)
{
    myVar = 2;
}

not this:

if(myBoolean)
    myVar = 2;


I would like to be able to use the code layout tool (beautifier) to
automatically do this re-formatting on files that follow the second style.


_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to