.flake8 927 B

12345678910111213141516171819202122232425262728293031323334
  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. # E265: block comment should start with '# '
  10. E265,
  11. # E501: line too long
  12. E501,
  13. # E302: expected 2 blank lines, found 1
  14. E302,
  15. # E305: expected 2 blank lines after class or function definition, found 1
  16. E305,
  17. # E401: multiple imports on one line
  18. E401,
  19. # E266: too many leading '#' for block comment
  20. E266,
  21. # E402: module level import not at top of file
  22. E402,
  23. # E731: do not assign a lambda expression, use a def (too many false positives)
  24. E731,
  25. # E741: ambiguous variable name 'l'
  26. E741,
  27. # E722: do not use bare except'
  28. E722,
  29. # W504: line break after binary operator
  30. W504,
  31. # A003: builtin class attribute
  32. A003
  33. max-line-length = 120