From 5a3ceffba174ddbec56ed32b18de269d939825f2 Mon Sep 17 00:00:00 2001 From: Eduardo Gonzalez Date: Sat, 27 May 2017 09:04:47 -0700 Subject: [PATCH] Add .editorconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Just add .editorconfig into yoga 😄 Closes https://github.com/facebook/yoga/pull/562 Differential Revision: D5144025 Pulled By: emilsjolander fbshipit-source-id: 9f28caaff276b266ac2aa514097fda6972b85f7c --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..beffa308 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false