blob: 3f9e475a6ac641781788489a508677deb5e8449a [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
Erik Faye-Lund7ee94d12020-01-16 21:11:29 +010035[*.html]
36indent_style = space
37indent_size = 2
38
Eric Engestrom3bd885d2016-08-30 21:02:18 +010039[*.patch]
40trim_trailing_whitespace = false
Dylan Bakere5866af2017-09-30 08:47:24 -070041
Dylan Baker98381852019-05-23 10:21:05 -070042[{meson.build,meson_options.txt}]
Dylan Bakere5866af2017-09-30 08:47:24 -070043indent_style = space
44indent_size = 2