Remove F403 and F405 exclusions

Importing from * is not a thing that should be done, as it masks
errors and makes code hard to understand. There are some copy-pasta
files that violate this. Mark them with noqa for now, because we don't
actually care about them.

Change-Id: I790f88c75ea546d83e347e42df0050ad36211936
This commit is contained in:
Monty Taylor
2020-02-27 09:02:46 -06:00
parent 15f7f7fc7b
commit 2527faec28
3 changed files with 7 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ commands = {posargs}
# H4 are rules for docstrings. Maybe we should clean them?
# E501,E402,H301,H236,F401,E128 are ignored so we can import the existing
# modules unchanged and then clean them in subsequent patches.
ignore = W503,H4,E501,E402,H301,H236,F401,E128,W504,F403,F405
ignore = W503,H4,E501,E402,H301,H236,F401,E128,W504
show-source = True
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,ansible_collections