cleanup
[usb-relay-hid.git] / .editorconfig
1 ; Editorconfig settings: see http://editorconfig.org/#supported-properties
2 ; Keep this file consistent with .gitattributes ! end_of_line <-> eol=crlf
3
4 root = true ; top-most EditorConfig file
5
6 [*]
7 end_of_line = lf
8 insert_final_newline = false
9
10 ; 4 space indentation
11 [*.c]
12 charset = latin1
13 indent_style = space
14 indent_size = 4
15
16 [*.h]
17 charset = latin1
18 indent_style = space
19 indent_size = 4
20
21 [*.cpp]
22 charset = latin1
23 indent_style = space
24 indent_size = 4
25
26 [*.txt]
27 indent_style = tab
28 indent_size = 8
29 end_of_line = crlf
30 ;insert_final_newline = false
31
32 [*.bat]
33 end_of_line = crlf
34 indent_style = space
35 indent_size = 2