blob: b45c50e9c9a8d2b2229ce35fda48a92817401aa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[flake8]
ignore =
D100,D101,D102,D103 # FIXME: we miss quite a few docstrings
D105 # Missing docstring in magic method
D107 # Missing docstring in __init__
E306 # we don't want blank lines around line functions
Q000 # FIXME: find better solution
T001 # we use print statements in utils
W504 # we put the binary operator on the preceding line
max-complexity = 16
max-line-length = 100
multiline-quotes = '''
avoid-escape = false
filename = *.py,*.py.in
|