IntelliJ Detekt Plugin
Integrates detekt, a static code analysis tool for the Kotlin programming language, into IntelliJ.
The plugin can be downloaded from the Jetbrains plugin repository.
Enabling the plugin
- Install the plugin
- Navigate to Settings/Preferences -> Tools -> Detekt
- Check
Enable Detekt
- Specify your detekt configuration and baseline file (optional)
- detekt issues will be annotated on-the-fly while coding
Building / developing the plugin
For building the project, the Gradle IntelliJ plugin is used.
# linux & macOS
./gradlew buildPlugin
# windows
gradlew buildPlugin
To test your development, use task runIde
which will automatically run an Intellij instance to test your new version of detekt plugin.