From 6d0239f81980d4b8bab1e6b489fef09b04e53edb Mon Sep 17 00:00:00 2001 From: Alexander Schwartz Date: Mon, 23 Dec 2024 16:55:43 +0100 Subject: [PATCH] Keep whitespace in files to prevent unintended changes in PRs (#1110) --- .editorconfig | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..0b7017b1b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,6 @@ +root = true + +[*.java] +# A lot of files seem to contain trailing whitespace. +# To prevent it showing up as changes on contributions, keep it around for now. +trim_trailing_whitespace = false