fix all typos

This commit is contained in:
proddy
2024-09-11 20:23:58 +02:00
parent 426555bac6
commit 44ef7dd0bc
30 changed files with 1630 additions and 307 deletions

16
scripts/cspell.sh Normal file
View File

@@ -0,0 +1,16 @@
# check spelling
# see https://cspell.org/docs/installation/
# and https://github.com/streetsidesoftware/vscode-spell-checker/blob/main/FAQ.md
# go to root top level directory
# install cpsell with yarn add --dev cspell@latest
# first time installation
# 1) run `npx cspell "**" --no-progress --unique > words-found-verbose.txt`
# and check if there are folders that you should be added to the ignore list in cpsell.json
#
# 2) then to build up the dictionary with just the words
# % npx cspell --words-only --unique "**" | sort --ignore-case > project-words.txt
# To run a full check on the code do:
# % npx cspell "**"