mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 22:11:17 +00:00

This PR adds `_typos.toml`, which lets `typos` ignore generated data. Some filler texts are "fixed", too. It does not matter what the actual text is.
27 lines
478 B
TOML
27 lines
478 B
TOML
[default]
|
|
locale = "en-us"
|
|
|
|
[files]
|
|
extend-exclude = [
|
|
# generated files
|
|
"book/ethicalads-theme.css",
|
|
"fuzzing/fuzz/artifacts/",
|
|
"fuzzing/fuzz/corpus/",
|
|
"target/",
|
|
"rinja_parser/tests/*.txt",
|
|
# fillter texts
|
|
"rinja/benches/strings.inc",
|
|
# too many false positives
|
|
"testing/tests/gen_ws_tests.py",
|
|
]
|
|
|
|
[default.extend-words]
|
|
# French words
|
|
exemple = "exemple"
|
|
existant = "existant"
|
|
# used in tests
|
|
Ba = "Ba"
|
|
fo = "fo"
|
|
Fo = "Fo"
|
|
sur = "sur"
|