• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# https://editorconfig.org/
2
3root = true
4
5[*]
6charset = utf-8
7end_of_line = lf
8trim_trailing_whitespace = true
9insert_final_newline = true
10
11[*.{c,h}]
12indent_size = 8
13indent_style = tab
14
15[*.py]
16indent_size = 4
17indent_style = space
18
19[{meson.build,meson_options.txt}]
20indent_size = 8
21indent_style = tab
22