Felipe97/llama-cpp-compiled
01.1k
1# https://EditorConfig.org2 3# Top-most EditorConfig file4root = true5 6# Unix-style newlines with a newline ending every file, utf-8 charset7[*]8end_of_line = lf9insert_final_newline = true10trim_trailing_whitespace = true11charset = utf-812indent_style = space13indent_size = 414 15[Makefile]16indent_style = tab17 18[scripts/*.mk]19indent_style = tab20 21[prompts/*.txt]22insert_final_newline = unset23 24[tools/server/deps_*]25trim_trailing_whitespace = unset26indent_style = unset27indent_size = unset28 29[examples/llama.swiftui/llama.swiftui.xcodeproj/*]30indent_style = tab31 32[tools/cvector-generator/*.txt]33trim_trailing_whitespace = unset34insert_final_newline = unset35 36[models/templates/*.jinja]37indent_style = unset38indent_size = unset39end_of_line = unset40charset = unset41trim_trailing_whitespace = unset42insert_final_newline = unset43 44[vendor/miniaudio/miniaudio.h]45trim_trailing_whitespace = unset46insert_final_newline = unset47 48[tools/ui/**]49indent_style = unset50indent_size = unset51end_of_line = unset52charset = unset53trim_trailing_whitespace = unset54insert_final_newline = unset55 56[benches/**]57indent_style = unset58indent_size = unset59end_of_line = unset60charset = unset61trim_trailing_whitespace = unset62insert_final_newline = unset63 