.editorconfig 275 B

1234567891011121314151617181920
  1. ; Top-most EditorConfig file
  2. root = true
  3. ; Global settings
  4. [*]
  5. end_of_line = LF
  6. indent_style = space
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. ; C source files
  10. [*.{h,c}]
  11. indent_size = 2
  12. ; CMake
  13. [CMakeLists.txt]
  14. indent_size = 4
  15. [*.cmake]
  16. indent_size = 4