mypy.ini 321 B

12345678910111213
  1. [mypy]
  2. python_version = 3.10
  3. warn_return_any = False
  4. warn_unused_configs = True
  5. disallow_untyped_defs = False
  6. check_untyped_defs = True
  7. ignore_missing_imports = True
  8. no_implicit_optional = True
  9. show_error_codes = True
  10. # Gradual typing - be lenient for now
  11. disallow_incomplete_defs = False
  12. disallow_untyped_calls = False