From 0cc0b0726d389fca535b35e4593a5ecca3dde6c9 Mon Sep 17 00:00:00 2001 From: Shyam Chen Date: Mon, 29 May 2017 00:29:22 -0500 Subject: [PATCH] feat: add .editorconfig (#5691) --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..f1cc3ad32 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# http://editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +insert_final_newline = false +trim_trailing_whitespace = false