blob: db1f4a95d7f5a8fa0a018ef72a4a48920e852304 [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
Andres Gomeze2e03f82019-01-07 15:49:00 +020014max_line_length = 78
Eric Engestrom3bd885d2016-08-30 21:02:18 +010015
16[{Makefile*,*.mk}]
17indent_style = tab
18
19[{*.py,SCons*}]
20indent_style = space
21indent_size = 4
22
23[*.pl]
24indent_style = space
25indent_size = 4
26
27[*.m4]
28indent_style = space
29indent_size = 2
30
31[*.yml]
32indent_style = space
33indent_size = 2
34
35[*.patch]
36trim_trailing_whitespace = false
Dylan Bakere5866af2017-09-30 08:47:24 -070037
Dylan Baker98381852019-05-23 10:21:05 -070038[{meson.build,meson_options.txt}]
Dylan Bakere5866af2017-09-30 08:47:24 -070039indent_style = space
40indent_size = 2