From ba6ed1e177d2e27a60f78eda596fb7276c34d5ec Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 22 Apr 2020 13:40:18 -0700 Subject: [PATCH] .editorconfig: Add .scss, .hbs; drop weirder rules. For example, nobody uses 4 space indents for .yml. Signed-off-by: Anders Kaseorg --- .editorconfig | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.editorconfig b/.editorconfig index be0a01585b..08c0da732b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,7 +6,7 @@ charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true -[*.{sh,py,pyi,js,ts,json,yml,xml,css,md,markdown,handlebars,html}] +[*.{sh,py,pyi,js,ts,json,xml,css,scss,hbs,html}] indent_style = space indent_size = 4 @@ -16,10 +16,6 @@ max_line_length = 110 [*.{js,ts}] max_line_length = 100 -[*.{svg,rb,pp,pl}] +[*.{svg,rb,pp}] indent_style = space indent_size = 2 - -[*.cfg] -indent_style = space -indent_size = 8