• 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
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
36