Install Kotlinter Gradle
masterTo use Kotlinter, apply the org.jmailen.kotlinter plugin. For multi-module projects, it is recommended to define the plugin in the root build.gradle.kts with apply false and then apply it to each specific module that contains Kotlin source code.
### Single module (Kotlin)
```kotlin
plugins {
id("org.jmailen.kotlinter") version "<release>"
}Multi-module (Kotlin)
Root build.gradle.kts
plugins {
id("org.jmailen.kotlinter") version "<release>" apply false
}Module build.gradle.kts
plugins {
id("org.jmailen.kotlinter")
}