From f69a961787c118bc24b4b85b96b3e8ef9b65f855 Mon Sep 17 00:00:00 2001 From: Alex van Andel Date: Sat, 3 Jul 2021 17:02:26 +0000 Subject: [PATCH] Added .editorconfig file as suggested in #270 --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..8df24591e3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# See http://EditorConfig.org for more information + +# top-most EditorConfig file +root = true + +# Every File +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false