Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Exclude MultiLineIfElse as detekt has a similar rule #127

Merged
merged 1 commit into from
Aug 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Exclude another KtLint MultiLineIfElse which detekt has an implementa…
…tion for
  • Loading branch information
arturbosch committed Aug 13, 2020
commit f8bdc9c1f2e502544312ce46972214fb7cb64405
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ internal val excludedDuplicates = setOf(
"Filename", // MatchingDeclarationName
"MaximumLineLength", // MaxLineLength
"NoUnitReturn", // OptionalUnit
"NoWildcardImports" // WildcardImport
"NoWildcardImports", // WildcardImport
"MultiLineIfElse" // MandatoryBracesIfStatements
)

internal val allLoadedRules: List<Rule> =
Expand Down