From 96174e5d00ac90dbb57e3d0b3789b73e2e6b3ba7 Mon Sep 17 00:00:00 2001 From: Niels van Velzen Date: Tue, 16 Jul 2024 13:31:13 +0200 Subject: [PATCH] Update editor config - Increase max line length (120->140) - Fix wildcard for Kotlin files --- .editorconfig | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index 16fb57378..549a4f5aa 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,16 +2,17 @@ root = true [*] insert_final_newline = true +max_line_length = 140 trim_trailing_whitespace = true -[{*.kts, *.kt}] +[{*.kts,*.kt}] charset = utf-8 indent_style = tab tab_width = 4 # Disable wildcard imports in IntelliJ/Android Studio ij_kotlin_name_count_to_use_star_import = 1000 ij_kotlin_name_count_to_use_star_import_for_members = 1000 -ij_kotlin_packages_to_use_import_on_demand = +ij_kotlin_packages_to_use_import_on_demand = unset [*.md] -trim_trailing_whitespace = false \ No newline at end of file +trim_trailing_whitespace = false