.editorconfig 299 B

12345678910111213141516
  1. [*]
  2. end_of_line = lf
  3. [*.{cpp,h,lua,txt,glsl,c,cmake,java,gradle}]
  4. charset = utf-8
  5. indent_size = 4
  6. indent_style = tab
  7. insert_final_newline = true
  8. trim_trailing_whitespace = true
  9. [*.md]
  10. charset = utf-8
  11. indent_size = 4
  12. indent_style = space
  13. insert_final_newline = true
  14. trim_trailing_whitespace = true