From c889dedadf770d301119a73856a5dd9f06ddbdb7 Mon Sep 17 00:00:00 2001 From: Brad Davidson Date: Fri, 3 Dec 2021 13:44:05 -0800 Subject: [PATCH] More codespell ignores Signed-off-by: Brad Davidson (cherry picked from commit 6872e7da2559ee3aa68879ddf7a492c5d8d87b21) --- scripts/codespell.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/codespell.sh b/scripts/codespell.sh index 53f7404409..34576c311f 100755 --- a/scripts/codespell.sh +++ b/scripts/codespell.sh @@ -1,9 +1,8 @@ #!/bin/bash -set -e # Ignore vendor folder and check file names as well # Note: ignore "ba" in https://github.com/k3s-io/k3s/blob/4317a91/scripts/provision/vagrant#L54 -codespell --skip=.git,./vendor,go.mod,go.sum --check-filenames --ignore-words-list=ba +codespell --skip=.git,./vendor,MAINTAINERS,go.mod,go.sum --check-filenames --ignore-words-list=ba code=$? if [ $code -ne 0 ]; then