summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 28751d13ceadbeee821ac66da92589da9542a769 (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
35
36
37
38
root = true

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

[*.{c,h,idl}]
indent_style = tab
indent_size = 8
tab_width = 8

[*.{py}]
indent_style = space
indent_size = 4
tab_width = 4

[*.sh]
indent_style = tab
indent_size = 8
tab_width = 8

[*.{pl,pm}]
indent_style = tab
indent_size = 8
tab_width = 8

[wscript*]
indent_style = space
indent_size = 4
tab_width = 4

[third_party/heimdal/**.{c,h}]
indent_style = space
indent_size = 4
tab_width = 8