.editorconfig 501 B

12345678910111213141516171819202122232425262728
  1. # https://EditorConfig.org
  2. # Top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file, utf-8 charset
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = true
  8. trim_trailing_whitespace = true
  9. charset = utf-8
  10. indent_style = space
  11. indent_size = 4
  12. [Makefile]
  13. indent_style = tab
  14. [scripts/*.mk]
  15. indent_style = tab
  16. [prompts/*.txt]
  17. insert_final_newline = unset
  18. [examples/server/public/*]
  19. indent_size = 2
  20. [examples/llama.swiftui/llama.swiftui.xcodeproj/*]
  21. indent_style = tab