mirror of
https://github.com/PaperMC/Velocity.git
synced 2026-02-19 07:27:42 +01:00
11 lines
241 B
Kotlin
11 lines
241 B
Kotlin
plugins {
|
|
checkstyle
|
|
}
|
|
|
|
extensions.configure<CheckstyleExtension> {
|
|
configFile = rootProject.file("config/checkstyle/checkstyle.xml")
|
|
maxErrors = 0
|
|
maxWarnings = 0
|
|
toolVersion = libs.checkstyle.get().version.toString()
|
|
}
|