summaryrefslogtreecommitdiffstats
path: root/.flake8
diff options
context:
space:
mode:
Diffstat (limited to '.flake8')
-rw-r--r--.flake816
1 files changed, 14 insertions, 2 deletions
diff --git a/.flake8 b/.flake8
index 45ab6562..6b824e97 100644
--- a/.flake8
+++ b/.flake8
@@ -1,3 +1,15 @@
1[flake8] 1[flake8]
2max-line-length=80 2max-line-length=100
3ignore=E111,E114,E402 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 # 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