Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
Suppress only specific Checkstyle checks in tests (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Nov 18, 2021
1 parent 632802a commit ea789ff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
<module name="Checker">
<module name="SuppressionSingleFilter">
<property name="checks" value=".*"/>
<property name="files" value="xtext-gen|test"/>
<property name="files" value="xtext-gen"/>
</module>
<module name="SuppressionSingleFilter">
<property name="checks" value="MultipleStringLiterals|ExecutableStatementCount|MagicNumber"/>
<property name="files" value="test"/>
</module>
<module name="TreeWalker">
<module name="AbstractClassName"/>
Expand Down

0 comments on commit ea789ff

Please sign in to comment.