From 18c6e7fb515ae6d7f5ad7ea1caba517461d96a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Wed, 27 Sep 2017 16:02:32 -0300 Subject: [PATCH] Add .editorconfig file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MaurĂ­cio Meneghini Fauth --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..c1f1fab907 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig.org + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +[*.{js,php,twig,phtml,json,css}] +indent_style = space +indent_size = 4 + +[{*.sql,package.json,.travis.yml}] +indent_style = space +indent_size = 2