Update dependency io.gitlab.arturbosch.detekt to v1.23.0 (#454)

* Update dependency io.gitlab.arturbosch.detekt to v1.23.0

* Disable new detekt rules for unused params

UnusedParameter and UnusedPrivateProperty are both potentially
useful but we currently break them a lot, for the most part
in places that haven't been fully implemented yet.

The unused params are reported as build warnings anyway, so
we're not missing much by disabling these for now.

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Chris Smith <csmith@lunarian.uk>
This commit is contained in:
renovate[bot]
2023-05-30 11:18:51 +00:00
committed by GitHub
parent 1a2e05608a
commit 7ba3d3d1ab
2 changed files with 7 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ dagger = "2.46.1"
anvil = "2.4.6"
# quality
detekt = "1.22.0"
detekt = "1.23.0"
dependencygraph = "0.10"
[libraries]

View File

@@ -15,6 +15,12 @@ style:
UnusedPrivateMember:
# TODO Enable it
active: false
UnusedParameter:
# TODO Enable it
active: false
UnusedPrivateProperty:
# TODO Enable it
active: false
ThrowsCount:
active: false
LoopWithTooManyJumpStatements: