From 27cbbb7020b5f9db705d014af9acb74f171d5c0c Mon Sep 17 00:00:00 2001 From: MouriNaruto Date: Fri, 29 Nov 2024 14:35:19 +0800 Subject: [PATCH] Ensure only the FreeType and LVGL library source files use UTF-8 without BOM to fix https://github.com/lvgl/lv_port_pc_visual_studio/issues/89. --- .editorconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 1117272..8ec025c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,5 @@ ## -## PROJECT: Mouri Internal Library Essentials +## PROJECT: LVGL for Windows Visual Studio ## FILE: .editorconfig ## PURPOSE: The root .editorconfig file ## @@ -14,6 +14,9 @@ root = true charset = utf-8-bom end_of_line = crlf +[LvglPlatform/{freetype,lvgl}/**] +charset = utf-8 + [*.md] insert_final_newline = true