From 21bbad33f0dc5d27b87ed6ab6abad2251d048848 Mon Sep 17 00:00:00 2001 From: Gergely Hegedus Date: Thu, 14 Apr 2022 18:08:35 +0300 Subject: [PATCH] Fix detekt didn't match studio setup for max line length --- detekt/detekt.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/detekt/detekt.yml b/detekt/detekt.yml index 6e6c0df..4797b6e 100644 --- a/detekt/detekt.yml +++ b/detekt/detekt.yml @@ -279,7 +279,7 @@ formatting: active: false autoCorrect: true indentSize: 4 - maxLineLength: 120 + maxLineLength: 140 ChainWrapping: active: true autoCorrect: true @@ -306,7 +306,7 @@ formatting: continuationIndentSize: 4 MaximumLineLength: active: true - maxLineLength: 120 + maxLineLength: 140 ignoreBackTickedIdentifier: false ModifierOrdering: active: true @@ -356,7 +356,7 @@ formatting: active: true autoCorrect: true indentSize: 4 - maxLineLength: 120 + maxLineLength: 140 SpacingAroundAngleBrackets: active: false autoCorrect: true @@ -678,7 +678,7 @@ style: active: false MaxLineLength: active: true - maxLineLength: 120 + maxLineLength: 140 excludePackageStatements: true excludeImportStatements: true excludeCommentStatements: false