From af4caad6be6a2abf8c9c9072ddc5b88be88f1372 Mon Sep 17 00:00:00 2001 From: Felix Koppe Date: Wed, 13 Nov 2024 11:58:07 +0100 Subject: [PATCH] Add .editorconfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..9d351354 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.java] +indent_style = space +indent_size = 4 + +[*.txt] +indent_style = tab