Róbert Papp
Róbert Papp
So you're thinking about swapping the two? Because we need both, see the description on the line itself in the screenshots.
I think this is more like a subtask of the other one.
Hmm, interesting, I just wanted to ask for the opposite. Don't understand why a sarif file needs to contain all rules that exist inside Detekt. For me, an empty report...
It's not an issue yet (we're not actively using Sarif yet), and thinking more about it, I think it might not be in the future, because we can easily remove...
Still an issue, we just ran out of CI space because of another report :) Still didn't get to use type resolution and per-module tasks, but I think this would...
This really wants to close itself 🫣.
I realized that for my current use case I can use `1.21.0-RC2` + `toolVersion = "main-20220711.191117-734"` because I only need the latest versions of the rules, not the gradle plugins....
Workaround for the above (nothing is impossible 😅): ```kotlin detekt { toolVersion = "main-SNAPSHOT" } project.configurations.configureEach { if (name == "detekt") { resolutionStrategy { failOnNonReproducibleResolution() eachDependency { if (requested.group ==...
I want to use latest release, but RC2 has a bug with imports, so I wanted to opt for snapshot which has that fix. I also want reproducible builds, in...
> Gradle source dependencies @3flex thanks for pointing to source dependencies, while it doesn't solve this problem, it's a good feature I can use elsewhere. > How is Detekt different...