mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-04-09 10:31:45 +02:00
* webui: no more gzip * try changing a small line * Revert "try changing a small line" This reverts commit 0d7a3531593d87b724d404c8727a96becab3ab07. * fix lint * fix test * rebuild * split into html/css/js * lint * chore: update webui build output * chore: Update git hooks script * server: update webui build output * chore: Update pre-commit hook * refactor: Cleanup --------- Co-authored-by: Aleksander Grygier <aleksander.grygier@gmail.com>
71 lines
1.4 KiB
INI
71 lines
1.4 KiB
INI
# https://EditorConfig.org
|
|
|
|
# Top-most EditorConfig file
|
|
root = true
|
|
|
|
# Unix-style newlines with a newline ending every file, utf-8 charset
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
charset = utf-8
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[Makefile]
|
|
indent_style = tab
|
|
|
|
[scripts/*.mk]
|
|
indent_style = tab
|
|
|
|
[prompts/*.txt]
|
|
insert_final_newline = unset
|
|
|
|
[tools/server/deps_*]
|
|
trim_trailing_whitespace = unset
|
|
indent_style = unset
|
|
indent_size = unset
|
|
|
|
[examples/llama.swiftui/llama.swiftui.xcodeproj/*]
|
|
indent_style = tab
|
|
|
|
[tools/cvector-generator/*.txt]
|
|
trim_trailing_whitespace = unset
|
|
insert_final_newline = unset
|
|
|
|
[models/templates/*.jinja]
|
|
indent_style = unset
|
|
indent_size = unset
|
|
end_of_line = unset
|
|
charset = unset
|
|
trim_trailing_whitespace = unset
|
|
insert_final_newline = unset
|
|
|
|
[vendor/miniaudio/miniaudio.h]
|
|
trim_trailing_whitespace = unset
|
|
insert_final_newline = unset
|
|
|
|
[tools/server/webui/**]
|
|
indent_style = unset
|
|
indent_size = unset
|
|
end_of_line = unset
|
|
charset = unset
|
|
trim_trailing_whitespace = unset
|
|
insert_final_newline = unset
|
|
|
|
[tools/server/public/**]
|
|
indent_style = unset
|
|
indent_size = unset
|
|
end_of_line = unset
|
|
charset = unset
|
|
trim_trailing_whitespace = unset
|
|
insert_final_newline = unset
|
|
|
|
[benches/**]
|
|
indent_style = unset
|
|
indent_size = unset
|
|
end_of_line = unset
|
|
charset = unset
|
|
trim_trailing_whitespace = unset
|
|
insert_final_newline = unset
|