setup.cfg: ignore couple of PEP8 errors

We don't care about E261 and temporarily ignore E501.

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
This commit is contained in:
Igor Gnatenko 2016-12-22 08:31:18 +01:00 committed by Jussi Pakkanen
parent 775729eb59
commit f56458810d
1 changed files with 6 additions and 1 deletions

View File

@ -1,2 +1,7 @@
[flake8]
max-line-length = 999
ignore =
# E261: at least two spaces before inline comment
E261,
# E501: line too long
E501
max-line-length = 120