-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathklint.gradle
96 lines (81 loc) · 2.28 KB
/
klint.gradle
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
repositories {
jcenter()
}
configurations {
ktlint
}
dependencies {
ktlint "com.pinterest:ktlint:0.39.0"
}
task installGitHooks(type: Copy) {
from new File(rootProject.rootDir, 'hooks')
into {
new File(rootProject.rootDir, '.git/hooks')
}
fileMode 0755
}
def getChangedFiles() {
try {
String changeInfo = 'git status -s'.execute(null, project.rootDir).text.trim()
println("changeInfo:${changeInfo}")
return changeInfo == null ? "" : changeInfo
} catch (Exception e) {
println e.printStackTrace()
return ""
}
}
static def filterByExtension(String status, String extension) {
ArrayList<String> list = new ArrayList<String>()
String[] lines = status.split("\\n")
for (String line : lines) {
if (line.contains(extension)) {
String[] items = line.trim().split(" ")
for (String str : items) {
if (str.contains(extension)) {
list.add(str)
}
}
}
}
return list
}
task ktlint(type: JavaExec, group: "verification") {
def files = filterByExtension(getChangedFiles(), ".kt")
def argsList = new ArrayList<String>()
for (int i = 0; i < files.size(); i++) {
String item = files[i]
String[] items = item.split("/")
String fileName = items[items.length - 1]
argsList.add("src/**/" + fileName)
}
if (argsList.size() == 0) {
argsList.add("!src/**/*.kt")
}
// Report file rule.
argsList.add("--reporter=plain")
argsList.add("--reporter=html,output=${buildDir}/reports/ktlint/ktlint.html")
description = "Check Kotlin code style."
classpath = configurations.ktlint
main = "com.pinterest.ktlint.Main"
args argsList as String[]
}
task ktlintFormat(type: JavaExec, group: "formatting") {
def list = filterByExtension(getChangedFiles(), ".kt")
def argsList = new ArrayList<String>()
argsList.add("-F")
for (int i = 0; i < list.size(); i++) {
String item = list[i]
String[] items = item.split("/")
String fileName = items[items.length - 1]
argsList.add("src/**/" + fileName)
}
if (argsList.size() == 0) {
argsList.add("!src/**/*.kt")
}
println("argsList:${argsList}")
description = "Fix Kotlin code style deviations."
main = "com.pinterest.ktlint.Main"
classpath = configurations.ktlint
args argsList as String[]
}
preBuild.dependsOn installGitHooks