From 57012c0e587f54b023c6fa96df936a7065fa72c7 Mon Sep 17 00:00:00 2001 From: LisoUseInAIKyrios <118716522+LisoUseInAIKyrios@users.noreply.github.com> Date: Sun, 31 Mar 2024 23:42:10 +0400 Subject: [PATCH] fix: Use ktlint settings to keep gradle task output consistent with Intellij / Android Studio plugin behavior --- .editorconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.editorconfig b/.editorconfig index 20b04c897..545e57390 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,9 @@ [*.{kt,kts}] +# ktlint entries are for ktlint gradle task and ktlint Intellij / Android Studio plugin. +# Ignore all 'property not supported' warnings, these are correct. +ktlint_code_style = android_studio +ktlint_standard_no-wildcard-imports = disabled +ktlint_standard_discouraged-comment-location = disabled ij_kotlin_allow_trailing_comma_on_call_site = false ij_kotlin_allow_trailing_comma = false max_line_length = off \ No newline at end of file