Advertisement
AntonDnepr

Mypy for test

May 13th, 2020
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. [mypy]
  2. plugins =
  3. mypy_django_plugin.main,
  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. [mypy.plugins.django-stubs]
  21. django_settings_module = conf.settings
  22.  
  23. [mypy-*.migrations.*]
  24. ignore_errors = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement