From 101a483372c841929311b01c3bf3bdb4bdf93cea Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Thu, 9 Apr 2020 18:06:17 +0200 Subject: [PATCH] Add .editorconfig --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..20a3d0c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# For more information about the properties used in +# this file, please see the EditorConfig documentation: +# http://editorconfig.org/ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true +spaces_around_brackets = outside + +[*.md] +trim_trailing_whitespace = false +indent_style = space