summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-11-08 17:05:46 -0800
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-11-08 17:05:46 -0800
commit2199cf29b48f3f9789ce108951121ac6e55c5d4c (patch)
tree1fe5e54768223be3fd1cd184e16ef2288c600270 /tools
parent6240367f1e87b077c81a8af2883cd4b50f64d76b (diff)
parent154ad87b29344ea4d29d92f8559f61bb6efe6530 (diff)
downloadvyos-cloud-init-2199cf29b48f3f9789ce108951121ac6e55c5d4c.tar.gz
vyos-cloud-init-2199cf29b48f3f9789ce108951121ac6e55c5d4c.zip
Merge fix for distro config not being
reflected when running in the init stage after user-data has been loaded.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run-pep813
1 files changed, 12 insertions, 1 deletions
diff --git a/tools/run-pep8 b/tools/run-pep8
index ad55d420..1dfa92c3 100755
--- a/tools/run-pep8
+++ b/tools/run-pep8
@@ -21,10 +21,21 @@ else
base=`pwd`/tools/
fi
+IGNORE="E501" # Line too long (these are caught by pylint)
+
+# King Arthur: Be quiet! ... Be Quiet! I Order You to Be Quiet.
+IGNORE="$IGNORE,E121" # Continuation line indentation is not a multiple of four
+IGNORE="$IGNORE,E123" # Closing bracket does not match indentation of opening bracket's line
+IGNORE="$IGNORE,E124" # Closing bracket missing visual indentation
+IGNORE="$IGNORE,E125" # Continuation line does not distinguish itself from next logical line
+IGNORE="$IGNORE,E126" # Continuation line over-indented for hanging indent
+IGNORE="$IGNORE,E127" # Continuation line over-indented for visual indent
+IGNORE="$IGNORE,E128" # Continuation line under-indented for visual indent
+
cmd=(
${base}/hacking.py
- --ignore=E501 # Line too long (these are caught by pylint)
+ --ignore="$IGNORE"
"${files[@]}"
)