From 9503de0267c8ca033708bca52460834c1df39061 Mon Sep 17 00:00:00 2001 From: Frederik Haselmeier Date: Tue, 16 Jan 2024 13:35:09 +0100 Subject: [PATCH] [Kotlin] Changed IntelliJ monorepo default Kotlin code style to be the obsolete style This is required because the new default code style is the official code style, so to avoid unexpected differences in formatting we change it explicitly to the obsolete code style (the old default). KTIJ-20988 GitOrigin-RevId: cd2e2559d858145602281345fca662be6d7a2b4a --- .editorconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 2d1d090810ee..ca7fc85621f5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,4 +14,5 @@ ij_any_finally_on_new_line = true ij_any_block_comment_at_first_column = false ij_any_line_comment_at_first_column = false ij_javascript_force_semicolon_style = true -ij_javascript_use_semicolon_after_statement = false \ No newline at end of file +ij_javascript_use_semicolon_after_statement = false +ij_kotlin_code_style_defaults = KOTLIN_OLD_DEFAULTS \ No newline at end of file