Forráskód Böngészése

makefile: add some globs to the skiplist

Daniele Bartolini 1 hete
szülő
commit
f9ac0ac9aa
1 módosított fájl, 10 hozzáadás és 2 törlés
  1. 10 2
      makefile

+ 10 - 2
makefile

@@ -361,9 +361,17 @@ clean-docs:
 
 .PHONY: codespell
 codespell:
-	@codespell docs src tools \
+	@codespell docs src tools                           \
 		--ignore-words=scripts/codespell-dictionary.txt \
-		--skip "*.ttf.h,*.png,*.css,docs/_themes,tools/level_editor/resources/theme/Adwaita" \
+		--skip                                          \
+		"*.ttf.h,                                       \
+		*.css,                                          \
+		*.jpg,                                          \
+		*.png,                                          \
+		*.xcf,                                          \
+		docs/_extensions,                               \
+		docs/_themes,                                   \
+		tools/level_editor/resources/theme/Adwaita"     \
 		-q4 # 4: omit warnings about automatic fixes that were disabled in the dictionary.
 
 .PHONY: cppcheck