From b54d7cb1eabdd383be8aa46adb2f6003abd5cafb Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 17 Oct 2023 21:56:24 +0200 Subject: [PATCH] ci: skip `./api/vendor` in codespell runs The `./api/vendor` directory seems to have spellcheck problems while running locally. For some reason the CI jobs running in GitHub do not seem to be affected. Signed-off-by: Niels de Vos --- scripts/codespell.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/codespell.conf b/scripts/codespell.conf index b2662830a..0e0195230 100644 --- a/scripts/codespell.conf +++ b/scripts/codespell.conf @@ -1,5 +1,5 @@ [codespell] # TODO: enable codespell on retest folder except vendor -skip = .git,./vendor,./docs/design/proposals/images,./actions/retest/*,go.sum +skip = .git,./vendor,./docs/design/proposals/images,./actions/retest/*,./api/vendor,go.sum ignore-words-list = ExtraVersion,extraversion,ba check-filenames = true