.editorconfig 344 B

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