Commit 6ba830c7 by Carl Bergquist Committed by GitHub

Merge pull request #11632 from mjtrangoni/fix-codespell-circleci

codespell: exclude by words instead of files
parents e81330ab b0217f5d
......@@ -10,8 +10,12 @@ jobs:
name: install codespell
command: 'sudo pip install codespell'
- run:
# Important: all words have to be in lowercase, and separated by "\n".
name: exclude known exceptions
command: 'echo -e "unknwon" > words_to_ignore.txt'
- run:
name: check documentation spelling errors
command: 'codespell -x docs/sources/project/building_from_source.md docs/'
command: 'codespell -I ./words_to_ignore.txt docs/'
test-frontend:
docker:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment