We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e71986c + 7bb4863 commit 6e4df66Copy full SHA for 6e4df66
hack/verify-spelling.sh
@@ -45,10 +45,10 @@ cd "${ROOT}"
45
RES=0
46
echo "Checking spelling..."
47
ERROR_LOG="${TMP_DIR}/errors.log"
48
-git ls-files | grep -v vendor | xargs misspell > "${ERROR_LOG}"
+git ls-files ':!*.yaml' | grep -v vendor | xargs misspell > "${ERROR_LOG}"
49
if [[ -s "${ERROR_LOG}" ]]; then
50
sed 's/^/error: /' "${ERROR_LOG}" # add 'error' to each line to highlight in e2e status
51
echo "Found spelling errors!"
52
RES=1
53
fi
54
-exit "${RES}"
+exit "${RES}"
0 commit comments