mypy.ini 431 B

123456789101112131415161718
  1. [mypy]
  2. plugins = pydantic.mypy
  3. ignore_missing_imports = True
  4. exclude = /(*tests*)
  5. follow_imports = silent
  6. warn_redundant_casts = True
  7. warn_unused_ignores = True
  8. disallow_any_generics = True
  9. check_untyped_defs = True
  10. no_implicit_reexport = True
  11. # to enforce typing everywhere:
  12. # disallow_untyped_defs = True
  13. [pydantic-mypy]
  14. init_forbid_extra = True
  15. init_typed = True
  16. warn_required_dynamic_aliases = True
  17. warn_untyped_fields = True