setup.cfg 440 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [flake8]
  2. ignore =
  3. # continuation line missing indentation or outdented
  4. E122,
  5. # line too long
  6. E501,
  7. # Ignore all flake8 errors for now. Whoever wants to fixup our code (PLEASE),
  8. # remove one, fixup all occurences, submit a merge request...
  9. E123,
  10. E124,
  11. E125,
  12. E126,
  13. E127,
  14. E128,
  15. E129,
  16. E241,
  17. E261,
  18. E265,
  19. E266,
  20. E305,
  21. E306,
  22. E402,
  23. E722,
  24. E731,
  25. E741,
  26. E999,
  27. F401,
  28. F403,
  29. F405,
  30. F812,
  31. F821,
  32. F841,
  33. W291,
  34. W293,
  35. W391,
  36. W503