tornado/.flake8

16 lines
376 B
Plaintext
Raw Normal View History

[flake8]
exclude = .git,.tox,__pycache__,.eggs,build
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,
# W504 line break after binary operator
W504,
2018-01-06 23:49:58 +00:00
doctests = true