GUI demo: fixes, added VS2013 config, x64
[usb-relay-hid.git] / .editorconfig
CommitLineData
2c2fbd95 1; Keep this consistent with .gitattributes
aed7e4dc 2; http://editorconfig.org/#supported-properties
2c2fbd95 3
aed7e4dc 4root = true ; top-most EditorConfig file
5
6[*]
7end_of_line = lf
8insert_final_newline = false
9
2c2fbd95
P
10; Markdown: KEEP trailing whitespace!
11[*.{md,markdown}]
12trim_trailing_whitespace = false
13end_of_line = lf
14charset = utf-8
aed7e4dc 15
2c2fbd95
P
16; C,C++: 4 space indentation
17[*.{c,h,cpp}]
aed7e4dc 18charset = latin1
19indent_style = space
20indent_size = 4
2c2fbd95
P
21trim_trailing_whitespace = true
22;insert_final_newline = true
aed7e4dc 23
24[*.txt]
25indent_style = tab
26indent_size = 8
27end_of_line = crlf
aed7e4dc 28
29[*.bat]
30end_of_line = crlf
31indent_style = space
32indent_size = 2