====== Java Checkstyle ====== * http://checkstyle.sourceforge.net/ : [[java:static_analysis|Java Static Analysis]] 도구 * [[ci:jenkins:warnings_next_generation|Jenkins Warnings Next Generation]] ====== Gradle 설정 ====== * [[https://docs.gradle.org/current/userguide/checkstyle_plugin.html|Gradle Checkstyle Plugin]] tasks.withType(Checkstyle) { reports { xml.enabled true html.enabled false html.stylesheet resources.text.fromFile('config/xsl/checkstyle-custom.xsl') } ignoreFailures = true configFile = file('config/checkstyle/checkstyle.xml') // rule 파일 }