python-tuf/setup.cfg
Jussi Kukkonen ca5f2ddd9c Add initial mypy configuration
This is an initial setup: By default check only tuf/api/,
and ignore securesystemslib imports.

Change lint working directory to source root: This saves repeating a lot
of {toxinidir} in the command lines.

Signed-off-by: Jussi Kukkonen <jkukkonen@vmware.com>
2021-05-19 14:29:42 +03:00

15 lines
209 B
INI

[wheel]
universal = 1
[check-manifest]
ignore =
requirements-dev.txt
.travis.yml
.coveragerc
[mypy]
warn_unused_configs = True
files = tuf/api/
[mypy-securesystemslib.*]
ignore_missing_imports = True