2016-01-21 18:11:31 +01:00
|
|
|
[flake8]
|
|
|
|
exclude = .venv,.hypothesis,.git,__pycache__,resources.py
|
|
|
|
# E128: continuation line under-indented for visual indent
|
|
|
|
# E226: missing whitespace around arithmetic operator
|
|
|
|
# E265: Block comment should start with '#'
|
|
|
|
# E501: Line too long
|
|
|
|
# E402: module level import not at top of file
|
|
|
|
# E266: too many leading '#' for block comment
|
|
|
|
# F401: Unused import
|
2016-01-21 22:16:24 +01:00
|
|
|
# N802: function name should be lowercase
|
2016-01-21 23:22:31 +01:00
|
|
|
# L101: The __init__ method of classes must not have a docstring
|
|
|
|
# L102: A docstring was incorrectly formatted.
|
|
|
|
# L103: A test docstring must not start with any form of the words "test", ...
|
|
|
|
# L201: Container literals must have a trailing comma
|
|
|
|
# L202: print is not allowed except for debugging.
|
|
|
|
# L203: pdb and compatible modules are not allowed except for debugging.
|
|
|
|
# L204: Implicit string literal concatenation is only allowed if every string
|
|
|
|
# being concatenated is parenthesize
|
|
|
|
# L207: pass is only necessary in non-optional suites containing no other
|
|
|
|
# statements.
|
|
|
|
ignore =
|
|
|
|
E128,E226,E265,E501,E402,E266,
|
|
|
|
F401,
|
|
|
|
N802,
|
|
|
|
L101,L102,L103,L201,L202,L203,L204,L207
|
2016-01-21 18:11:31 +01:00
|
|
|
max-complexity = 12
|
2016-01-21 22:53:53 +01:00
|
|
|
putty-ignore =
|
|
|
|
/# pylint: disable=invalid-name/ : +N801,N806
|
|
|
|
/# pragma: no mccabe/ : +C901
|
|
|
|
/# flake8: disable=E131/ : +E131
|
|
|
|
/# flake8: disable=N803/ : +N803
|
|
|
|
/# flake8: disable=T002/ : +T002
|
|
|
|
/# flake8: disable=F841/ : +F841
|
2016-01-22 17:46:33 +01:00
|
|
|
copyright-check = True
|
|
|
|
copyright-regexp = # Copyright [\d-]+ .*
|
|
|
|
copyright-min-file-size = 110
|