Skip to content

Commit 6b22c7b

Browse files
authored
Merge pull request #22 from embulk/checkstyle-9.3
Checkstyle with checkstyle 9.3
2 parents 5d54d2e + 08ad317 commit 6b22c7b

File tree

8 files changed

+680
-425
lines changed

8 files changed

+680
-425
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -215,13 +215,13 @@ tasks.withType(Checkstyle) {
215215
}
216216

217217
checkstyle {
218-
toolVersion "8.7"
218+
toolVersion = libs.versions.checkstyle.get()
219219
configFile = file("${rootProject.projectDir}/config/checkstyle/checkstyle.xml")
220220
configProperties = [
221-
"checkstyle.config.path": file("${projectDir}/config/checkstyle")
221+
"org.checkstyle.google.suppressionfilter.config": file("${rootProject.projectDir}/config/checkstyle/checkstyle-suppressions.xml"),
222222
]
223223
ignoreFailures = false
224-
maxWarnings = 0 // https://github.com/gradle/gradle/issues/881
224+
maxWarnings = 0
225225
}
226226

227227
// Task ":compileTestJava" somehow uses this output of task ":jar" without declaring an explicit or implicit dependency.

config/checkstyle/README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
Checkstyle for the Embulk project
22
==================================
33

4-
* google_check.xml: Downloaded from: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
5-
* Commit: 60f41e3c16e6c94b0bf8c2e5e4b4accf4ad394ab
4+
* google_check.xml: Downloaded from: https://github.com/checkstyle/checkstyle/blob/checkstyle-9.3/src/main/resources/google_checks.xml
5+
* Commit: 5c1903792f8432243cc8ae5cd79a03a004d3c09c
66
* checkstyle.xml: Customized from google_check.xml.
7-
* To enable suppressions through suppressions.xml.
7+
* To enable suppressions through checkstyle-suppressions.xml.
88
* To enable suppressions with @SuppressWarnings.
9-
* To accept package names with underscores.
109
* To indent with 4-column spaces.
11-
* To limit columns to 180 characters, which will be shortened later.
10+
* To limit columns to 180 characters.
1211
* To reject unused imports.

config/checkstyle/suppressions.xml config/checkstyle/checkstyle-suppressions.xml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<suppress checks="JavadocMethod" files=".*"/>
99
<suppress checks="JavadocParagraph" files=".*"/>
1010
<suppress checks="JavadocTagContinuationIndentation" files=".*"/>
11+
<suppress checks="MissingJavadocType" files=".*"/>
1112
<suppress checks="SingleLineJavadoc" files=".*"/>
1213
<suppress checks="SummaryJavadoc" files=".*"/>
1314
</suppressions>

config/checkstyle/checkstyle.xml

+333-207
Large diffs are not rendered by default.

config/checkstyle/google_checks.xml

+331-204
Large diffs are not rendered by default.

embulk-guess-csv/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ tasks.withType(Checkstyle) {
185185
}
186186

187187
checkstyle {
188-
toolVersion "8.7"
188+
toolVersion = libs.versions.checkstyle.get()
189189
configFile = file("${rootProject.projectDir}/config/checkstyle/checkstyle.xml")
190190
configProperties = [
191-
"checkstyle.config.path": file("${rootProject.projectDir}/config/checkstyle")
191+
"org.checkstyle.google.suppressionfilter.config": file("${rootProject.projectDir}/config/checkstyle/checkstyle-suppressions.xml"),
192192
]
193193
ignoreFailures = false
194-
maxWarnings = 0 // https://github.com/gradle/gradle/issues/881
194+
maxWarnings = 0
195195
}

embulk-guess-csv_all_strings/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,11 @@ tasks.withType(Checkstyle) {
186186
}
187187

188188
checkstyle {
189-
toolVersion "8.7"
189+
toolVersion = libs.versions.checkstyle.get()
190190
configFile = file("${rootProject.projectDir}/config/checkstyle/checkstyle.xml")
191191
configProperties = [
192-
"checkstyle.config.path": file("${rootProject.projectDir}/config/checkstyle")
192+
"org.checkstyle.google.suppressionfilter.config": file("${rootProject.projectDir}/config/checkstyle/checkstyle-suppressions.xml"),
193193
]
194194
ignoreFailures = false
195-
maxWarnings = 0 // https://github.com/gradle/gradle/issues/881
195+
maxWarnings = 0
196196
}

gradle/libs.versions.toml

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ embulk-guess-csv = "0.10.42"
3434
embulk-guess-gzip = "0.10.42"
3535
embulk-guess-json = "0.10.42"
3636

37+
checkstyle = "9.3"
38+
3739
[libraries]
3840

3941
embulk-spi = { group = "org.embulk", name = "embulk-spi", version.ref = "embulk-spi" }

0 commit comments

Comments
 (0)