summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-05-11 01:16:41 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-05-11 01:16:41 -0700
commitd7847ff7685a52670a9d01cf39bd44eff1a57684 (patch)
treeb65724924804e99f4a8082d49c0d1d7fbeaf307e /.flake8
parent2aa4387ebac307285c1b2c90bc6527b82fe83839 (diff)
downloadspack-d7847ff7685a52670a9d01cf39bd44eff1a57684.tar.gz
spack-d7847ff7685a52670a9d01cf39bd44eff1a57684.tar.bz2
spack-d7847ff7685a52670a9d01cf39bd44eff1a57684.tar.xz
spack-d7847ff7685a52670a9d01cf39bd44eff1a57684.zip
Use just one flake8 file; mark package.py files to avoid E501 w/url.
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