From 6fd0bd21be4f184a0681ce8d2b3dbacef1043d64 Mon Sep 17 00:00:00 2001 From: Michal Lenc Date: Fri, 28 Nov 2025 08:58:17 +0100 Subject: [PATCH] .editorconfig: fix character encoding property specification The property should be named charset, not encoding, according to editorconfig documentation. https://editorconfig.org/#supported-properties Signed-off-by: Michal Lenc --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 833ed63d82e..1686d184ba2 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,7 +2,7 @@ root = true [*] -encoding = utf-8 +charset = utf-8 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true