From 24a4a74f23e890d395840b6d80e0d072e7c275df Mon Sep 17 00:00:00 2001 From: AndreasAugustin Date: Sun, 22 Mar 2020 19:40:42 +0100 Subject: [PATCH] #332 add *.tsx, *.jsx, *.html to the .editorconfig --- .editorconfig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 7f07aec2b9..c69a5cb18f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,7 +10,11 @@ insert_final_newline = true charset = utf-8 indent_style = space -[*.{ts,json,js}] +[*.html] +indent_style = space +indent_size = 2 + +[*.{ts,json,js,tsx,jsx}] indent_style = space indent_size = 2