summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-08-30 20:43:29 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-08-30 20:43:29 -0700
commit918cb1692114a16eb738a80023fcdd1c8d98b011 (patch)
tree9d4142706272c100dc3395f0c027effec5fd3e2e /.flake8
parent7e4c6afd9160beedf7956bc5492c93eb30f93a3e (diff)
parent176a84a8285b4117c9465f92d323dbb6aa4eb82c (diff)
downloadspack-918cb1692114a16eb738a80023fcdd1c8d98b011.tar.gz
spack-918cb1692114a16eb738a80023fcdd1c8d98b011.tar.bz2
spack-918cb1692114a16eb738a80023fcdd1c8d98b011.tar.xz
spack-918cb1692114a16eb738a80023fcdd1c8d98b011.zip
Merge branch 'features/travis' into develop
Diffstat (limited to '.flake8')
-rw-r--r--.flake811
1 files changed, 7 insertions, 4 deletions
diff --git a/.flake8 b/.flake8
index b178a2da57..023f392952 100644
--- a/.flake8
+++ b/.flake8
@@ -5,8 +5,10 @@
# rationale is.
#
# Let people line things up nicely:
+# - E129: visually indented line with same indent as next logical line
# - E221: multiple spaces before operator
-# - E241: multiple spaces after ‘,’
+# - E241: multiple spaces after ','
+# - E272: multiple spaces before keyword
#
# Let people use terse Python features:
# - E731 : lambda expressions
@@ -15,9 +17,10 @@
# - F403: disable wildcard import
#
# These are required to get the package.py files to test clean.
-# - F821: undefined name (needed for cmake, configure, etc.)
-# - F999: name name be undefined or undefined from star imports.
+# - F405: `name` may be undefined, or undefined from star imports: `module`
+# - F821: undefined name `name` (needed for cmake, configure, etc.)
+# - F999: syntax error in doctest
#
[flake8]
-ignore = E129,E221,E241,E272,E731,F403,F821,F999,F405
+ignore = E129,E221,E241,E272,E731,F403,F405,F821,F999
max-line-length = 79