From 1c3637c48f77cbfb43677bdf9433de3ba2eed151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Wed, 14 Jun 2017 13:21:31 +0200 Subject: [PATCH] Ignore more pycodestyle warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These warnings are ignored by default, but setting our own ignore list removes these defaults. Signed-off-by: Lubomír Sedlář --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index dbfff097..c475542d 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,9 @@ filename = *.py # E501: line too long # H301: one import per line # H306: imports not in alphabetical order -ignore = E501,E402,H301,H306 +# E226: missing whitespace around arithmetic operator +# W503: line break occured before a binary operator +ignore = E501,E402,H301,H306,E226,W503 [run] omit = tests/*