Ignore ktlint issue for this particular val.

This commit is contained in:
Benoit Marty
2024-01-10 19:13:47 +01:00
committed by Benoit Marty
parent 206a69938f
commit 3084d71c39

View File

@@ -85,6 +85,7 @@ private class TestableMutableState<T>(
value: T
) : MutableState<T> {
@Suppress("ktlint:standard:property-naming")
private val _deque = ArrayDeque<T>(listOf(value))
override var value: T