lint: ignore python's compiled files for codespell

This commit is contained in:
Lars Kruse 2020-08-25 15:41:17 +02:00
parent 72eeb4155f
commit d1a69fe25b
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
lint:
# TODO: add "--ignore-words .codespell.ignore-words" as soon as travis supports a newer
# testing environment (containing codespell 0.11 or later).
find plugins/ -type f -not -name "*.png" -not -name "*.conf" -not -name "*.jar" -print0 \
find plugins/ -type f -not -name "*.png" -not -name "*.conf" -not -name "*.jar" -not -name "*.pyc" -print0 \
| xargs -0 codespell \
--exclude-file .codespell.exclude