-
Notifications
You must be signed in to change notification settings - Fork 16
/
spotless.gradle
83 lines (69 loc) · 2.03 KB
/
spotless.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
apply plugin: "com.diffplug.spotless"
final Set<String> EDITOR_CONFIG_KEYS = [
"ij_kotlin_imports_layout",
"indent_size",
"end_of_line",
"charset",
"continuation_indent_size",
"disabled_rules"
]
final ktlintVersion = '0.46.1'
spotless {
kotlin {
target("**/*.kt")
// TODO this should all come from editorconfig https://github.com/diffplug/spotless/issues/142
final data = [
"indent_size" : "2",
"continuation_indent_size": "4",
"ij_kotlin_imports_layout": "*",
"end_of_line" : "lf",
"charset" : "utf-8",
"disabled_rules" : [
"experimental:package-name",
"experimental:type-parameter-list-spacing",
"experimental:comment-wrapping",
"trailing-comma",
"filename",
"annotation"
].join(",")
]
ktlint(ktlintVersion)
.setUseExperimental(true)
.userData(data.subMap(data.keySet() - EDITOR_CONFIG_KEYS))
.editorConfigOverride(data.subMap(EDITOR_CONFIG_KEYS))
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
format("xml") {
target("**/res/**/*.xml")
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
groovyGradle {
target("*.gradle")
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
kotlinGradle {
target("**/*.gradle.kts", "*.gradle.kts")
// TODO this should all come from editorconfig https://github.com/diffplug/spotless/issues/142
final data = [
"indent_size" : "2",
"continuation_indent_size": "4",
"ij_kotlin_imports_layout": "*",
"end_of_line" : "lf",
"charset" : "utf-8",
"disabled_rules" : "no-wildcard-imports",
]
ktlint(ktlintVersion)
.setUseExperimental(true)
.userData(data.subMap(data.keySet() - EDITOR_CONFIG_KEYS))
.editorConfigOverride(data.subMap(EDITOR_CONFIG_KEYS))
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
}