Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to '.typos.toml')
-rw-r--r--.typos.toml44
1 files changed, 22 insertions, 22 deletions
diff --git a/.typos.toml b/.typos.toml
index e638a3e648..98dbe3a5d9 100644
--- a/.typos.toml
+++ b/.typos.toml
@@ -1,8 +1,21 @@
-[default.extend-identifiers]
-AnserStyle = "AnserStyle"
-datas = "datas"
-impl_froms = "impl_froms"
-selfs = "selfs"
+[files]
+extend-exclude = [
+ "*.rast",
+ "bench_data/",
+ "crates/parser/test_data/lexer/err/",
+ "crates/project-model/test_data/",
+]
+ignore-hidden = false
+
+[default]
+extend-ignore-re = [
+ # ignore string which contains $0, which is used widely in tests
+ ".*\\$0.*",
+ # ignore generated content like `boxed....nner()`, `Defaul...efault`
+ "\\w*\\.{3,4}\\w*",
+ '"flate2"',
+ "raison d'ĂȘtre",
+]
[default.extend-words]
anser = "anser"
@@ -10,22 +23,9 @@ ba = "ba"
fo = "fo"
ket = "ket"
makro = "makro"
-raison = "raison"
trivias = "trivias"
-TOOD = "TOOD"
-[default]
-extend-ignore-re = [
- # ignore string which contains $x (x is a num), which use widely in test
- ".*\\$\\d.*",
- # ignore generated content like `boxed....nner()`, `Defaul...efault`
- "\\w*\\.{3,4}\\w*",
-]
-
-[files]
-extend-exclude = [
- "*.json",
- "*.rast",
- "crates/parser/test_data/lexer/err/*",
- "bench_data/*",
-]
+[default.extend-identifiers]
+datas = "datas"
+impl_froms = "impl_froms"
+selfs = "selfs"