]> git.ipfire.org Git - thirdparty/tornado.git/blob - .flake8
Merge pull request #3420 from bdarnell/rtd
[thirdparty/tornado.git] / .flake8
1 [flake8]
2 exclude = .git,.tox,__pycache__,.eggs,build
3 max-line-length = 100
4 ignore =
5 # E265 block comment should start with '# '
6 E265,
7 # E266 too many leading '#' for block comment
8 E266,
9 # E402 module level import not at top of file
10 E402,
11 # E722 do not use bare except
12 E722,
13 # flake8 and black disagree about
14 # W503 line break before binary operator
15 # E203 whitespace before ':'
16 W503,E203
17 doctests = true