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]
23
24[default]
25extend-ignore-re = [
26 '"ba"',
27 ":ba\\|z",
28 # :/ crates/collab/migrations/20231009181554_add_release_channel_to_rooms.sql
29 "COLUMN enviroment",
30 # Typo in ClickHouse column name.
31 # crates/collab/src/api/events.rs
32 "rename = \"sesssion_id\"",
33 "doas",
34]
35check-filename = true