From 71d2ce678f653f93d5cfebc9f442c956d45fa1d6 Mon Sep 17 00:00:00 2001 From: Lars Grefer Date: Sat, 15 Aug 2020 01:27:18 +0200 Subject: [PATCH] Add a basic .editorconfig file Signed-off-by: Lars Grefer --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..e1a90164c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true + +[*.yml] +indent_style = space +indent_size = 2 + +[*.xml] +trim_trailing_whitespace = true + +[*.{java,aj}] +charset = utf-8 +trim_trailing_whitespace = true -- 2.39.5