From d6773457d39402548ccb8e63115608f51cac3e03 Mon Sep 17 00:00:00 2001 From: David Date: Fri, 14 Sep 2018 18:46:00 +0200 Subject: [PATCH] [core] Fix editorconfig --- .editorconfig | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.editorconfig b/.editorconfig index 20c2693ad..c965b2fc2 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,11 +8,16 @@ charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true -[*.java,*.kt] +[*.java] indent_style = space indent_size = 4 continuation_indent_size = 4 +[*.kt] +indent_style = space +indent_size = 4 +continuation_indent_size = 8 + [*.md] trim_trailing_whitespace = false @@ -25,11 +30,7 @@ indent_style = space indent_size = 4 insert_final_newline = false -[*.yml] -indent_style = space -indent_size = 2 - -[*.json] +[*.{yml,yaml,json}] indent_style = space indent_size = 2