From 628c731a82253bd61bc3c1672c514907d4721981 Mon Sep 17 00:00:00 2001 From: Julian Schacher Date: Fri, 24 Nov 2023 18:21:08 +0100 Subject: [PATCH] Add .editorconfig to ensure consistent general file style --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d521c51 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +charset = utf-8 + +[*.md] +indent_size = 2 +trim_trailing_whitespace = false + +[*.yaml] +indent_size = 2 +trim_trailing_whitespace = true