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:
@@ -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]
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user