summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
Diffstat (limited to '.flake8')
-rw-r--r--.flake812
1 files changed, 12 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 0000000000..ab1e14b66e
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,12 @@
+# -*- conf -*-
+[flake8]
+# Descriptions of ignored checks:
+#
+# E221: multiple spaces before operator
+# E241: multiple spaces after ‘,’
+# F403: disable wildcard import
+# F821: undefined name (needed for build commands)
+# F999: Undefined undefined name (needed for build commands)
+#
+ignore = E221,E241,F403,F821,F999
+max-line-length = 79