Fix Github Issue banner
jeremymailen jeremymailen

Fix Github Issue

Git community intermediate

Description

[](https://github.com/jeremymailen/kotlinter-gradle/actions)

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Kotlinter Gradle

[](https://github.com/jeremymailen/kotlinter-gradle/actions)

[](https://github.com/jeremymailen/kotlinter-gradle/releases)

Painless Gradle plugin for linting and formatting Kotlin source files using the awesome [ktlint](https://ktlint.github.io) engine.

It aims to be easy to set up with _zero_ required configuration and behaves as you'd expect out of the box.

It's also fast because it integrates the ktlint _engine_ directly with Gradle's incremental build and uses the Worker API to parallelize work.

Versions

This documentation is for version 5+. For documentation on version 4x and earlier, see [README-4x.md](README-4x.md).

Installation

Available on the Gradle Plugins Portal: https://plugins.gradle.org/plugin/org.jmailen.kotlinter

Replace `` in the examples below with the [current release](https://github.com/jeremymailen/kotlinter-gradle/releases/latest) version or your desired version.

Single module

Kotlin

plugins {
    id("org.jmailen.kotlinter") version ""
}

Groovy

plugins {
    id "org.jmailen.kotlinter" version ""
}

Multi-module and Android

Kotlin Root `build.gradle.kts`

plugins {
    id("org.jmailen.kotlinter") version "" apply false
}

Each module `build.gradle.kts` with Kotlin source

plugins {
    id("org.jmailen.kotlinter")
}

Groovy Root `build.gradle`

plugins {
    id 'org.jmailen.kotlinter' version "" apply false
}

Each module `build.gradle` with Kotlin source

plugins {
    id 'org.jmailen.kotlinter'
}

Compatibility

  • Kotlin -- generally compatible so long as the language features are supported by the version of ktlint selected
  • Gradle 8.4+
  • Ktlint 1.0+

Features

...