summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
Diffstat (limited to '.flake8')
-rw-r--r--.flake814
1 files changed, 13 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 20d6db4..ba8a3d6 100644
--- a/.flake8
+++ b/.flake8
@@ -1,2 +1,14 @@
[flake8]
-ignore = BLK100
+builtins = _
+exclude =
+ .git,
+ __pycache__,
+ .venv/,venv/,
+ .tox/,
+ build/,dist/,*egg,
+ docs/conf.py,
+ zookeeper/
+# See black's documentation for E203
+max-line-length = 79
+extend-ignore = BLK100,E203
+