Hi, is it possible to use detekt plugin with Amper...
# amper
c
Hi, is it possible to use detekt plugin with Amper? Thanks!
z
You can do this with Gradle-based Amper projects, using the interop support: https://github.com/JetBrains/amper/blob/release/0.3/docs/Documentation.md#gradle-interop
c
Ok, I added such
build.gradle.kts
to the sample amper project and it works as expected:
Copy code
plugins {
    id("io.gitlab.arturbosch.detekt") version "1.23.6"
}

detekt {
    source.from("src")
}
Thanks for the quick response 🙂
👍 2