From dd7249c0f15b29cd9648740ea4729f920eeb5624 Mon Sep 17 00:00:00 2001 From: Stephen Edgar Date: Sun, 21 Apr 2013 16:52:32 +1000 Subject: [PATCH] Refined .editorconfig --- .editorconfig | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/.editorconfig b/.editorconfig index cf8d7fa6ee..9055021c9f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,10 +2,26 @@ root = true -[*] +[Makefile] +indent_style = tab +indent_size = 8 + +[*.css] +indent_style = space +indent_size = 2 + +[*.less] +indent_style = space +indent_size = 2 + +[*.html] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.json] indent_style = space indent_size = 2 -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true