Run spellcheck on tools directory (#33627)
Some checks are pending
release-nightly / nightly-binary (push) Waiting to run
release-nightly / nightly-docker-rootful (push) Waiting to run
release-nightly / nightly-docker-rootless (push) Waiting to run
cron-translations / crowdin-pull (push) Has been skipped

Add `tools` files to spellcheck and fixed one issue.
This commit is contained in:
silverwind
2025-02-17 18:39:12 +01:00
committed by GitHub
parent f35850f48e
commit f5a81f9636
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ IGNORE_PATTERNS=(
)
# lint all go files with 'gopls check' and look for lines starting with the
# current absolute path, indicating a error was found. This is neccessary
# current absolute path, indicating a error was found. This is necessary
# because the tool does not set non-zero exit code when errors are found.
# ref: https://github.com/golang/go/issues/67078
ERROR_LINES=$("$GO" run "$GOPLS_PACKAGE" check "$@" 2>/dev/null | grep -E "^$PWD" | grep -vFf <(printf '%s\n' "${IGNORE_PATTERNS[@]}"));