From 8183dd8eebee70be3199b4ecf1fbc2dd7e0b4a02 Mon Sep 17 00:00:00 2001 From: Damian Hickey Date: Sat, 21 Feb 2026 09:01:18 +0100 Subject: [PATCH] Add end_of_line = lf to .editorconfig The IDE0055 formatting errors were caused by dotnet format defaulting to CRLF line endings on Windows, while all source files use LF. Adding an explicit end_of_line = lf setting aligns the formatter with the actual file line endings and resolves all 26 build errors. --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index e2c568080..ad5924866 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,6 +2,7 @@ root = true [*] charset = utf-8 +end_of_line = lf indent_size = 2 indent_style = space insert_final_newline = true