Style Guide

Type Value
Line Length 80
Character Encoding UTF-8
Line Break LineFeed \n
Tabs 4 Spaces (exept Makefiles)
Brackets Egyptian Brackets / K&R Style
Naming Convention Depends on the programming language (Python, C++)
File Name Convention under_score.log

Comments / Documentation

  • Insert describing comment at:
    • File header (describe the content of the file)
    • Fields (describe the public variables)
    • Methods/Functions (describe public functions and functions of special interest)