Advertisement
Guest User

Untitled

a guest
Apr 10th, 2020
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. [mypy]
  2. python_version = 3.7
  3.  
  4. check_untyped_defs = True
  5. disallow_any_generics = True
  6. disallow_untyped_calls = True
  7. disallow_untyped_decorators = True
  8. ignore_errors = False
  9. ignore_missing_imports = True
  10. implicit_reexport = False
  11. strict_optional = True
  12. strict_equality = True
  13. no_implicit_optional = True
  14. warn_unused_ignores = True
  15. warn_redundant_casts = True
  16. warn_unused_configs = True
  17. warn_unreachable = True
  18. warn_no_return = True
  19.  
  20. plugins =
  21. mypy_django_plugin.main, mypy_drf_plugin.main
  22.  
  23. [mypy.plugins.django-stubs]
  24. django_settings_module = "project.settings"
  25.  
  26. [mypy-*.migrations.*]
  27. ignore_errors = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement