From 4c230ad4d16971024c2a14b262118fe553156402 Mon Sep 17 00:00:00 2001 From: Van0SS Date: Mon, 9 Apr 2018 21:50:07 -0400 Subject: [PATCH] Add continuation_indent_size Intellij IDEA's EditorConfig plugin set Continuation Indent the same as `indent_size`. It can be fixed if add `continuation_indent_size` propery. --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index 9d4bfbf55d3a1..c8d188a24ad77 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,5 +6,6 @@ root = true charset = utf-8 indent_style = space indent_size = 4 +continuation_indent_size = 8 trim_trailing_whitespace = true insert_final_newline = true