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 6.3.1
6.3.1
Created 27 November 2018.
Provides a convenient wrapper plugin over the ktlint project.
Using the plugins DSL:
plugins {
id("org.jlleitschuh.gradle.ktlint-idea") version "6.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jlleitschuh.gradle:ktlint-gradle:6.3.1")
}
}
apply(plugin = "org.jlleitschuh.gradle.ktlint-idea")
Using the plugins DSL:
plugins {
id "org.jlleitschuh.gradle.ktlint-idea" version "6.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jlleitschuh.gradle:ktlint-gradle:6.3.1"
}
}
apply plugin: "org.jlleitschuh.gradle.ktlint-idea"