From 3d55461372cd3b927f10dc60bb2e29920315aa01 Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Tue, 30 Jan 2018 20:04:53 +0100 Subject: [PATCH] Add some flake8 configs --- setup.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2a9acf1..2363423 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,4 @@ -[bdist_wheel] -universal = 1 +[flake8] +max-line-length = 140 +max-complexity = 25 +ignore = W292, E402