diff options
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -1,3 +1,15 @@ | |||
1 | [flake8] | 1 | [flake8] |
2 | max-line-length=80 | 2 | max-line-length=100 |
3 | ignore=E111,E114,E402 | 3 | ignore= |
4 | # E111: Indentation is not a multiple of four | ||
5 | E111, | ||
6 | # E114: Indentation is not a multiple of four (comment) | ||
7 | E114, | ||
8 | # E402: Module level import not at top of file | ||
9 | E402, | ||
10 | # E731: do not assign a lambda expression, use a def | ||
11 | E731, | ||
12 | # W503: Line break before binary operator | ||
13 | W503, | ||
14 | # W504: Line break after binary operator | ||
15 | W504 | ||