This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ``` | |
| Coding Etiquette - pull requests without these will be rejected | |
| Indentation and spacing between code constructs must be consistent | |
| Use only space characters (no tab characters) for indentation | |
| Follow accepted naming conventions for your language/framework | |
| Follow accepted naming file and Directory structure for your language/framework | |
| Use namespaces | |
| No comments/Unused Code must ever be checked in | |
| All dev tasks like compile, run automated tests etc. must be automated as part of the build | |
| Runtime environment should be consistent with IDE environment - i.e there should be no difference in running a build or a spec from your IDE and from the command line |