Skip to content
Mladen Pejaković edited this page May 11, 2016 · 8 revisions

This page is also translated into: Serbian

Commit access

Please do not ask for commit access. Direct commit access is allowed only to people actively contributing to the project and taking part in the development. For occasional patches please clone the repository and request a pull — patches are always welcome.

At a glance

  • NEVER, EVER commit directly to the master branch
  • Merges to master can be done only by an owner

Coding style

  • Use Unix line endings (LF)
  • No tabs! 4 spaces only
  • Newline at end of file
  • No trailing spaces, even on empty lines
  • Opening braces on the same line, next token on a new line:
if (a == 1) {
    ...
}
else {
    ...
}

For the rest, just follow the existing code :-)

Clone this wiki locally