Artur Bosch
Artur Bosch
> Refere Hm, as far as I see in the linked PR there is a testcase to verify the rule still works with a string property. Shouldn't both string and...
Hm, I see https://github.com/detekt/detekt/blob/d5165629636eb5d37fd10b10761c9363adb808e8/detekt-rules-style/src/test/kotlin/io/gitlab/arturbosch/detekt/rules/style/ReturnCountSpec.kt#L300-L311 which takes `"test"` as string literal and converts it to a list via https://github.com/detekt/detekt/blob/16b66586bc8cab055b330a4a316a271afce1e221/detekt-api/src/main/kotlin/io/gitlab/arturbosch/detekt/api/ConfigProperty.kt#L126-L134 Edit: Okay, running the CLI I get `Property 'style>ReturnCount>excludedFunctions' should be a...
There are some rules marked as auto correctable in the plugin which are in fact not. This should get corrected with the new release soon based on detekt 1.22.
I think we should support them at least till 2.0 and later rely on the compiler plugin to get first class support for resolution.
Hi, I was triggered by Gradle closing two linked issues regarding the worker api which I linked in my worker api experiment from 2020 https://github.com/detekt/detekt/pull/2896. Looking over the changes in...
@yogurtearl could you try adding `languageVersion = "1.4"` to the detekt tasks via `tasks.withType { ... }` and see if it helps? Thanks
Hi @vsigler , indeed we do not support this feature. detekt rules are configured via our yaml format - https://detekt.github.io/detekt/configurations.html You can reference the yaml config file in your project...
Thanks for the request. This is actually a duplicate of #120 but I will close #120 in favor of this due to having a description :).
Yeah your right. I forgot to support absolute paths. As sonar treats each module as the `root` in a `Sensor` it is hard to find the config file so I...
Please take a look how we at detekt embed KtLint. https://github.com/detekt/detekt/blob/b87e32a65cf55041f93c87488b672dcd8cf75416/detekt-formatting/build.gradle.kts#L6 We do not call the main functions but maybe it still helps.