Spaces:
Runtime error
Runtime error
Upload llama.cpp/.editorconfig with huggingface_hub
Browse files- llama.cpp/.editorconfig +42 -0
llama.cpp/.editorconfig
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# https://EditorConfig.org
|
| 2 |
+
|
| 3 |
+
# Top-most EditorConfig file
|
| 4 |
+
root = true
|
| 5 |
+
|
| 6 |
+
# Unix-style newlines with a newline ending every file, utf-8 charset
|
| 7 |
+
[*]
|
| 8 |
+
end_of_line = lf
|
| 9 |
+
insert_final_newline = true
|
| 10 |
+
trim_trailing_whitespace = true
|
| 11 |
+
charset = utf-8
|
| 12 |
+
indent_style = space
|
| 13 |
+
indent_size = 4
|
| 14 |
+
|
| 15 |
+
[Makefile]
|
| 16 |
+
indent_style = tab
|
| 17 |
+
|
| 18 |
+
[scripts/*.mk]
|
| 19 |
+
indent_style = tab
|
| 20 |
+
|
| 21 |
+
[prompts/*.txt]
|
| 22 |
+
insert_final_newline = unset
|
| 23 |
+
|
| 24 |
+
[examples/server/public/*]
|
| 25 |
+
indent_size = 2
|
| 26 |
+
|
| 27 |
+
[examples/server/public/deps_*]
|
| 28 |
+
trim_trailing_whitespace = unset
|
| 29 |
+
indent_style = unset
|
| 30 |
+
indent_size = unset
|
| 31 |
+
|
| 32 |
+
[examples/server/deps_*]
|
| 33 |
+
trim_trailing_whitespace = unset
|
| 34 |
+
indent_style = unset
|
| 35 |
+
indent_size = unset
|
| 36 |
+
|
| 37 |
+
[examples/llama.swiftui/llama.swiftui.xcodeproj/*]
|
| 38 |
+
indent_style = tab
|
| 39 |
+
|
| 40 |
+
[examples/cvector-generator/*.txt]
|
| 41 |
+
trim_trailing_whitespace = unset
|
| 42 |
+
insert_final_newline = unset
|