diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-05-10 08:58:30 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-05-10 08:58:30 -0700 |
commit | c90ecc6847c034f648d49c813e4a633bf16322fb (patch) | |
tree | c7464514965dea4ac245a945b300013b590962d0 /flake8.ini | |
parent | 1a563c2b31315e741fc050c46d203c11e079ec5f (diff) | |
download | spack-c90ecc6847c034f648d49c813e4a633bf16322fb.tar.gz spack-c90ecc6847c034f648d49c813e4a633bf16322fb.tar.bz2 spack-c90ecc6847c034f648d49c813e4a633bf16322fb.tar.xz spack-c90ecc6847c034f648d49c813e4a633bf16322fb.zip |
Add F821 to ignore list.
- Consider removing this once names like `cmake` and `configure` are
moved to a sensible namespace.
Diffstat (limited to 'flake8.ini')
-rw-r--r-- | flake8.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake8.ini b/flake8.ini index f8bff04355..32ced73dd7 100644 --- a/flake8.ini +++ b/flake8.ini @@ -1,3 +1,3 @@ [flake8] -ignore = W391,F403,E221 +ignore = W391,F403,E221,F821 max-line-length = 79 |