typos.toml

 1[files]
 2ignore-files = true
 3ignore-hidden = false
 4extend-exclude = [
 5    ".git/",
 6    # glsl isn't recognized by this tool
 7    "crates/languages/src/glsl/",
 8    # File suffixes aren't typos
 9    "assets/icons/file_icons/file_types.json",
10    # Not our typos
11    "crates/live_kit_server/",
12    # Vim makes heavy use of partial typing tables
13    "crates/vim/",
14    # Editor and file finder rely on partial typing and custom in-string syntax
15    "crates/file_finder/src/file_finder_tests.rs",
16    "crates/editor/src/editor_tests.rs",
17    # Clojure uses .edn filename extension, which is not a misspelling of "end"
18    "crates/languages/src/clojure/config.toml",
19    # Windows likes it's abbreviations
20    "crates/gpui/src/platform/windows/",
21]
22
23[default]
24extend-ignore-re = [
25    '"ba"',
26    ":ba\\|z",
27    # :/ crates/collab/migrations/20231009181554_add_release_channel_to_rooms.sql
28    "COLUMN enviroment",
29    # Typo in ClickHouse column name.
30    # crates/collab/src/api/events.rs
31    "rename = \"sesssion_id\"",
32    "doas",
33]
34check-filename = true