From 748ac20cd739a5166fc2196a91d5607099cc75ee Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Tue, 21 Feb 2017 17:08:28 +0100 Subject: [PATCH] GHI-#11 Add EditorConfig support --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..04a8afa --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# ++++++++++++++++++++++ +# + Base Configuration + +# ++++++++++++++++++++++ +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +max_line_length = 160 +trim_trailing_whitespace = true + +# +++++++++++++ +# + Languages + +# +++++++++++++ +# +++ Markdown +++ +[*.{md,gfm}] +trim_trailing_whitespace = false