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