From: Dipankar Das Date: Tue, 11 Jul 2017 21:13:57 +0000 (+0530) Subject: Bug-1369521 - 'bmo should include an .editorconfig file that specifies our tab/indent... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dabfa4c750925af1cd50c7e2afb4a467d147a6ea;p=thirdparty%2Fbugzilla.git Bug-1369521 - 'bmo should include an .editorconfig file that specifies our tab/indent policy' --- 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 +