blob: 06848f68c08bc7659a3d0cae7a72a9a4bfe23971 [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
Dylan Bakere5866af2017-09-30 08:47:24 -070036
37[meson.build,meson_options.txt]
38indent_style = space
39indent_size = 2