1bcbce2bc6
* feat: Improve scan runtime performance and RSS * chore: Comprehensive randomized fuzzy mutation testing It's such a shame that we keep commiting regressions that are leading ot the missed events from the file watcher. I want to minimize this to 0. * chore: Update docs for - chore: Comprehensive randomized fuzzy mutation testing * chore: Update docs for - chore: Update docs for - chore: Comprehensive randomized fuzzy mutation testing * test: Verbose stress test output
27 lines
650 B
TOML
27 lines
650 B
TOML
[files]
|
|
extend-exclude = ["/CHANGELOG.md", "data/filetypes/base.lua"]
|
|
|
|
[default.extend-words]
|
|
noice = "noice"
|
|
fo = "fo"
|
|
ba = "ba"
|
|
ue = "ue"
|
|
# file extensions that look like typos
|
|
thm = "thm"
|
|
# some typos we use for tests
|
|
comparsion = "comparsion"
|
|
modfiers = "modfiers"
|
|
shcema = "shcema"
|
|
|
|
[default]
|
|
extend-ignore-re = [
|
|
# git commit hashes in CHANGELOG.md
|
|
"\\[[0-9a-f]{7}\\]",
|
|
# Line ignore with trailing # spellchecker:disable-line
|
|
"(?Rm)^.*(#|--|//)\\s*spellchecker:disable-line$",
|
|
# Line block with # spellchecker:<on|off>
|
|
"(?s)(#|--|//|)\\s*spellchecker:off.*?\\n\\s*(#|--|//)\\s*spellchecker:on",
|
|
# Vim doc formatting
|
|
"vim:.+:"
|
|
]
|