From 2dfae8857a71cb4b83607a1640c80bea7488780e Mon Sep 17 00:00:00 2001 From: Greg Considine Date: Fri, 17 Mar 2017 16:29:33 -0400 Subject: [PATCH] Add config for more filetypes in .editorconfig --- .editorconfig | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 01c3e76ec8..efe5869a73 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,20 @@ root = true -[**.{js,json,less}] +[*] +end_of_line = lf +insert_final_newline = true + +[Makefile] +indent_style = tab + +[**.py] indent_style = space indent_size = 4 + +[**.{js,less}] +indent_style = space +indent_size = 4 + +[**.{json}] +indent_style = space +indent_size = 2