1
0

.editorconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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
  40. [vendor/miniaudio/miniaudio.h]
  41. trim_trailing_whitespace = unset
  42. insert_final_newline = unset