ci: exclude input/ from codespell errors

This commit is contained in:
Heiko Schaefer 2023-11-26 14:58:34 +01:00
parent 1b33c10bf5
commit 844f0a3561
No known key found for this signature in database
GPG key ID: DAE9A9050FCCF1EB
2 changed files with 2 additions and 1 deletions

View file

@ -2,4 +2,4 @@
# SPDX-License-Identifier: CC0-1.0 # SPDX-License-Identifier: CC0-1.0
[codespell] [codespell]
skip = ./build,./source/diag/*.svg skip = ./build,./input,./source/diag/*.svg

View file

@ -30,6 +30,7 @@ html-linkcheck: clean html
codespell: codespell:
@$(PRINTF) "The following change suggestions are only warnings! (Please don't fix them)\n" @$(PRINTF) "The following change suggestions are only warnings! (Please don't fix them)\n"
@$(CODESPELL) source/diag || true @$(CODESPELL) source/diag || true
@$(CODESPELL) input/ || true
@$(PRINTF) "The following change suggestions are errors!\n" @$(PRINTF) "The following change suggestions are errors!\n"
@$(CODESPELL) . @$(CODESPELL) .