Displaying 1 result from an estimated 1 matches for "pretentiousvariablenamingschemes".
2007 Feb 08
3
coding style
...t;, and it also lets each developer resize their editor
+window to their own taste, and have their own tab-width, rather than
+being stuck with one particular design.
+
+Of course, this does not mean that lines should be made unnecessarily
+long when there is a better alternative (see the note on
+pretentiousVariableNamingSchemes above). Certainly there should not
+be more than one statement per line. Please do not use
+
+ if (condition) break;
+
+but use the following:
+
+ if (condition) {
+ break;
+ }
+
+Coding style helpers
+--------------------
+
+If you are using emacs, you can automatically adjust the tab-width
+set...