mypy.ini 561 B

123456789101112131415161718192021222324
  1. [mypy]
  2. namespace_packages=True
  3. mypy_path = stubs
  4. follow_imports_for_stubs = True
  5. disallow_incomplete_defs = True
  6. check_untyped_defs = True
  7. disallow_untyped_calls = True
  8. disallow_untyped_defs = True
  9. disallow_untyped_decorators = True
  10. [mypy-aiohttp_client]
  11. ignore_missing_imports = True
  12. [mypy-opentracing.*]
  13. ignore_missing_imports = True
  14. # test ignores
  15. [mypy-pytest]
  16. ignore_missing_imports = True
  17. [mypy-asynctest]
  18. ignore_missing_imports = True
  19. [mypy-pytest_docker_fixtures]
  20. ignore_missing_imports = True
  21. [mypy-prometheus_client.*]
  22. ignore_missing_imports = True