Skip to content

Commit

Permalink
Set up spell-checking action
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Mar 2, 2020
1 parent 4608fd0 commit a4ab572
Show file tree
Hide file tree
Showing 3 changed files with 3,466 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/spell-check/excludes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
(?:^|/)go\.mod$
(?:^|/)go\.sum$
(?:^|/)package-lock\.json$
SUMS$
\.ai$
\.bmp$
\.cer$
\.class$
\.crl$
\.crt$
\.csr$
\.dll$
\.DS_Store$
\.eot$
\.eps$
\.exe$
\.gif$
\.graffle$
\.gz$
\.icns$
\.ico$
\.jar$
\.jpeg$
\.jpg$
\.key$
\.lib$
\.lock$
\.map$
\.min\..
\.mp3$
\.mp4$
\.otf$
\.pdf$
\.pem$
\.png$
\.psd$
\.sig$
\.so$
\.svg$
\.svgz$
\.tar$
\.tgz$
\.ttf$
\.woff
\.xcf$
\.xls
\.xpm$
\.yml$
\.zip$
^dep/
^doc/reference/UTF8-torture-test\.txt$
^excludes\.txt$
^src/interactivity/onecore/BgfxEngine\.
^src/renderer/wddmcon/WddmConRenderer\.
^src/terminal/parser/ft_fuzzer/VTCommandFuzzer\.cpp$
^src/tools/U8U16Test/(?:fr|ru|zh)\.txt$
^whitelist\.txt$
Loading

1 comment on commit a4ab572

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New misspellings found, please review:

  • abcdefghijklmnop
  • ahderes
  • antialiasing
  • cbuffer
  • cer
  • currenty
  • eot
  • eps
  • exerpt
  • fallthough
  • graffle
  • gz
  • icns
  • idenfitied
  • kaomojis
  • linebreaked
  • mutiply
  • occured
  • otf
  • PCWCH
  • pem
  • propogate
  • providied
  • qrstuvwxyz
  • renderered
  • Reseting
  • seperate
  • seperated
  • seperately
  • succeded
  • succesfully
  • svgz
  • Temrinal
  • tgz
  • transfered
  • whitelist
  • woff
  • xls
  • xpm
  • Zoey
  • zorio
To accept these changes, run the following commands (They can be run anywhere with permissions to update the bucket.)
cp .github/workflows/spell-check/whitelist.txt whitelist.txt
(
egrep -v "$(echo "Cleartype
Csr
GRAYSCALE
SUBRESOURCE" | tr "\n" " " | perl -pne 's/^/^(/;s/\s$/)\$/;s/\s/|/g')" whitelist.txt;
echo "
abcdefghijklmnop
ahderes
antialiasing
cbuffer
cer
cleartype
csr
currenty
eot
eps
exerpt
fallthough
graffle
grayscale
gz
icns
idenfitied
kaomojis
linebreaked
mutiply
occured
otf
PCWCH
pem
propogate
providied
qrstuvwxyz
renderered
Reseting
seperate
seperated
seperately
subresource
succeded
succesfully
svgz
Temrinal
tgz
transfered
whitelist
woff
xls
xpm
Zoey
zorio
"
) | sort -u -f | grep . > new_whitelist.txt && mv new_whitelist.txt whitelist.txt
cp whitelist.txt .github/workflows/spell-check/whitelist.txt

Please sign in to comment.