Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
745 changes: 10 additions & 735 deletions .circleci/config.yml

Large diffs are not rendered by default.

26 changes: 12 additions & 14 deletions .github/actions/spell-check/advice.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
<!-- See https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples%3A-advice --> <!-- markdownlint-disable MD033 MD041 -->
<details><summary>If you see a bunch of garbage</summary>
<details><summary>If the flagged items do not appear to be text</summary>

If it relates to a ...
<details><summary>well-formed pattern</summary>
If items relate to a ...
* well-formed pattern.

See if there's a [pattern](https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples:-patterns) that would match it.
If you can write a [pattern](https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples:-patterns) that would match it,
try adding it to the `patterns.txt` file.

If not, try writing one and adding it to the `patterns.txt` file.

Patterns are Perl 5 Regular Expressions - you can [test](
Patterns are Perl 5 Regular Expressions - you can [test](
https://www.regexplanet.com/advanced/perl/) yours before committing to verify it will match your lines.

Note that patterns can't match multiline strings.
</details>
<details><summary>binary-ish string</summary>
Note that patterns can't match multiline strings.

Please add a file path to the `excludes.txt` file instead of just accepting the garbage.
* binary file.

File paths are Perl 5 Regular Expressions - you can [test](
Please add a file path to the `excludes.txt` file matching the containing file.

File paths are Perl 5 Regular Expressions - you can [test](
https://www.regexplanet.com/advanced/perl/) yours before committing to verify it will match your files.

`^` refers to the file's path from the root of the repository, so `^README\.md$` would exclude [README.md](
`^` refers to the file's path from the root of the repository, so `^README\.md$` would exclude [README.md](
../tree/HEAD/README.md) (on whichever branch you're using).
</details>

</details>
21 changes: 21 additions & 0 deletions .github/actions/spell-check/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ Atomia
aton
attr
atype
authanswers
AUTHIP
Authoritativedoc
auths
Expand Down Expand Up @@ -216,6 +217,7 @@ certusage
cfea
CFLAGS
cgi
CGNAT
changelog
changeme
changeset
Expand All @@ -233,6 +235,7 @@ chroot
chrooting
CIDR
classmethod
clientanswers
Cloos
closesocket
clusions
Expand Down Expand Up @@ -293,6 +296,7 @@ Cryptoki
cryptopp
cryptoshop
css
csum
csv
csync
ctime
Expand Down Expand Up @@ -362,6 +366,7 @@ DIGESTALGOS
Digitalus
dijk
dilinger
Dimitrios
Directi
Disqus
distro
Expand Down Expand Up @@ -462,6 +467,7 @@ ecs
ECSDA
ecswho
edb
EDE
editline
edns
ednsbufsiz
Expand Down Expand Up @@ -515,6 +521,7 @@ Faerch
faf
failedservers
failover
farsightsec
favicon
FBAE
fbe
Expand Down Expand Up @@ -560,6 +567,7 @@ frontend
fstrm
fullname
fulltoc
fullycapable
func
Furnell
Fusl
Expand Down Expand Up @@ -682,6 +690,7 @@ hmac
Hmi
Hoentjen
Hofstaedtler
Holger
homepage
Hooimeijer
hostmaster
Expand Down Expand Up @@ -732,6 +741,7 @@ Inno
innodb
inode
installable
internic
interop
interoperability
interoperation
Expand Down Expand Up @@ -952,6 +962,7 @@ mariadb
Markmann
Massar
matchtype
Mavrommatis
maxdepth
MAXINT
maxlistdepth
Expand Down Expand Up @@ -1067,13 +1078,15 @@ Neue
Neuf
newcontent
nextval
nghttp
nginx
nic
nimber
Nixu
nkey
nmg
Nncqx
NNNN
noaction
noad
noall
Expand Down Expand Up @@ -1155,6 +1168,7 @@ openssl
opensuse
openwall
Opmeer
OPNUM
optcode
Opteron
optmem
Expand Down Expand Up @@ -1190,6 +1204,7 @@ pathconfig
pathto
pawal
Pbackend
PCache
pcap
PCAPFILE
pdf
Expand Down Expand Up @@ -1448,6 +1463,7 @@ scopebits
scopemask
scriptable
scriptlets
scrypt
sdb
sdfoijdfio
sdig
Expand Down Expand Up @@ -1508,6 +1524,7 @@ sigs
SIGUSR
singlethreaded
Sipek
siphash
sizeof
Sjoerd
slapd
Expand Down Expand Up @@ -1569,6 +1586,7 @@ srv
sshfp
ssi
ssl
SSLKEYLOGFILE
sslmode
sslrootcert
SSQ
Expand Down Expand Up @@ -1859,8 +1877,10 @@ Wzs
Xander
xchacha
xdb
XDP
Xek
Xeon
XForwarded
xfr
xhtml
xml
Expand Down Expand Up @@ -1901,6 +1921,7 @@ zonetransfer
Zonneveld
zsk
zskroll
ztc
Zumstrull
Zwane
zzyzz
7 changes: 6 additions & 1 deletion .github/actions/spell-check/patterns.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,10 @@ C0FFEE
# tar arguments
\b(?:)tar(?:\s+-[a-zA-Z]+|\s[a-z]+)+

# DoT: DNS over TLS is often combined with other words (images, links, ...)
# DoT: DNS over TLS is often combined with other words (images, links, ...), same for DoH
DoT
DoH

# Contributors with non-ascii characters in their name
Hoffst[^[:ascii:]]+tte
Gri[^[:ascii:]]
Loading