From dabfa4c750925af1cd50c7e2afb4a467d147a6ea Mon Sep 17 00:00:00 2001 From: Dipankar Das Date: Wed, 12 Jul 2017 02:43:57 +0530 Subject: [PATCH] Bug-1369521 - 'bmo should include an .editorconfig file that specifies our tab/indent policy' --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..d31ae2799 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# top-most EditorConfig file +root = true + +# 4 space indentation for .pl,.PL,.css,.js and .pm files +[*.{pl,PL,css,js,pm}] +indent_style = space +indent_size = 4 + +# 2 space indentation style for .tmpl files +[.tmpl] +indent_style = space +indent_size = 2 + -- 2.47.3