Hi , I was trying to integrate Compose detekt plug...
# detekt
a
Hi , I was trying to integrate Compose detekt plugin https://github.com/mrmans0n/compose-rules/ , it is able to detect the issues but the gradle task is still reported as a success , where as failure in other rules results in the task being a failure. I can see the print
Composable functions that return Unit should start with an uppercase letter.
They are considered declarative entities that can be either present or absent in a composition and therefore follow the naming rules for classes.
Copy code
dependencies {
    detektPlugins("io.nlopez.compose.rules:detekt:0.1.8"). // Cannot use latest version due to other compatibility issues.
}
But the task reports as a success. Are there separate settings for detektPlugins where I have to define that the task should fail on any rule failure ?