From 7b00681e7b48d96caa24b7469133ce85641e0b1d Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 29 Mar 2025 16:34:30 +0900 Subject: [PATCH] Revert "tools: Pin cspell to 8.17.5" This reverts commit 49b013c5cc09a4aff7f0fd1f7c79675049088e20. --- tools/tidy.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/tidy.sh b/tools/tidy.sh index 5bcdd6c0..0b54a699 100755 --- a/tools/tidy.sh +++ b/tools/tidy.sh @@ -978,9 +978,9 @@ if [[ -f .cspell.json ]]; then printf '%s\n' "${config_new}" >|.cspell.json dependencies_words='' if [[ -n "${has_rust}" ]]; then - dependencies_words=$(npx -y cspell@8.17.5 stdin --no-progress --no-summary --words-only --unique <<<"${dependencies}" || true) + dependencies_words=$(npx -y cspell stdin --no-progress --no-summary --words-only --unique <<<"${dependencies}" || true) fi - all_words=$(ls_files | { grep -Fv "${project_dictionary}" || true; } | npx -y cspell@8.17.5 --file-list stdin --no-progress --no-summary --words-only --unique || true) + all_words=$(ls_files | { grep -Fv "${project_dictionary}" || true; } | npx -y cspell --file-list stdin --no-progress --no-summary --words-only --unique || true) printf '%s\n' "${config_old}" >|.cspell.json trap -- 'printf >&2 "%s\n" "${0##*/}: trapped SIGINT"; exit 1' SIGINT cat >|.github/.cspell/rust-dependencies.txt <