Files
Velocity/build-logic/src/main/kotlin/velocity-checkstyle.gradle.kts
Andrew Steinborn 115ac92d5c A full reorganization of the networking logic
While we're at it, make the packet files mostly Checkstyle clean, except for Javadocs (not very useful)
2023-10-27 18:38:26 -04:00

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")
}