Skip to content

Commit

Permalink
chore: move mypy config to pyproject.toml (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut authored Aug 28, 2021
1 parent aeeb24a commit 1d481b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
[build-system]
requires = ["setuptools", "wheel", "pbr"]
build-backend = "setuptools.build_meta"

[tool.mypy]
follow_imports = "silent"
ignore_missing_imports = true
warn_unused_ignores = true

[[tool.mypy.overrides]]
module = "auditwheel._vendor.*"
follow_imports = "skip"
ignore_errors = true
9 changes: 0 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,3 @@ log_cli_level = 20
[flake8]
exclude =
_vendor

[mypy]
follow_imports = silent
ignore_missing_imports = True
warn_unused_ignores = True

[mypy-auditwheel/_vendor/*]
follow_imports = skip
ignore_errors = True

0 comments on commit 1d481b3

Please sign in to comment.