Here's some downvote-bait. I do a couple things that reduce errors in editing, but look funny, like
MyFunction(1stArg
, 2ndArg
, 3rdArg
... etc. ...
, lastArg
);
because if I want to add a new argument to the function, I often add it at the end, so it is a 1-line edit, rather than 2 lines.
Another example:
if (false){ }
else if (Test1){
... do stuff ...
}
else if (Test2){
... do stuff ...
}
... more tests ...
else {
... do stuff ...
}
Why? because it makes it easier to insert, delete, or re-order the tests without the first one having different syntax (and thus edited differently) from the rest. This is especially useful in generated code.