comments for flake8 settings

This commit is contained in:
Renaud Boyer 2020-12-06 22:33:55 +01:00
parent 73a7527b5e
commit 7838ff3224
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
[flake8] [flake8]
ignore = ignore =
# line length is handled by black
E501, E501,
# W503 & E203 are not PEP 8 compliant and conflicts with black # W503 & E203 are not PEP 8 compliant and conflicts with black
W503, W503,
@ -15,4 +16,5 @@ exclude =
docs docs
per-file-ignores = per-file-ignores =
# ignore unused imports in __init__
__init__.py:F401 __init__.py:F401