From d1a69fe25b04ef4f3a0bc157caf3d0827761feb1 Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Tue, 25 Aug 2020 15:41:17 +0200 Subject: [PATCH] lint: ignore python's compiled files for codespell --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea8a844f..fbdfd286 100644 --- a/Makefile +++ b/Makefile @@ -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