First of all: thanks for contributing!
- Javascript:
- Four space indents.
- No tabs.
- Always use brackets after a test even if there's a single line of code.
- Java:
- Tab indents.
- No spaces.
- No trailing spaces or tabs.
- XML:
- TODO
- commits must be atomic: just one consistent change per commit
- when possible, refer to an issue in the commit message, for example adding
(see #xx)
at the end of the commit message, orfixes ##
to close the issue. - never commit environnement related changes
- keep pull requests as simple as possible.