From 3c338b6afdf271c20e941e8374c3cfa8ff867461 Mon Sep 17 00:00:00 2001 From: Roberto Aguilar Date: Thu, 10 May 2018 10:34:22 -0500 Subject: [PATCH] Add .editorconfig file --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..1492202b486 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.yml] +indent_style = space +indent_size = 2