forked from vortex-data/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_typos.toml
More file actions
19 lines (17 loc) · 1.12 KB
/
Copy path_typos.toml
File metadata and controls
19 lines (17 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[default]
extend-ignore-identifiers-re = ["ffor", "FFOR", "FoR", "typ", "ratatui", "wht", "WHT"]
# We support a few common special comments to tell the checker to ignore sections of code
extend-ignore-re = [
"(#|//)\\s*spellchecker:ignore-next-line\\n.*", # Ignore the next line
"(?Rm)^.*(#|//)\\s*spellchecker:disable-line$", # Ignore line that ends with this hint
"(?s)(#|//)\\s*spellchecker:off.*?\\n\\s*(#|//)\\s*spellchecker:on", # Ignore block between hints
]
[files]
# scripts/measurement_id_golden.json is a frozen hash-pin artifact whose vectors include
# deliberate Unicode edge cases (JSON-escaped, so "café" reads as the token "caf"); its bytes
# must never change, so it is excluded rather than "fixed".
extend-exclude = ["/vortex-bench/**", "/docs/references.bib", "benchmarks/**", "vortex-sqllogictest/slt/**", "encodings/fsst/src/dfa/tests.rs", "encodings/fsst/src/dfa/flat_contains.rs", "benchmarks-website/server/static/**", "benchmarks-website/server/tests/snapshots/**", "scripts/measurement_id_golden.json"]
[type.py]
extend-ignore-identifiers-re = [
"Trafic", # Appears in some clickbench-related examples
]