Another question. I have a lot of
NamedArguments
violation for stuff like this
combine(myFlow, otherFlow, anotherFlow, ::Triple)
I don't want to turn this into
combine(flow = myFlow, flow2 = otherFlow, flow3 = anotherFlow, transform = ::Triple)
Luckily I've found
ignoreFunction
is a thing. But when I do
NamedArguments:
ignoreFunction:
- kotlinx.coroutines.flow.combine
errors don't go away. Tried wrapping it in single quotes, tried doing
ignoreFunction: [ 'kotlinx...combine' ]
instead, still nothing. Is this a bug? this function is not part of some class, it's a top-level one