From f56458810dcbd61584c85300ca128b1a3a2e6211 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Thu, 22 Dec 2016 08:31:18 +0100 Subject: [PATCH] setup.cfg: ignore couple of PEP8 errors We don't care about E261 and temporarily ignore E501. Signed-off-by: Igor Gnatenko --- setup.cfg | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 1cb51985eb72..ca6c7004bb2a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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