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