Added VS projects for VS2015 (CTP6) & related changes
[usb-relay-hid.git] / .editorconfig
1 ; Keep this consistent with .gitattributes
2 ; http://editorconfig.org/#supported-properties
3
4 root = true ; top-most EditorConfig file
5
6 [*]
7 end_of_line = lf
8 insert_final_newline = false
9
10 ; Markdown: KEEP trailing whitespace!
11 [*.{md,markdown}]
12 trim_trailing_whitespace = false
13 end_of_line = lf
14 charset = utf-8
15
16 ; C,C++: 4 space indentation
17 [*.{c,h,cpp}]
18 charset = latin1
19 indent_style = space
20 indent_size = 4
21 trim_trailing_whitespace = true
22 ;insert_final_newline = true
23
24 [*.txt]
25 indent_style = tab
26 indent_size = 8
27 end_of_line = crlf
28
29 [*.bat]
30 end_of_line = crlf
31 indent_style = space
32 indent_size = 2
33
34 [*.py]
35 indent_style = space
36 indent_size = 4
37 trim_trailing_whitespace = true
38 end_of_line = lf
39 charset = utf-8