mirror of
https://github.com/PaperMC/Velocity.git
synced 2026-02-21 08:27:44 +01:00
While we're at it, make the packet files mostly Checkstyle clean, except for Javadocs (not very useful)
13 lines
392 B
Kotlin
13 lines
392 B
Kotlin
plugins {
|
|
checkstyle
|
|
}
|
|
|
|
extensions.configure<CheckstyleExtension> {
|
|
configFile = rootProject.file("config/checkstyle/checkstyle.xml")
|
|
maxErrors = 0
|
|
maxWarnings = 0
|
|
toolVersion = libs.checkstyle.get().version.toString()
|
|
configProperties["org.checkstyle.google.suppressionfilter.config"] =
|
|
rootProject.file("config/checkstyle/checkstyle-suppressions.xml")
|
|
}
|