From ec02a82430caa09bf9b746c88e320c807cf0b7c9 Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Fri, 16 Dec 2022 21:54:32 +1100 Subject: [PATCH] Disable ktlint's NoSemicolons rule This can be enabled again when this defect is fixed: https://github.com/pinterest/ktlint/issues/1733 --- config/detekt/detekt.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/detekt/detekt.yml b/config/detekt/detekt.yml index 901df76e90b..f0c7387f390 100644 --- a/config/detekt/detekt.yml +++ b/config/detekt/detekt.yml @@ -77,6 +77,8 @@ formatting: active: true MaximumLineLength: active: false + NoSemicolons: + active: false # https://github.com/pinterest/ktlint/issues/1733 NullableTypeSpacing: active: true ParameterListSpacing: