right now something like this: ``` subprojects { ...
# detekt
k
right now something like this:
Copy code
subprojects {
    apply plugin: "io.gitlab.arturbosch.detekt"

    detekt {
        version = "1.0.0.RC7-2"
        defaultProfile {
            input = file("src/main/kotlin")
            filters = ".*/resources/.*,.*/build/.*"
        }
    }
}
results :detektCheck running for each module… but analyzing the same module each time
m
I have multimodule, but I only added configuration on root module and it works fine
Nevermind, I saw your next msg about the middle of the project 🙂