Describe the Bug
.flake8 config file ignore too much errors
Expected Behavior
in the .flake8 config file (commit d2fc5fc):
[flake8]
max-line-length = 120
exclude =
.venv,
testing,
__pycache__,
htmlcov
ignore = E203,E501,W503,B027,B042,E704,E301,W504 # <- To many ignored!
Actual Behavior
Nothing happened! (It is just a config file)
Additional Context
Use # noqa: Error code to ignore errors in just one place.
Describe the Bug
.flake8config file ignore too much errorsExpected Behavior
in the
.flake8config file (commit d2fc5fc):Actual Behavior
Nothing happened! (It is just a config file)
Additional Context
Use
# noqa: Error codeto ignore errors in just one place.