Skip to content
This repository has been archived by the owner on Jan 21, 2018. It is now read-only.

Coding Standards

Billy edited this page Aug 25, 2016 · 2 revisions
  • Spaces instead of tabs (4 spaces to a tab)
  • Variables will be camelCase
  • Classes will be PascalCase
  • Functions will be lowercase, with underscores
  • Constants will be UPPERCASE, with underscores between words
  • Full names, no abbreviations
  • Python will follow PEP 8 https://www.python.org/dev/peps/pep-0008/