2018-01-01 18:42:52 +00:00
|
|
|
[flake8]
|
2018-01-06 23:22:41 +00:00
|
|
|
exclude = .git,.tox,__pycache__,.eggs,build
|
2018-01-01 18:42:52 +00:00
|
|
|
max-line-length = 100
|
|
|
|
ignore =
|
|
|
|
# E265 block comment should start with '# '
|
|
|
|
E265,
|
|
|
|
# E266 too many leading '#' for block comment
|
|
|
|
E266,
|
|
|
|
# E402 module level import not at top of file
|
|
|
|
E402,
|
|
|
|
# E722 do not use bare except
|
|
|
|
E722,
|
2018-10-07 03:03:26 +00:00
|
|
|
# flake8 and black disagree about
|
|
|
|
# W503 line break before binary operator
|
|
|
|
# E203 whitespace before ':'
|
|
|
|
W503,E203
|
2018-01-06 23:49:58 +00:00
|
|
|
doctests = true
|