From 23bca4ccb3b74ce72b64210d4603f65132673a67 Mon Sep 17 00:00:00 2001 From: Manuel Fuhr Date: Fri, 8 Oct 2021 16:56:25 +0200 Subject: [PATCH] Add .editorconfig to harmonize indention EditorConfig (https://editorconfig.org) helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs. --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..26238e9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.java] +indent_style = space +indent_size = 2 + +[*.gradle] +indent_style = space +indent_size = 4