ImperialCollegeLondon / python-template

A template for Python projects using cookiecutter
BSD 3-Clause "New" or "Revised" License
4 stars 1 forks source link

Fix codespell arg #137

Closed alexdewar closed 2 weeks ago

alexdewar commented 3 weeks ago

It turns out that -L lets you provide a list of words to ignore on the command line. What we actually want is to provide a file with a list of words to be ignored. The correct option for this is -I.

The reason we didn't notice is because the file is currently empty, but it will be frustrating for whoever actually tries to add something to it!