summaryrefslogtreecommitdiff
path: root/.flake8
blob: 3b1f77dece40e07386b80652715c26adfba1c20b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[flake8]
ignore =
       # Prefer emacs indentation of continued lines
       E126,
       E127,
       E129,
       # Whitespace round parameter '=' can be excessive
       E252,
       # Multiple # in a comment is OK
       E266,
       # Not excited by the "two blank lines" rule
       E302,
       E305,
       # or the one blank line rule
       E306,
       # Ambigious variables are ok.
       E741,
       # Lines ending with binary operators are OK
       W504,

max-line-length = 80