Skip to content

Commit

Permalink
Merge pull request #133 from scop/chore/ignores
Browse files Browse the repository at this point in the history
chore: improve git and mypy ignores
  • Loading branch information
scop committed Aug 12, 2023
2 parents 02e3f5b + 4574787 commit a4d951a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 10 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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/
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a4d951a

Please sign in to comment.