summaryrefslogtreecommitdiff
path: root/share/spack/qa/flake8-packages
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-05-10 23:45:41 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-05-11 00:07:42 -0700
commit2aa4387ebac307285c1b2c90bc6527b82fe83839 (patch)
tree466121625ffb2cc3dd7f00cdcd16c1ae73d6760d /share/spack/qa/flake8-packages
parent7d74e209f365ba135acd9dfe738737bcf37d4b79 (diff)
downloadspack-2aa4387ebac307285c1b2c90bc6527b82fe83839.tar.gz
spack-2aa4387ebac307285c1b2c90bc6527b82fe83839.tar.bz2
spack-2aa4387ebac307285c1b2c90bc6527b82fe83839.tar.xz
spack-2aa4387ebac307285c1b2c90bc6527b82fe83839.zip
Update code style checking.
- Exempt overlong URL lines from checks. - Omit some of the more painful PEP items.
Diffstat (limited to 'share/spack/qa/flake8-packages')
-rw-r--r--share/spack/qa/flake8-packages11
1 files changed, 11 insertions, 0 deletions
diff --git a/share/spack/qa/flake8-packages b/share/spack/qa/flake8-packages
new file mode 100644
index 0000000000..0e5be249fb
--- /dev/null
+++ b/share/spack/qa/flake8-packages
@@ -0,0 +1,11 @@
+# -*- 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)
+#
+ignore = E221,E241,F403,F821
+max-line-length = 79