A multipurpose python flask API server and administration SPA
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
256 B

  1. [mypy]
  2. ignore_missing_imports = True
  3. follow_imports = skip
  4. disallow_untyped_calls = False
  5. disallow_untyped_defs = True
  6. check_untyped_defs = True
  7. disallow_subclassing_any = False
  8. warn_redundant_casts = True
  9. warn_unused_ignores = True
  10. strict_optional = True