-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_typos.toml
More file actions
executable file
·71 lines (68 loc) · 1.48 KB
/
_typos.toml
File metadata and controls
executable file
·71 lines (68 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# SPDX-FileCopyrightText: 2025 Knitli Inc. <knitli@knit.li>
# SPDX-FileContributor: Adam Poulemanos <adam@knit.li>
# SPDX-FileContributor: Claude Sonnet 4.5 <noreply@anthropic.com>
#
# SPDX-License-Identifier: MIT OR Apache-2.0
[default]
locale = "en-us"
check-file = true
check-filename = true
extend-ignore-re = [
"(?s)(#|//)\\s*spellchecker:off.*?\\n\\s*(#|//)\\s*spellchecker:on",
"\\[\\d+;\\d+m", # ANSI color codes (e.g., [38;5;231m)
"\\[\\d+m", # Simple ANSI codes (e.g., [0m)
]
extend-ignore-identifiers-re = [
"iif",
"iife",
"i18n",
"i18next",
"i18n-t",
"i18n-tc",
"strat",
"Inferrable",
"mis", # Appears in ANSI escape sequences like [38;5;231m
"bare",
"MISE",
"prepend",
"ret",
"RET",
"prev",
"normalises",
"goes",
"Bare",
"inout",
"ba",
"ede",
]
[default.extend-words]
Bare = "Bare"
Supress = "Supress"
teh = "teh"
Teh = "Teh"
[files]
ignore-hidden = false
ignore-files = true
extend-exclude = [
"CHANGELOG.md",
"/usr/**/*",
"/tmp/**/*",
"/**/node_modules/**",
"node_modules",
"mkdocs-material",
"license-list-data",
"external",
"vendor",
".git",
"/usr/share/code/**/*",
"eslint.config.mjs",
"docs/manifest.json",
"src/assets/videos/**/*",
"src/assets/fonts/**/*",
"src/assets/images/**/*",
"**/claudedocs/**/*", # Claude-generated docs may contain terminal output with ANSI codes
]
[type.md]
extend-ignore-re = [
'(?s)(<!--)?\\s*spellchecker:off|(?s)(<!--)?\\s*spellchecker:off.*(<!--)?\\s*spellchecker:on',
]