summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: fc85154efb91bb0ea8ee75efbddf0bce6f3e75cc (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
29
30
31
32
33
34
root = true

[*.py]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
max_line_length = 79

[*.{c,cpp,h,hpp}]
indent_style = tab
tab_width = 8
max_line_length = 78

[*.{cmake,txt}]
indent_style = tab
tab_width = 8
max_line_length = 78

[{README,HACKING}]
indent_style = tab
tab_width = 8
max_line_length = 78

[*.yml]
indent_style = space
indent_size = 2

[*.sh]
indent_style = space
indent_size = 2

[*.ps1]
indent_style = space
indent_size = 1