Skip to content

Commit

Permalink
Merge pull request #26 from palantir/feature/checkstyle-ignores-gener…
Browse files Browse the repository at this point in the history
…ated-files

checkstyle-suppressions.xml ignores generated_src and generated_testS…
  • Loading branch information
bdworth committed Dec 10, 2015
2 parents 9348273 + 2d03554 commit 75d82e7
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@
<!-- non-code classes -->
<suppress files="\.(bdr|eot|gif|gzip|jar|json|otf|png|svg|ttf|woff|zip)$" checks="FileTabCharacter" />
<suppress files="\.(bdr|eot|gif|gzip|jar|json|otf|png|svg|ttf|woff|zip)$" checks="NewlineAtEndOfFile" />

<!-- Generated code should not be subjected to checkstyle. -->
<suppress files="[/\\].*[/\\]generated_src[/\\]" checks="." />
<suppress files="[/\\].*[/\\]generated_testSrc[/\\]" checks="." />
</suppressions>

0 comments on commit 75d82e7

Please sign in to comment.