summaryrefslogtreecommitdiff
path: root/platform/android/gradle/ktlint.gradle
blob: 31743ccd495887ff9997fa4000ff291add7d6a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
apply from: "${rootDir}/gradle/dependencies.gradle"

repositories {
    jcenter()
}

configurations {
    ktlint
}

dependencies {
    ktlint dependenciesList.ktlint
}

task ktlint(type: JavaExec, group: "verification") {
    description = "Check Kotlin code style."
    classpath = configurations.ktlint
    main = "com.pinterest.ktlint.Main"
    args "src/**/*.kt"
}

task ktlintFormat(type: JavaExec, group: "formatting") {
    description = "Fix Kotlin code style deviations."
    classpath = configurations.ktlint
    main = "com.pinterest.ktlint.Main"
    args "-F", "src/**/*.kt"
}