]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: github: add a few more words to the codespell ignore list
authorThayne McCombs <thayne@lucidchart.com>
Fri, 8 Jan 2021 04:42:56 +0000 (21:42 -0700)
committerWilly Tarreau <w@1wt.eu>
Fri, 8 Jan 2021 14:03:13 +0000 (15:03 +0100)
This adds "referer,ot,uint,iif,fo,keep-alives" to the ignore list:
  - "referer" is the well-known HTTP header field name (with its
    spelling error)
  - "ot" appears a lot in the opentracing contrib.
  - "iff" often stands for "if and only if"
  - "fo" appears as a test string in tests/ist.c (could possibly be
     changed)
  - "keep-alives" appears as a noon in "...enable TCP keep-alives".

.github/workflows/codespell.yml

index c75259147bea33297e03277dc93cd7d3fa1c4f06..8029a21f694fe9012b07f2f6297ff15c2e6648e9 100644 (file)
@@ -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,te,nd --skip="CHANGELOG,*.fig,*.pem"
+      run: codespell -c -q 2 --ignore-words-list ist,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives --skip="CHANGELOG,*.fig,*.pem"