Compare commits

...

2 Commits

Author SHA1 Message Date
tzugen
92d20f4aa7
Detekt says serialVersionUID should be private 2023-06-01 10:41:18 +02:00
tzugen
55b2acf2bb
Upgrade detekt config format 2023-06-01 10:35:22 +02:00
2 changed files with 6 additions and 2 deletions

View File

@ -52,7 +52,11 @@ style:
active: true active: true
ForbiddenComment: ForbiddenComment:
active: true 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: WildcardImport:
active: true active: true
MaxLineLength: MaxLineLength:

View File

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