Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. [flake8]
  2. doctests = true
  3. exclude =
  4. .git
  5. max-complexity = 5
  6. max-line-length = 120
  7. ignore = W503,E203
  8.  
  9. [mypy]
  10. check_untyped_defs = true
  11. disallow_untyped_defs = true
  12. ignore_missing_imports = true
  13. no_implicit_optional = true
  14. warn_redundant_casts = true
  15. warn_return_any = true
  16. warn_unused_ignores = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement