mirror of
https://codeberg.org/forgejo/docs.git
synced 2025-01-14 01:18:59 -05:00
de0817a722
Uses typos [0] to check for any spelling mistakes. A few custom rules are needed to ignore some specific words, as one might expect. This will now cause the `pr` workflow to error out if any typos are found. [0] https://github.com/crate-ci/typos Signed-off-by: Christoph Heiss <christoph@c8h4.io>
20 lines
479 B
TOML
20 lines
479 B
TOML
# https://github.com/crate-ci/typos/blob/master/docs/reference.md
|
|
|
|
# mask some false positives
|
|
[default.extend-words]
|
|
# ./docs/admin/recommendations.md
|
|
Redict = "Redict"
|
|
# ./docs/admin/command-line.md
|
|
HELO = "HELO"
|
|
TABL = "TABL" # weird false-positive
|
|
# ./docs/admin/config-cheat-sheet.md
|
|
odf = "odf"
|
|
# ./docs/contributor/adr/adr-activity-for-like.md
|
|
edn = "edn"
|
|
|
|
[default]
|
|
extend-ignore-identifiers-re = [
|
|
# ./docs/admin/config-cheat-sheet.md
|
|
"\\b(ecdhe_)?rsa_with_.*\\b",
|
|
]
|
|
|