mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-03 03:01:44 +00:00
Remove Java formatting from build task in CI (#3507)
This saves time in CI spent performing the same source-level checks in every build job. Checkstyle, PMD, and Spotless are now run once in the "Lint and Format" job. The -PskipPMD flag was replaced with a -PskipJavaFormat flag that disables Checkstyle, PMD, and Spotless.
This commit is contained in:
@@ -53,7 +53,7 @@ jacocoTestReport {
|
||||
}
|
||||
}
|
||||
|
||||
if (!project.hasProperty('skipPMD')) {
|
||||
if (!project.hasProperty('skipJavaFormat')) {
|
||||
apply plugin: 'pmd'
|
||||
|
||||
pmd {
|
||||
|
||||
Reference in New Issue
Block a user