From 973b3c279eed5b21afec5fe2d7549e4cbe3ca70c Mon Sep 17 00:00:00 2001 From: Varun Arora <5677408+avarun42@users.noreply.github.com> Date: Tue, 15 Mar 2022 00:35:02 -0400 Subject: [PATCH] Fix .editorconfig-kotlinglang `ktfmt` with the `--kotlinlang-style` option actually uses a continuation indent size of 4, but the editorconfig provided in this incorrectly configures a continuation indent of 8. --- docs/editorconfig/.editorconfig-kotlinlang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/editorconfig/.editorconfig-kotlinlang b/docs/editorconfig/.editorconfig-kotlinlang index b76fa758..2f558675 100644 --- a/docs/editorconfig/.editorconfig-kotlinlang +++ b/docs/editorconfig/.editorconfig-kotlinlang @@ -11,7 +11,7 @@ indent_style = space insert_final_newline = true max_line_length = 100 indent_size = 4 -ij_continuation_indent_size = 8 +ij_continuation_indent_size = 4 ij_java_names_count_to_use_import_on_demand = 9999 ij_kotlin_align_in_columns_case_branch = false ij_kotlin_align_multiline_binary_operation = false