From 552968bd5d0329ac6d201f1af1654d5a4296ece1 Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Mon, 7 Oct 2024 13:20:33 -0400 Subject: [PATCH] Add explanations for excluded files --- .github/workflows/codespell.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 58a526f8c..31e9c62bd 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -24,5 +24,8 @@ jobs: check_hidden: true # Add comma separated list of words to ignore (sorted alphabetically, case sensitive) ignore_words_list: adin,ADn,alph,aNULL,carryIn,cconfiguration,chainG,ciph,cLen,cliKs,creen,dout,ede,Fo,haveA,hashIn,larg,LEAPYEAR,inCreated,inOut,inout,Merget,mot,optionA,parm,parms,repid,rIn,rsource,ser,siz,Te,te,TOOM,userA,vie - exclude_file: ./IDE/ECLIPSE/DEOS/tls_wolfssl.c,./IDE/ECLIPSE/MICRIUM/client_wolfssl.c,./IDE/IAR-MSP430/main.c,./tests/api.c + # tls_wolfssl.c, client_wolfssl.c have a PEM as a byte array with word looking things + # IDE/IAR-MSP430/main.c has Ipsum Lorem which has word looking things + # tests/api.c has ASCII encoded strings with line-wraps + exclude_file: './IDE/ECLIPSE/DEOS/tls_wolfssl.c,./IDE/ECLIPSE/MICRIUM/client_wolfssl.c,./IDE/IAR-MSP430/main.c,./tests/api.c' skip: '*.cproject,*.der,*.pem'