aboutsummaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
Diffstat (limited to '.flake8')
-rw-r--r--.flake818
1 files changed, 14 insertions, 4 deletions
diff --git a/.flake8 b/.flake8
index 06d70e9..bb1ce94 100644
--- a/.flake8
+++ b/.flake8
@@ -1,8 +1,18 @@
[flake8]
ignore =
- # indentation is not a multiple of four,
- E111,E114,
+ # 'toml' imported but unused
+ F401,
+ # closing bracket does not match visual indentation
+ E124,
+ # continuation line over-indented for hanging indent
+ E126,
# visually indented line with same indent as next logical line,
- E129
+ E129,
+ # line break before binary operator
+ W503,
+ # line break after binary operator
+ W504
-max-line-length=80
+disable-noqa
+indent-size = 2
+max-line-length = 80