setup.cfg 611 B

1234567891011121314151617181920212223242526
  1. [flake8]
  2. max-line-length = 120
  3. max-complexity = 30
  4. exclude =
  5. .git,
  6. venv,
  7. __pycache__,
  8. migrations,
  9. ignore =
  10. W503 # line break before binary operator
  11. E722 # E722 do not use bare except
  12. W391 # Allow a single blank line at end of file
  13. E701 # multiple statements on one line (colon) (due to old version of flake8)
  14. E704 # multiple statements on one line (def) (due to old version of flake8)
  15. [isort]
  16. skip_glob=
  17. .git,
  18. venv,
  19. __pycache__,
  20. migrations,
  21. line_length=120
  22. include_trailing_comma=True
  23. force_grid_wrap=0
  24. use_parentheses=True
  25. multi_line_output=3