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)
Links¶
- Brackets: Read 3. Egyptian Brackets at https://blog.codinghorror.com/new-programming-jargon/
- Google Style Guides for:
- Python PEP8: https://www.python.org/dev/peps/pep-0008/