Skip to content

Commit

Permalink
[checkstyle] Treat packages containing .dto. the same way as java cla…
Browse files Browse the repository at this point in the history
…sses ending in DTO (openhab#7257)

* Treat packages containing .dto. the same way as java classes ending in DTO

Signed-off-by: Arne Seime <[email protected]>
  • Loading branch information
seime authored and J-N-K committed Jul 14, 2020
1 parent 039db4a commit fd5fa86
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/static-code-analysis/checkstyle/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<!-- These suppressions define which files to be suppressed for which checks. -->
<suppress files=".+[\\/]internal[\\/].+\.java" checks="JavadocType|JavadocVariable|JavadocMethod|JavadocFilterCheck"/>
<suppress files=".+DTO\.java" checks="JavadocType|JavadocVariable|JavadocMethod|JavadocFilterCheck|NullAnnotationsCheck" />
<suppress files=".+[\\/]dto[\\/].+\.java" checks="JavadocType|JavadocVariable|JavadocMethod|JavadocFilterCheck|NullAnnotationsCheck" />
<suppress files=".+Impl\.java" checks="JavadocType|JavadocVariable|JavadocMethod|JavadocFilterCheck"/>

<!-- Homematic and Tellstick bindings are creating and configuring things dynamically, they will log false positives for unused configuration -->
Expand Down

0 comments on commit fd5fa86

Please sign in to comment.