nacyolsa
nacyolsa
Unfortunately I can't provide entire project.
> I'm asking for a reproducer, not your full project. I know but it's not so easy because from what I see it's related to my custom DLSs.
I was able to simplify my example ``` class TestDetekt { private suspend fun f1(): Unit { customDsl { f2().bind() .also { UUID.randomUUID() } } Unit } fun f2(): CustomType...
Issue still occurs with 1.23.1. I will try to provide better example.
Working example: ```kotlin import arrow.core.Either import arrow.core.continuations.either import java.util.UUID class TestDetekt { private suspend fun f1() { either { f2().bind() .also { UUID.randomUUID() } } } suspend fun f2(): Either...
@BraisGabin thanks. Issue doesn't occur with Gradle 8.2.1.
There are already a few solutions which could be used: - https://github.com/Yonatha/ai-code-review - https://github.com/twitchax/augre - https://github.com/Codium-ai/pr-agent
I process jpg, png, webp as in/out. I only do the following operations with them. ``` private val imageWriters = mapOf( ImageFormat.JPG to JpegWriter().withCompression(50), ImageFormat.PNG to PngWriter().withMaxCompression(), ImageFormat.WEBP to WebpWriter.DEFAULT...