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