Run codespell against source code too, refs #307

This commit is contained in:
Simon Willison 2021-08-03 10:06:08 -07:00
commit cff6afcc43
3 changed files with 5 additions and 3 deletions

View file

@ -22,4 +22,6 @@ jobs:
run: | run: |
pip install -e '.[docs]' pip install -e '.[docs]'
- name: Check spelling - name: Check spelling
run: codespell docs/*.rst --ignore-words docs/codespell-ignore-words.txt run: |
codespell docs/*.rst --ignore-words docs/codespell-ignore-words.txt
codespell sqlite_utils --ignore-words docs/codespell-ignore-words.txt

View file

@ -1 +1 @@
AddWordsToIgnoreHere doub

View file

@ -44,7 +44,7 @@ It's often worth trying: --encoding=latin-1
""".strip() """.strip()
# Increase CSV field size limit to maximim possible # Increase CSV field size limit to maximum possible
# https://stackoverflow.com/a/15063941 # https://stackoverflow.com/a/15063941
field_size_limit = sys.maxsize field_size_limit = sys.maxsize