Update dependency io.gitlab.arturbosch.detekt:detekt-gradle-plugin to v1.23.0

This commit is contained in:
Renovate Bot 2023-06-01 08:48:58 +00:00 committed by birdbird
parent 4feb84bd83
commit 25f3ff0bd3
3 changed files with 7 additions and 3 deletions

View File

@ -52,7 +52,11 @@ style:
active: true
ForbiddenComment:
active: true
values: ['FIXME:', 'STOPSHIP:']
comments:
- reason: 'Forbidden FIXME todo marker in comment, please fix the problem.'
value: 'FIXME:'
- reason: 'Forbidden STOPSHIP todo marker in comment, please address the problem before shipping the code.'
value: 'STOPSHIP:'
WildcardImport:
active: true
MaxLineLength:

View File

@ -7,7 +7,7 @@ gradlePlugin = "8.0.2"
androidxcore = "1.10.1"
ktlint = "0.43.2"
ktlintGradle = "11.3.2"
detekt = "1.22.0"
detekt = "1.23.0"
preferences = "1.2.0"
media3 = "1.0.2"

View File

@ -14,6 +14,6 @@ data class PlaybackState(
var repeatMode: Int = 0
) : Serializable {
companion object {
const val serialVersionUID = -293487987L
private const val serialVersionUID = -293487987L
}
}