diff --git a/.gitignore b/.gitignore index f3d59a9..c9b9b96 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,12 @@ *.egg-info/ -.cache/ -.coverage -.eggs/ -.nox/ -.python-version +*~ +/.cache/ +/.coverage +/.eggs/ +/.nox/ +/.python-version +/build/ +/dist/ +/pip-wheel-metadata/ +/venv/ __pycache__/ -build/ -dist/ -pip-wheel-metadata/ diff --git a/setup.cfg b/setup.cfg index 0a0835e..ecfe21f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -45,7 +45,7 @@ disallow_any_unimported = True disallow_any_decorated = True disallow_any_explicit = True warn_unreachable = True -exclude = ^build/ +exclude = ^(build|venv)/ [mypy-nox.*,pytest.*,_pytest.*] # variable annotations present, errors out with python_version < 3.6 follow_imports = skip