diff options
-rw-r--r-- | .flake8 | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,13 @@ | |||
1 | [flake8] | 1 | [flake8] |
2 | max-line-length=100 | 2 | max-line-length=100 |
3 | ignore=E111,E114,E402,W503,W504 | 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 | # W503: Line break before binary operator | ||
11 | W503, | ||
12 | # W504: Line break after binary operator | ||
13 | W504 | ||