From 2a194a63236cdfe84204227c08afab3dd6379a89 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Mon, 31 Aug 2020 11:31:35 -0700 Subject: [PATCH] Remove W503 from flake8 ignore list (ignored by default) See: https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes > In the default configuration, the checks E121, E123, E126, E133, E226, > E241, E242, E704, W503, W504 and W505 are ignored because they are not > rules unanimously accepted, and PEP 8 does not enforce them. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index b91a522f5..129adeee7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [flake8] -extend-ignore = E203, W503 +extend-ignore = E203 max-line-length = 88 [isort]