Phobos Quality

From D Wiki
Revision as of 15:55, 15 January 2014 by Qznc (talk | contribs) (initial)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This page documents the level of quality that Phobos strives for. Especially new modules should be judged according to these guidelines.


Documentation

  • Uses complete english sentences with correct syntax, grammar, and punctuation.
  • Uses precise technical terms. Avoids colloquialisms.
  • A synopsis at the beginning motivates the module with an example.
  • All members are explained with examples which should also be unit tests.
  • Honestly describe limitations and dangers.

Code

  • Follows the style guide and being consistent in general.
  • Lots of unit tests.
  • Avoid unnecessarily importing other Phobos modules.
  • Try to not require a garbage collector (this is not a must).
  • Module boundary is sensible, which means no temptation to split it into multiple modules nor to merge it into another module.
  • No code duplication.
  • Maximal pure, @safe, and nothrow.