Changes between Version 9 and Version 10 of Developer/Coding/NamingRules


Ignore:
Timestamp:
05/30/14 18:25:22 (10 years ago)
Author:
Gedare
Comment:

/* General rules */

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Coding/NamingRules

    v9 v10  
    55 *  Avoid abbreviations. Exceptions are for well-known acronyms.
    66 *  Use descriptive language.
    7  *  File names should be lower-case alphabet letters only, plus the extension.
     7 *  File names should be lower-case alphabet letters only, plus the extension. Avoid symbols in file names.
     8 *  Prefer to use underscores to separate words, rather than camelCase or TitleCase.
    89 *  Local-scope variable names are all lower case with underscores between words.
    910 *  CPP macros are all capital letters with underscores between words.