-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtypos.toml
More file actions
33 lines (31 loc) · 861 Bytes
/
Copy pathtypos.toml
File metadata and controls
33 lines (31 loc) · 861 Bytes
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
[files]
extend-exclude = [
"target/",
"site/",
"docs/api/",
"CHANGELOG.md",
"Cargo.lock",
"assets/",
"*.svg",
"*.png",
]
[default]
extend-ignore-re = [
# Hash-like / git SHAs
"\\b[0-9a-f]{7,40}\\b",
]
[default.extend-words]
# Domain-specific tokens from tracking literature that look like typos
# but are load-bearing terminology:
# strack(s) — "Single Track" (ByteTrack paper; used in strack_pool,
# test_strack_init, r_tracked_stracks, tracked_stracks, etc.)
# tlwh — bbox format: top-left x, top-left y, width, height
strack = "strack"
stracks = "stracks"
tlwh = "tlwh"
# Short two-letter token (appears in some identifiers) that collides
# with common English typos.
ba = "ba"
# ORU — Observation Re-Update (OC-SORT paper terminology); typos mangles it to "OUR"
oru = "oru"
ORU = "ORU"