From a94d9bf8b840355c2a1c2373ebd5a9ab80092465 Mon Sep 17 00:00:00 2001 From: Daniil Zhuravlev Date: Wed, 3 Sep 2025 15:15:54 +0400 Subject: [PATCH] chore: update .editorconfig --- .editorconfig | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index a352878ed..a0680c8d2 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,12 +3,18 @@ root = true [*] charset = utf-8 end_of_line = lf -indent_style = tab +indent_style = space +indent_size = 4 max_line_length = 120 -tab_width = 4 insert_final_newline = true +trim_trailing_whitespace = true +# noinspection EditorConfigKeyCorrectness disabled_rules = no-wildcard-imports, no-unused-imports -[{*.kt,*.kts}] +[*.{kt,kts}] ij_kotlin_allow_trailing_comma = true ij_kotlin_allow_trailing_comma_on_call_site = true + +[*.md] +indent_size = 2 +trim_trailing_whitespace = false