• 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 = 3
10
11[*.{c,h,cpp,hpp,cc,hh}]
12indent_style = space
13indent_size = 3
14max_line_length = 90
15
16[{*.py,SCons*}]
17indent_style = space
18indent_size = 4
19
20[*.yml]
21indent_style = space
22indent_size = 2
23
24[*.rst]
25indent_style = space
26indent_size = 3
27
28[{meson.build,meson_options.txt}]
29indent_style = space
30indent_size = 3
31
32