From e050de0ecf3193dbd867bfe9b3c333c348ffc6cb Mon Sep 17 00:00:00 2001 From: Jonas Thelemann Date: Wed, 3 Mar 2021 19:48:54 +0100 Subject: [PATCH] feat: add editorconfig --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e9a9bff --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false