Skip to content
This repository was archived by the owner on Apr 26, 2019. It is now read-only.

Contribution rules

Alexander Fuks edited this page Jul 28, 2016 · 2 revisions

Requirements for the source files

Encoding: UTF-8

EOF Convention: UNIX

Line endings: Each file should ends with newline

Code Style

Default conventional code style guide

Try to write clear, understandable and extendable code (refer to the articles)

Use TODO comment if something should be changed later in the code but better to raise NotImplementedException()

Log levels

  • Debug - to log info useful for debugging
  • Error - to log not critical exceptions
  • Fatal - to log critical exceptions
  • Info - to log business logic info useful for elaborations
  • Warn - to log not critical situations not handled by implementation

Articles