-
-
Notifications
You must be signed in to change notification settings - Fork 0
Coding guidelines
Nick edited this page Jul 31, 2019
·
2 revisions
- Use spaces, not tabs.
- Use 4 spaces to indent.
- Lines should not contain trailing spaces.
- Use english names for all variables, functions and classes.
- Don't use underscore for private variables. Example: myVariable instead of _myVariable.
- Use CamelCase-Convenion
- Use english for code, comments and commit messages.
- Do not leave any unused import statements behind.
- Please run all tests before committing code, and only commit when everything is green.
- Do not commit commented out code.