Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. [flake8]
  2. ignore =
  3. W391,
  4. E402,
  5. # ignore definition docstring, as not all of the definitions require it
  6. D103,
  7. # ignore package docstring, as module docstring is much accurate
  8. D104,
  9. # ignore docstring in __init__ methods
  10. D107
  11.  
  12. import-order-style = edited
  13. # list local package names here:
  14. application-package-names = docs,exc,health,lib,settings
  15.  
  16. max-line-length = 100
  17. max-complexity = 8
  18. exclude =
  19. # No need to traverse our git directory
  20. .git,
  21. # There's no value in checking cache directories
  22. __pycache__
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement