blob: a8b8a88f5d28da8d80074c98ba9af611e44263d5 [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
9
10[*.{c,h,cpp,hpp,cc,hh}]
11indent_style = space
12indent_size = 3
13
14[{Makefile*,*.mk}]
15indent_style = tab
16
17[{*.py,SCons*}]
18indent_style = space
19indent_size = 4
20
21[*.pl]
22indent_style = space
23indent_size = 4
24
25[*.m4]
26indent_style = space
27indent_size = 2
28
29[*.yml]
30indent_style = space
31indent_size = 2
32
33[*.patch]
34trim_trailing_whitespace = false