From 031c78db66bcd3d3b41d673494cf3679fd0e766f Mon Sep 17 00:00:00 2001 From: Kohei Yoshino Date: Mon, 8 Jan 2018 22:16:01 -0500 Subject: [PATCH] no bug - Update editorconfig to use 2 space indentation for CSS and JavaScript (#353) --- .editorconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index 0a4d8c063..59bb73282 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,13 +1,13 @@ # top-most EditorConfig file root = true -# 4 space indentation for .pl,.PL,.css,.js and .pm files -[*.{pl,PL,css,js,pm}] +# 4 space indentation for Perl files +[*.{pl,PL,pm,cgi}] indent_style = space indent_size = 4 -# 2 space indentation style for .tmpl files -[.{tmpl,yml}] +# 2 space indentation for HTML, CSS, JavaScript and YAML files +[.{html,tmpl,css,js,yml}] indent_style = space indent_size = 2 -- 2.47.3