setup.cfg 451 B

1234567891011121314151617181920212223242526272829
  1. [flake8]
  2. ignore =
  3. # continuation line missing indentation or outdented
  4. E122,
  5. # line too long
  6. E501,
  7. # project choice; PEP 8 recommends line breaks before binary operators:
  8. W503,
  9. # Ignore all flake8 errors for now. Whoever wants to fixup our code (PLEASE),
  10. # remove one, fixup all occurences, submit a merge request...
  11. E124,
  12. E125,
  13. E126,
  14. E127,
  15. E128,
  16. E129,
  17. E241,
  18. E261,
  19. E266,
  20. E402,
  21. E722,
  22. E741,
  23. F401,
  24. F403,
  25. F405,
  26. F812,
  27. F821,
  28. F841,