From 5a6347fe3fe312d26f3a9e2b054a0c9e3118869c Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Mon, 21 Dec 2020 01:03:12 +0500 Subject: [PATCH] CI: codespell: whitelist "te" and "nd" words te is widely used abbrevation for "transfer encoding" nd is variable name "name description" we need to teach codespell those are legitimate --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index c706c4e..c752591 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -14,4 +14,4 @@ jobs: - name: install prerequisites run: sudo pip install codespell - name: check - run: codespell -c -q 2 --ignore-words-list ist,hist,wan,ca,cas,que,ans --skip="CHANGELOG,*.fig,*.pem" + run: codespell -c -q 2 --ignore-words-list ist,hist,wan,ca,cas,que,ans,te,nd --skip="CHANGELOG,*.fig,*.pem" -- 1.7.10.4