From 0fc9bd6755f0ad3997e8ea0f36fceaa0fc38be86 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Wed, 24 Feb 2016 16:15:19 -0500 Subject: [PATCH] Add editor config file --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..3a287c45 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = false + +[*.md] +trim_trailing_whitespace = false