From ecd8f40c0f1c692f94e2f79d11be842e2d41eec4 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Fri, 7 Jun 2019 15:22:21 +0200 Subject: [PATCH] :wrench: Create a .editorconfig See https://editorconfig.org/ --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..64eefd81d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +[*] +charset=utf-8 +end_of_line=lf +insert_final_newline=false +indent_style=space +indent_size=4 + +[*.scss] +indent_style=tab +tab_width=4 + +[{*.cjs,*.js}] +indent_style=tab +tab_width=4 + +[{*.module,*.hphp,*.phtml,*.php5,*.php4,*.php,*.inc}] +indent_style=tab +tab_width=4 +