2017-10-26 03:28:41 -06:00
|
|
|
- Everything should comply with PEP8. Code should pass
|
|
|
|
``pep8 --max-line-length=100`` without any warnings.
|
2017-10-26 03:42:06 -06:00
|
|
|
|
|
|
|
- **Indenting**:
|
|
|
|
|
|
|
|
- NEVER tabs. 4 spaces to indent.
|
|
|
|
|
|
|
|
- follow PEP8; either hanging indent or multiline-visual indent depending
|
|
|
|
on the size and shape of the arguments and what makes more sense to the
|
|
|
|
author. In other words, both this::
|
|
|
|
|
|
|
|
print("I am a fish %s" % "moo")
|
|
|
|
|
|
|
|
and this::
|
|
|
|
|
|
|
|
print("I am a fish %s" %
|
|
|
|
"moo")
|
|
|
|
|
|
|
|
and this::
|
|
|
|
|
|
|
|
print(
|
|
|
|
"I am a fish %s" %
|
|
|
|
"moo",
|
|
|
|
)
|
|
|
|
|
|
|
|
...are valid, although given each one takes up 2x more vertical space than
|
|
|
|
the previous, it's up to the author's discretion as to which layout makes
|
|
|
|
most sense for their function invocation. (e.g. if they want to add
|
|
|
|
comments per-argument, or put expressions in the arguments, or group
|
|
|
|
related arguments together, or want to deliberately extend or preserve
|
|
|
|
vertical/horizontal space)
|
|
|
|
|
|
|
|
- **Line length**:
|
|
|
|
|
|
|
|
Max line length is 79 chars (with flexibility to overflow by a "few chars" if
|
2014-12-10 06:11:43 -07:00
|
|
|
the overflowing content is not semantically significant and avoids an
|
|
|
|
explosion of vertical whitespace).
|
2017-10-26 03:42:06 -06:00
|
|
|
|
|
|
|
Use parentheses instead of ``\`` for line continuation where ever possible
|
|
|
|
(which is pretty much everywhere).
|
|
|
|
|
|
|
|
- **Naming**:
|
|
|
|
|
|
|
|
- Use camel case for class and type names
|
|
|
|
- Use underscores for functions and variables.
|
|
|
|
|
|
|
|
- Use double quotes ``"foo"`` rather than single quotes ``'foo'``.
|
|
|
|
|
|
|
|
- **Blank lines**:
|
|
|
|
|
|
|
|
- There should be max a single new line between:
|
|
|
|
|
2014-08-12 08:10:52 -06:00
|
|
|
- statements
|
|
|
|
- functions in a class
|
|
|
|
|
2017-10-26 03:42:06 -06:00
|
|
|
- There should be two new lines between:
|
2014-12-10 06:11:43 -07:00
|
|
|
|
2017-10-26 03:42:06 -06:00
|
|
|
- definitions in a module (e.g., between different classes)
|
2014-12-10 06:11:43 -07:00
|
|
|
|
2017-10-26 03:42:06 -06:00
|
|
|
- **Whitespace**:
|
2014-12-10 06:11:43 -07:00
|
|
|
|
2017-10-26 03:42:06 -06:00
|
|
|
There should be spaces where spaces should be and not where there shouldn't
|
|
|
|
be:
|
2014-12-10 06:11:43 -07:00
|
|
|
|
2017-10-26 03:42:06 -06:00
|
|
|
- a single space after a comma
|
|
|
|
- a single space before and after for '=' when used as assignment
|
|
|
|
- no spaces before and after for '=' for default values and keyword arguments.
|
2014-12-10 06:11:43 -07:00
|
|
|
|
2017-10-26 03:42:06 -06:00
|
|
|
- **Comments**: should follow the `google code style
|
2017-10-26 03:28:41 -06:00
|
|
|
<http://google.github.io/styleguide/pyguide.html?showone=Comments#Comments>`_.
|
|
|
|
This is so that we can generate documentation with `sphinx
|
|
|
|
<http://sphinxcontrib-napoleon.readthedocs.org/en/latest/>`_. See the
|
|
|
|
`examples
|
|
|
|
<http://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html>`_
|
|
|
|
in the sphinx documentation.
|