1 # editorconfig.org
2
3 root = true
4
5 [*]
6 end_of_line = lf
7 charset = utf-8
8 insert_final_newline = true
9
10 [*.{c,h}]
11 trim_trailing_whitespace = true
12 indent_style = space
13 indent_size = 2
14
15 [Makefile]
16 trim_trailing_whitespace = true
17 indent_style = tab
18 indent_size = 8