aboutsummaryrefslogtreecommitdiffstats
path: root/.flake8
diff options
context:
space:
mode:
authorcclauss <cclauss@bluewin.ch>2018-04-12 22:37:27 +0200
committerTrygve Aaberge <trygveaa@gmail.com>2018-04-12 22:37:27 +0200
commit37840baea2a48db7192c2ef502b5b36995476981 (patch)
treee93ac6929422eaec62fef7280ccc712c64106704 /.flake8
parent5f7318d58337cf4ff429e9c9d6f33d55940c03c0 (diff)
downloadwee-slack-37840baea2a48db7192c2ef502b5b36995476981.tar.gz
Use flake8 to find undefined names (#556)
Diffstat (limited to '.flake8')
-rw-r--r--.flake87
1 files changed, 7 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 0000000..b4d95b8
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,7 @@
+[flake8]
+select = E901,E999,F821,F822,F823
+count = True
+max-complexity = 10
+max-line-length = 120
+show-source = True
+statistics = True