From 8696b691e6285e6ab9bbe70e277799a2d9a25e6b Mon Sep 17 00:00:00 2001 From: Zephyr Lykos Date: Tue, 16 Jun 2026 13:29:00 +0800 Subject: [PATCH] dev: fix editorconfig parsing on some editors Some editors following the newer editorconfig spec will not tolerate inline comments. https://spec.editorconfig.org/#no-inline-comments Fixes: 1d082e712863fa89e5dbd6afcaeabe3cd52e8b2d --- .editorconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index bbd3bbfde..ccdcadcaf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,7 +2,8 @@ root = true [*] -charset = utf-8 # standardize on no BOM (except resx, see below) +# standardize on no BOM (except resx, see below) +charset = utf-8 indent_style = tab indent_size = 4 guidelines = 110