diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2017-01-17 01:36:03 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-01-17 01:36:03 -0800 |
commit | 52a9e5d2a31b4a66ce51d0ff03ab709417dee6dc (patch) | |
tree | ef8216231785feaf7ee3f2d037f4240bdd115be8 /.flake8 | |
parent | 4f8167b7ed8fe156e1f350aaa37230ab07a27895 (diff) | |
parent | 18563177775509286e5b53744ea5924bc450d9c2 (diff) | |
download | spack-52a9e5d2a31b4a66ce51d0ff03ab709417dee6dc.tar.gz spack-52a9e5d2a31b4a66ce51d0ff03ab709417dee6dc.tar.bz2 spack-52a9e5d2a31b4a66ce51d0ff03ab709417dee6dc.tar.xz spack-52a9e5d2a31b4a66ce51d0ff03ab709417dee6dc.zip |
Merge branch 'releases/v0.10.0'v0.10.0
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -5,16 +5,22 @@ # 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 # # Spack allows wildcard imports: # - 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 = E221,E241,F403,F821,F999 +ignore = E129,E221,E241,E272,E731,F403,F405,F821,F999 max-line-length = 79 |