Revision 750d147131bad432a42fd337b0522f1dcc980c46 authored by Valentin Lorentz on 27 February 2020, 13:33:07 UTC, committed by Valentin Lorentz on 27 February 2020, 14:10:31 UTC
1 parent 9cf7a04
Raw File
mypy.ini
[mypy]
namespace_packages = True
warn_unused_ignores = True


# 3rd party libraries without stubs (yet)

[mypy-django.*]  # false positive, only used my hypotesis' extras
ignore_missing_imports = True

[mypy-dulwich.*]
ignore_missing_imports = True

[mypy-iso8601.*]
ignore_missing_imports = True

[mypy-pkg_resources.*]
ignore_missing_imports = True

[mypy-pyblake2.*]
ignore_missing_imports = True

[mypy-pytest.*]
ignore_missing_imports = True
back to top