flake8: Ignore L302 (ebb-lint "line was too long")

This commit is contained in:
Florian Bruhin 2016-01-22 19:39:21 +01:00
parent 483d246e0d
commit a4a8c00e0f

View File

@ -18,6 +18,7 @@ exclude = .venv,.hypothesis,.git,__pycache__,resources.py
# being concatenated is parenthesize
# L207: pass is only necessary in non-optional suites containing no other
# statements.
# L302: The line was too long.
# P101: format string does contain unindexed parameters
# P102: docstring does contain unindexed parameters
# P103: other string does contain unindexed parameters
@ -26,7 +27,7 @@ ignore =
E128,E226,E265,E501,E402,E266,
F401,
N802,
L101,L102,L103,L201,L202,L203,L204,L207,
L101,L102,L103,L201,L202,L203,L204,L207,L302,
P101,P102,P103,
D001
max-complexity = 12