aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2020-03-31 15:25:18 +0200
committerGuido Günther <agx@sigxcpu.org>2020-03-31 15:48:08 +0200
commitd9f22acca085a390671c7f705f52102e6b7a114a (patch)
treefb84fa66b8503bc52cc4f1299b5fe49e771cc587 /setup.cfg
parent245f2030c5a3f4f38d4cd78caf80ad11c6c7a628 (diff)
Relax flake8 defaults a bit
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..0c70a55
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,5 @@
+[flake8]
+# E501: ignore line length
+# E265: block comment should start with '# '
+# E401: multiple imports on one line
+ignore=E501,E265,E401,W504