1# https://EditorConfig.org
2
3# Top-most EditorConfig file
4root = true
5
6# Unix-style newlines with a newline ending every file, utf-8 charset
7[*]
8end_of_line = lf
9insert_final_newline = true
10trim_trailing_whitespace = true
11charset = utf-8
12indent_style = space
13indent_size = 4
14
15[Makefile]
16indent_style = tab
17
18[scripts/*.mk]
19indent_style = tab
20
21[prompts/*.txt]
22insert_final_newline = unset
23
24[tools/server/public/*]
25indent_size = 2
26
27[tools/server/public/deps_*]
28trim_trailing_whitespace = unset
29indent_style = unset
30indent_size = unset
31
32[tools/server/deps_*]
33trim_trailing_whitespace = unset
34indent_style = unset
35indent_size = unset
36
37[examples/llama.swiftui/llama.swiftui.xcodeproj/*]
38indent_style = tab
39
40[tools/cvector-generator/*.txt]
41trim_trailing_whitespace = unset
42insert_final_newline = unset
43
44[models/templates/*.jinja]
45indent_style = unset
46indent_size = unset
47end_of_line = unset
48charset = unset
49trim_trailing_whitespace = unset
50insert_final_newline = unset
51
52[vendor/miniaudio/miniaudio.h]
53trim_trailing_whitespace = unset
54insert_final_newline = unset
55
56[tools/server/webui/**]
57indent_style = unset
58indent_size = unset
59end_of_line = unset
60charset = unset
61trim_trailing_whitespace = unset
62insert_final_newline = unset
63
64[benches/**]
65indent_style = unset
66indent_size = unset
67end_of_line = unset
68charset = unset
69trim_trailing_whitespace = unset
70insert_final_newline = unset