.editorconfig 297 B

1234567891011121314151617181920
  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
  11. [*.{py,sh}]
  12. indent_style = tab
  13. [{meson.build,meson_options.txt}]
  14. tab_width = 8
  15. indent_style = space
  16. indent_size = 2