Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuester committed Mar 8, 2024
1 parent 66d3e01 commit b1ae6fe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ task checkstyle(type: Checkstyle) {
source 'src'
classpath = files()
ignoreFailures = false
exclude 'test/bash/bats/**'
}

task pmd(type: Pmd) {
Expand All @@ -43,10 +44,10 @@ task pmd(type: Pmd) {
source 'src'
exclude '**/**.png'
exclude '**/**.mp3'
exclude '**/**.bats'
exclude 'test/bash/bats/**'
dependencies {
pmd 'net.sourceforge.pmd:pmd-java:6.44.0'
pmd 'net.sourceforge.pmd:pmd-xml:6.44.0'
pmd 'net.sourceforge.pmd:pmd-java:6.55.0'
pmd 'net.sourceforge.pmd:pmd-xml:6.55.0'
}
}

Expand Down

0 comments on commit b1ae6fe

Please sign in to comment.