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