• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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
9tab_width = 8
10
11[*.{c,h,cpp,hpp,cc,hh}]
12indent_style = space
13indent_size = 3
14max_line_length = 78
15
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[*.html]
36indent_style = space
37indent_size = 2
38
39[*.patch]
40trim_trailing_whitespace = false
41
42[{meson.build,meson_options.txt}]
43indent_style = space
44indent_size = 2
45