summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 0583349e41897c80b09d1f003a999c0fbbaa7d17 (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
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
trim_trailing_whitespace = true
insert_final_newline = true
indent_size = 2
max_line_length = 80

# PEP 8
[*.py]
indent_size = 4
max_line_length = 79

# rustfmt defaults
[*.rs]
indent_size = 4
max_line_length = 100

# From gst-examples
[*.js]
indent_size = 4
max_line_length = 80

[{Makefile,Makefile.am}]
indent_style = tab
indent_size = tab
tab_width = 8