From 44f64fd1a353a81623f0aca6b374c57e8e3cfe1c Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Mon, 22 Aug 2022 15:47:26 +0200 Subject: [PATCH] Add .editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..b1f77940 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# EditorConfig: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# General settings +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true + +# Source code files +[*.java] +indent_style = space +indent_size = 2