Skip to content

Commit

Permalink
Sync over the latest and greatest spellcheck config
Browse files Browse the repository at this point in the history
  • Loading branch information
tas50 committed Oct 25, 2024
1 parent 581b1cc commit 4d132fe
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
29 changes: 27 additions & 2 deletions .github/actions/spelling/line_forbidden.patterns
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@

\b[Ll]orem [Ii]psum\b

#
# Overly formal style
#

# s.b. Whether
\bIndicates whether\b
\bIndicates if\b
\bIndicates\b
\bWhether or not\b
\bDenotes if\b

#
# Terms to avoid
#
Expand Down Expand Up @@ -202,13 +213,24 @@

# s.b. SentinelOne
\bSentinal[Oo]ne\b
\bSentinelone\b
\bSentinal One\b
\bSentin[ae]lone\b
\bSentin[ae]l One\b

# s.b. CrowdStrike
\bCrowd Strike\b
\b[Cc]rowdstrike\b

# s.b. Zendesk
\bZenDesk\b

# s.b. ServiceNow
\bService Now\b
\bServicenow\b

# s.b. name server
\bnameserver\b
\bnameservers\b

#
# Kubernetes Terms
#
Expand Down Expand Up @@ -679,6 +701,9 @@
# s.b. policies
[Pp]olices

# s.b. ID
# \bId\b # disabled in this repo due to false positives

# s.b. CSV
\bCVS\b

Expand Down
1 change: 1 addition & 0 deletions .github/actions/spelling/reject.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ Sorce
\w*(?<!right-)click
deets
organisation

4 changes: 2 additions & 2 deletions .github/workflows/spell-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- name: check-spelling
id: spelling
uses: check-spelling/check-spelling@v0.0.22
uses: check-spelling/check-spelling@v0.0.23
with:
suppress_push_for_open_pull_request: 1
checkout: true
Expand All @@ -47,7 +47,7 @@ jobs:
if: (success() || failure()) && needs.spelling.outputs.followup
steps:
- name: comment
uses: check-spelling/check-spelling@v0.0.22
uses: check-spelling/check-spelling@v0.0.23
with:
checkout: true
task: ${{ needs.spelling.outputs.followup }}

0 comments on commit 4d132fe

Please sign in to comment.