From 41ee752230cf93526a4a7b6afd57159d517b924f Mon Sep 17 00:00:00 2001 From: Sebastian Davids Date: Fri, 22 Dec 2023 23:53:03 +0100 Subject: [PATCH] chore: add editorconfig fix #128 Signed-off-by: Sebastian Davids --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..3de04d9d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# http://EditorConfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.yaml] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false