From 15b4420204a5c7d969b94a6c8828308e6e195f97 Mon Sep 17 00:00:00 2001 From: Reto Brunner Date: Fri, 14 Feb 2025 10:10:10 +0100 Subject: [PATCH] Remove .editorconfig The .editorconfig only contains a single setting, overriding line endings for go files to CRLF. The go files in the repo are checked in with the go fmt defaults of LF endings though. On editors that respect .editorconfig, the misconfiguration implies that on every save all line endings get converted to CRLF which is undesired, given the state of the repo. --- .editorconfig | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 74aa1f6..0000000 --- a/.editorconfig +++ /dev/null @@ -1,2 +0,0 @@ -[*.go] -end_of_line = crlf \ No newline at end of file