Skip to content

Commit

Permalink
lint: ignore python's compiled files for codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
sumpfralle committed Aug 25, 2020
1 parent 72eeb41 commit d1a69fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d1a69fe

Please sign in to comment.