mypy.ini 337 B

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