Hi, is it possible to define separate rules for su...
# detekt
d
Hi, is it possible to define separate rules for subsets of sources? My case is that I have some part of the code that should be purely functional and checked with https://github.com/neeffect/kure-potlin, the rest is “impure” and should follow general Kotlin rules. Is it possible?
m
Depending on the structure of your code base, you could use exclude and include paths. https://detekt.dev/docs/introduction/configurations/
d
Thank you, I was lazy and only looked at the configuration of Gradle task… 😊