From 3d4cf02f370407735421d00a3e69968976fbe205 Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Tue, 8 May 2018 23:03:36 +0200 Subject: [PATCH] Update ktlint to 0.23.1 & Detekt to 1.0.0-RC7 --- build.gradle | 6 +++--- code_quality_tools/detekt.yml | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index b0e7f51..2e9b16c 100755 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlinVersion = '1.2.31' + ext.kotlinVersion = '1.2.41' repositories { jcenter() @@ -26,10 +26,10 @@ apply plugin: 'com.gradle.plugin-publish' codeQualityTools { ktlint { - toolVersion = '0.21.0' + toolVersion = '0.23.1' } detekt { - toolVersion = '1.0.0.RC6-4' + toolVersion = '1.0.0.RC7' } findbugs { enabled = false diff --git a/code_quality_tools/detekt.yml b/code_quality_tools/detekt.yml index 4089620..900b2e2 100644 --- a/code_quality_tools/detekt.yml +++ b/code_quality_tools/detekt.yml @@ -9,8 +9,6 @@ potential-bugs: style: TopLevelPropertyNaming: active: false - UnusedPrivateMember: - active: false # Way too many false positives. https://github.com/arturbosch/detekt/issues/812 MaxLineLength: active: false