Version 7 (modified by Cas, 10 years ago) (diff)

--

Coding Styles

Common

  • Max line length 119 rather than 79 but ideally keep to 79

Python

Mostly follow PEP8 with the following exceptions:

  • Line length (see above)

Code should pass the flake8 source code checker and in ideal cases Pylint too.

Javascript

  • Classes should follow the Ext coding style.
  • Class names should be in CamelCase
  • Instances of classes should use camelCase.