1[files]
2ignore-files = true
3ignore-hidden = false
4extend-exclude = [
5 ".git/",
6 # glsl isn't recognized by this tool
7 "crates/zed/src/languages/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]
18
19[default]
20extend-ignore-re = [
21 '"ba"',
22 ":ba\\|z",
23 # :/ crates/collab/migrations/20231009181554_add_release_channel_to_rooms.sql
24 "ADD COLUMN enviroment TEXT",
25]
26check-filename = true