.editorconfig 961 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. [tools/server/public/*]
  19. indent_size = 2
  20. [tools/server/public/deps_*]
  21. trim_trailing_whitespace = unset
  22. indent_style = unset
  23. indent_size = unset
  24. [tools/server/deps_*]
  25. trim_trailing_whitespace = unset
  26. indent_style = unset
  27. indent_size = unset
  28. [examples/llama.swiftui/llama.swiftui.xcodeproj/*]
  29. indent_style = tab
  30. [tools/cvector-generator/*.txt]
  31. trim_trailing_whitespace = unset
  32. insert_final_newline = unset
  33. [models/templates/*.jinja]
  34. indent_style = unset
  35. indent_size = unset
  36. end_of_line = unset
  37. charset = unset
  38. trim_trailing_whitespace = unset
  39. insert_final_newline = unset