org.jlleitschuh.gradle.ktlint-idea
所有者: Jonathan Leitschuh
提供对ktlint项目的便利包装插件。
https://github.com/JLLeitschuh/ktlint-gradle
源代码: https://github.com/JLLeitschuh/ktlint-gradle
使用插件DSL
plugins {
id("org.jlleitschuh.gradle.ktlint-idea") version "11.6.1"
}
使用旧式插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.jlleitschuh.gradle:ktlint-gradle:11.6.1")
}
}
apply(plugin = "org.jlleitschuh.gradle.ktlint-idea")