org.jlleitschuh.gradle.ktlint-idea
Owner: Jonathan Leitschuh
Provides a convenient wrapper plugin over the ktlint project.
https://github.com/JLLeitschuh/ktlint-gradle
Sources: https://github.com/JLLeitschuh/ktlint-gradle
Version 11.6.1 (latest)
11.6.1
Created 10 October 2023.
Provides a convenient wrapper plugin over the ktlint project.
Using the plugins DSL:
plugins {
id("org.jlleitschuh.gradle.ktlint-idea") version "11.6.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jlleitschuh.gradle:ktlint-gradle:11.6.1")
}
}
apply(plugin = "org.jlleitschuh.gradle.ktlint-idea")
Using the plugins DSL:
plugins {
id "org.jlleitschuh.gradle.ktlint-idea" version "11.6.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.6.1"
}
}
apply plugin: "org.jlleitschuh.gradle.ktlint-idea"