|
|
|
@ -4,5 +4,5 @@ cd "$(dirname "$0")/.."
|
|
|
|
|
|
|
|
|
|
for file in .cspell/*; do |
|
|
|
|
rm "$file" |
|
|
|
|
cspell lint --quiet --unique --words-only . | tr '[:upper:]' '[:lower:]' | sort -f | uniq > "$file" || true |
|
|
|
|
cspell lint --quiet --unique --words-only . | tr '[:upper:]' '[:lower:]' | sed "s/^r'//" | sort -f | uniq > "$file" || true |
|
|
|
|
done |
|
|
|
|