mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
5 lines
137 B
Bash
5 lines
137 B
Bash
|
for line in $(cat spell_check_results.txt); do
|
||
|
echo "Adding $line to cspell.config.yaml"
|
||
|
echo " - $line" >> cspell.config.yaml
|
||
|
done
|