summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: d5851076b7488fef74cb4c66ea9075d72adc3eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# http://EditorConfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true

[CMakeLists.txt]
indent_style = space
indent_size = 4
insert_final_newline = true

[*.cmake]
indent_style = space
indent_size = 4
insert_final_newline = true

[*.{py,cpp,h}]
indent_style = space
indent_size = 4
insert_final_newline = true

[*.sh]
indent_style = tab
insert_final_newline = true