Use flake8's extend-ignore instead of ignore

extend-ignore adds ignores in addition to flake8's existing ignores.

The default ignores currently are:
E121,E123,E126,E226,E24,E704,W503,W504
This commit is contained in:
Ran Benita 2019-07-14 11:12:47 +03:00
parent f7747f5dd6
commit 35a57a0dfb
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ markers =
[flake8] [flake8]
max-line-length = 120 max-line-length = 120
ignore = E203,W503 extend-ignore = E203
[isort] [isort]
; This config mimics what reorder-python-imports does. ; This config mimics what reorder-python-imports does.