/ .editorconfig
.editorconfig
 1  root = true
 2  
 3  [*]
 4  indent_style = tab
 5  end_of_line = lf
 6  charset = utf-8
 7  indent_size = 8
 8  trim_trailing_whitespace = true
 9  insert_final_newline = true
10  
11  [*.md]
12  trim_trailing_whitespace = false
13  
14  [Makefile]
15  indent_style = tab
16  
17  [*.[ch]]
18  indent_style = tab
19  indent_size = 8
20  trim_trailing_whitespace = true
21  
22  [*.sym]
23  indent_style = tab
24  indent_size = 4
25  trim_trailing_whitespace = true
26  
27  [*.sh]
28  indent_style = tab
29  indent_size = 4