Enable detekt rules UseDataClass and fix existing issues.
This commit is contained in:
parent
15ac81d32a
commit
613cd4f863
2 changed files with 7 additions and 2 deletions
|
|
@ -28,10 +28,12 @@ import timber.log.Timber
|
||||||
@Composable
|
@Composable
|
||||||
fun LogCompositions(tag: String, msg: String) {
|
fun LogCompositions(tag: String, msg: String) {
|
||||||
if (BuildConfig.DEBUG) {
|
if (BuildConfig.DEBUG) {
|
||||||
val ref = remember { Ref(0) }
|
val ref = remember { Ref() }
|
||||||
SideEffect { ref.value++ }
|
SideEffect { ref.value++ }
|
||||||
Timber.tag(tag).d("Compositions: $msg ${ref.value}")
|
Timber.tag(tag).d("Compositions: $msg ${ref.value}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class Ref(var value: Int)
|
private class Ref {
|
||||||
|
var value: Int = 0
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,9 @@ style:
|
||||||
active: true
|
active: true
|
||||||
acceptableLength: 4
|
acceptableLength: 4
|
||||||
allowNonStandardGrouping: false
|
allowNonStandardGrouping: false
|
||||||
|
UseDataClass:
|
||||||
|
active: true
|
||||||
|
allowVars: false
|
||||||
|
|
||||||
coroutines:
|
coroutines:
|
||||||
GlobalCoroutineUsage:
|
GlobalCoroutineUsage:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue