summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.flake812
1 files changed, 11 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 73a10a25..8b428805 100644
--- a/.flake8
+++ b/.flake8
@@ -1,3 +1,13 @@
1[flake8] 1[flake8]
2max-line-length=100 2max-line-length=100
3ignore=E111,E114,E402,W503,W504 3ignore=
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