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    "crates/extensions_ui/src/extension_suggest.rs",
11    # Not our typos
12    "crates/live_kit_server/",
13    # Vim makes heavy use of partial typing tables
14    "crates/vim/",
15    # Editor and file finder rely on partial typing and custom in-string syntax
16    "crates/file_finder/src/file_finder_tests.rs",
17    "crates/editor/src/editor_tests.rs",
18    # Clojure uses .edn filename extension, which is not a misspelling of "end"
19    "extensions/clojure/languages/clojure/config.toml",
20    # Windows likes its abbreviations
21    "crates/gpui/src/platform/windows/",
22    # False positive in one of the configuration values.
23    "crates/collab/basic.conf"
24]
25
26[default]
27extend-ignore-re = [
28    '"ba"',
29    ":ba\\|z",
30    # :/ crates/collab/migrations/20231009181554_add_release_channel_to_rooms.sql
31    "COLUMN enviroment",
32    # Typo in ClickHouse column name.
33    # crates/collab/src/api/events.rs
34    "rename = \"sesssion_id\"",
35    "doas",
36]
37check-filename = true