Skip to content

Commit

Permalink
script
Browse files Browse the repository at this point in the history
  • Loading branch information
kayman-mk committed Jan 9, 2025
1 parent 1f25a7c commit 68a0619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/check_dictionaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mapfile -t DICTIONARY_FILES_TO_CHECK < <(ls .config/dictionaries/*.txt)

# Make a list of every misspelled word without any custom dictionaries and configuration file
mv "$CSPELL_CONFIGURATION_FILE" "${CSPELL_CONFIGURATION_FILE}.temp"
npx cspell . --dot --no-progress --no-summary --unique --words-only --no-exit-code --exclude ".git/**" --exclude "$DICTIONARIES_PATH/**" | sort --ignore-case --unique > "$MISSPELLED_WORDS_PATH"
npx cspell . --dot --no-progress --no-summary --unique --words-only --no-exit-code --exclude ".git/**" --exclude ".idea/**" --exclude "$DICTIONARIES_PATH/**" | sort --ignore-case --unique > "$MISSPELLED_WORDS_PATH"

# Check the custom dictionaries
ONE_OR_MORE_FAILURES=0
Expand Down

0 comments on commit 68a0619

Please sign in to comment.