mypy.ini 291 B

1234567891011121314
  1. [mypy]
  2. plugins = pydantic.mypy
  3. follow_imports = silent
  4. warn_redundant_casts = True
  5. warn_unused_ignores = True
  6. disallow_any_generics = True
  7. check_untyped_defs = True
  8. no_implicit_reexport = True
  9. [pydantic-mypy]
  10. init_forbid_extra = True
  11. init_typed = True
  12. warn_required_dynamic_aliases = True