blob: 6eb0702a25a0cb9afdabe7cb3c12853646f5ff3a [file] [log] [blame]
Eric Engestrom3bd885d2016-08-30 21:02:18 +01001# To use this config on you editor, follow the instructions at:
2# http://editorconfig.org
3
4root = true
5
6[*]
7charset = utf-8
8insert_final_newline = true
Eric Anholtdd121192016-12-27 09:00:14 -08009tab_width = 8
Eric Engestrom3bd885d2016-08-30 21:02:18 +010010
11[*.{c,h,cpp,hpp,cc,hh}]
12indent_style = space
13indent_size = 3
14
15[{Makefile*,*.mk}]
16indent_style = tab
17
18[{*.py,SCons*}]
19indent_style = space
20indent_size = 4
21
22[*.pl]
23indent_style = space
24indent_size = 4
25
26[*.m4]
27indent_style = space
28indent_size = 2
29
30[*.yml]
31indent_style = space
32indent_size = 2
33
34[*.patch]
35trim_trailing_whitespace = false