.editorconfig 376 B

1234567891011121314151617181920212223
  1. root = true
  2. [*]
  3. charset = utf-8
  4. trim_trailing_whitespace = true
  5. end_of_line = lf
  6. insert_final_newline = true
  7. [*.{c,cc,h,hh,rl}]
  8. tab_width = 8
  9. indent_size = 2
  10. indent_style = tab # should be space
  11. [*.{py,sh}]
  12. indent_style = tab
  13. [{Makefile.am,Makefile.sources,configure.ac}]
  14. tab_width = 8
  15. [{meson.build,meson_options.txt}]
  16. tab_width = 8
  17. indent_style = space
  18. indent_size = 2