From 0b237ee4ef65595903da0b9a220e93b20316a2ca Mon Sep 17 00:00:00 2001 From: Mike Monteith Date: Mon, 14 Jun 2021 19:13:54 +0100 Subject: [PATCH] Ignore flake8 W503 --- tox.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 4c83764..949796c 100644 --- a/tox.ini +++ b/tox.ini @@ -4,8 +4,9 @@ envlist = py{36,37,38,39}-wagtail{212,213}, lint [flake8] -# Ignore line length rules. Black should take care of this -ignore=E501 +# E501: Ignore line length rules. Black should take care of this. +# W503: Ignore line break before binary operator which is due to change anyway (https://www.flake8rules.com/rules/W503.html) +ignore=E501,W503 exclude=.git,__pycache__,dist,.tox,venv,*/migrations/*