[flake8]
# F401 'foo' imported but unused
# F403 'from foo import *' used; unable to detect undefined names
# F405 'foo' may be undefined, or defined from star imports
# E116 unexpected indentation (comment)
# E117 over-indented (comment)
# E226 missing whitespace around arithmetic operator
# E261 at least two spaces before inline comment
# E262 inline comment should start with '# '
# E265 block comment should start with '# '
# E266 too many leading '#' for block comment
# E731 do not assign a lambda expression, use a def
# E741 ambiguous variable name
# W503 line break before binary operator
# W504 line break after binary operator
ignore = F401,F403,F405,E116,E117,E226,E261,E262,E265,E266,E731,E741,W503,W504
max-line-length = 128
