setup.cfg 671 B

123456789101112131415161718192021222324
  1. [flake8]
  2. ignore =
  3. # E241: multiple spaces after ':'
  4. E241,
  5. # E251: unexpected spaces around keyword / parameter equals
  6. E251,
  7. # E261: at least two spaces before inline comment
  8. E261,
  9. # E501: line too long
  10. E501,
  11. # E302: expected 2 blank lines, found 1
  12. E302,
  13. # E305: expected 2 blank lines after class or function definition, found 1
  14. E305,
  15. # E401: multiple imports on one line
  16. E401,
  17. # E266: too many leading '#' for block comment
  18. E266,
  19. # E402: module level import not at top of file
  20. E402,
  21. # E731: do not assign a lambda expression, use a def (too many false positives)
  22. E731
  23. max-line-length = 120