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