python-tuf/setup.cfg
Jussi Kukkonen f3d26552ed mypy: disallow untyped calls
report an error whenever a function with type annotations calls a
function defined without annotations.

Also include exceptions.py in mypy checks.

Signed-off-by: Jussi Kukkonen <jkukkonen@vmware.com>
2021-06-23 10:51:33 +03:00

21 lines
389 B
INI

[wheel]
universal = 1
[check-manifest]
ignore =
requirements-dev.txt
.travis.yml
.coveragerc
[mypy]
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unreachable = True
strict_equality = True
disallow_untyped_defs = True
disallow_untyped_calls = True
files = tuf/api/, tuf/exceptions.py
[mypy-securesystemslib.*]
ignore_missing_imports = True