.editorconfig 455 B

12345678910111213141516171819202122232425262728293031
  1. # https://editorconfig.org/
  2. root = true
  3. [*]
  4. end_of_line = lf
  5. charset = utf-8
  6. trim_trailing_whitespace = true
  7. insert_final_newline = true
  8. indent_style = space
  9. indent_size = 4
  10. [{CMakeLists.*,*.cmake}]
  11. indent_style = space
  12. indent_size = 2
  13. [Makefile]
  14. indent_style = tab
  15. [*.{bat,cmd,cmd.*}]
  16. end_of_line = crlf
  17. indent_style = space
  18. indent_size = 2
  19. [*.{ps1,ps1.*}]
  20. end_of_line = crlf
  21. indent_style = space
  22. indent_size = 4
  23. [*.{md,markdown}]
  24. indent_size = 2