mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
13 lines
560 B
Markdown
13 lines
560 B
Markdown
![]() |
# Coding standards #
|
||
|
* Specify the full path when invoking a command.
|
||
|
* Use long options whenever possible, this makes the commands invoked a lot easier to understand.
|
||
|
* Use tabs for indentation and spaces for alignment.
|
||
|
* Max line length is 110 chars.
|
||
|
* Multiple assignments may be aligned.
|
||
|
* Follow PEP8 with the exception of the following rules
|
||
|
* E101: Indenting with tabs and aligning with spaces
|
||
|
* E221: Alignment of assignments
|
||
|
* E241: Alignment of assignments
|
||
|
* E501: The line length is 110 characters not 80
|
||
|
* W191: We indent with tabs not spaces
|