summaryrefslogtreecommitdiff
path: root/.flake8_packages
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-01-21 05:35:11 -0600
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2019-01-21 12:35:11 +0100
commit39725e07841f03da2a3f1a16a5f678ec224833f7 (patch)
treef682580146e49fe7a8e233201192a795796d7708 /.flake8_packages
parentbb1f8b0e3e4298fc256359395c901fc3db84a033 (diff)
downloadspack-39725e07841f03da2a3f1a16a5f678ec224833f7.tar.gz
spack-39725e07841f03da2a3f1a16a5f678ec224833f7.tar.bz2
spack-39725e07841f03da2a3f1a16a5f678ec224833f7.tar.xz
spack-39725e07841f03da2a3f1a16a5f678ec224833f7.zip
Typo fixes in .flake8 comments (#10399)
Diffstat (limited to '.flake8_packages')
-rw-r--r--.flake8_packages10
1 files changed, 6 insertions, 4 deletions
diff --git a/.flake8_packages b/.flake8_packages
index 74b42293af..e7677e66d2 100644
--- a/.flake8_packages
+++ b/.flake8_packages
@@ -7,16 +7,18 @@
# wildcard import and dependencies can set globals for their
# dependents. So we add exceptions for checks related to undefined names.
#
-# Note that we also add *per-line* exemptions for certain patters in the
+# Note that we also add *per-line* exemptions for certain patterns in the
# `spack flake8` command. This is where F403 for `from spack import *`
# is added (beause we *only* allow that wildcard).
#
# See .flake8 for regular exceptions.
#
-# Redefinition exceptions:
+# F4: Import
# - F405: `name` may be undefined, or undefined from star imports: `module`
-# - F821: undefined name `name` (needed for cmake, configure, etc.)
+#
+# F8: Name
+# - F821: undefined name `name`
#
[flake8]
-ignore = E129,E221,E241,E272,E731,F999,F405,F821,W503,W504
+ignore = E129,E221,E241,E272,E731,W503,W504,F405,F821,F999
max-line-length = 79