Open
Description
here's an example how we run codespell: https://github.com/haproxy/haproxy/runs/2496511962?check_suite_focus=true
Run codespell -c -q 2 --ignore-words-list ist,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives,dosen --skip="CHANGELOG,Makefile,*.fig,*.pem"
./include/haproxy/quic_loss.h:141: hel ==> help, hell, heal
./include/haproxy/quic_loss.h:143: hel ==> help, hell, heal
./include/haproxy/connection-t.h:644: unx ==> unix
./include/import/ist.h:849: ists ==> its, lists
since I specified --ignore-words ist
, I expect ists
to be ignored as well
(as a workaround I'll it to ignore list)