-
Notifications
You must be signed in to change notification settings - Fork 0
Style Guide
daftpwner edited this page Jan 23, 2018
·
1 revision
This project will attempt to follow the Git branching model, Git Flow, developed by Vincent Driessen. This model can be read about in this blog post.
- Spaces instead of tabs (4 spaces to a tab, check your ide for an option to perform automatic conversion)
- Variables are camelCase
- Classes are PascalCase
- Functions are lowercase_with_underscores
- Constants are UPPERCASE_WITH_UNDERSCORES
- Be sure to use full, meaningful names. Don't abbreviate if it introduces any uncertainty!
- Python will loosely follow PEP 8. See here for full PEP 8 standards. (many ide's have support/plugins for PEP 8)