Project Guidelines
==================

Git commit messages
-------------------

Commit messages are supposed to start with a prefix that specifies the type of change.

  * DOC: - documentation
  * FIX: - fixes something
  * ERF: - enhancement, refactoring
  * NEW: - a new feature
  * OTH: - other

Notes in source code
--------------------

Parts of code requiring special attention can be marked with

  * FIXME
  * TODO
  * XXX or ??? (a question)
  * YYY (answer to XXX)
  * NOTE (a random comment)
  * WARNING (a warning for developers)



