Issue #1566: IllegalType suppressions were added

This commit is contained in:
Ruslan Diachenko 2015-08-20 22:05:55 +01:00 committed by Roman Ivanov
parent 584f7ee123
commit 553e36c2ea
2 changed files with 4 additions and 1 deletions

View File

@ -306,6 +306,7 @@
<module name="ModifiedControlVariable"/>
<module name="AvoidInlineConditionals"/>
<module name="IllegalType"/>
<!--
<module name="ClassDataAbstractionCoupling"/>
@ -313,7 +314,6 @@
<module name="ExecutableStatementCount"/>
<module name="FinalParameters"/>
<module name="IllegalToken"/>
<module name="IllegalType"/>
<module name="JavadocParagraph"/>
<module name="JavadocTagContinuationIndentation"/>
<module name="JavaNCSS"/>

View File

@ -60,4 +60,7 @@
<suppress checks="." files=".*JavadocTokenTypes\.java"/>
<suppress checks="." files=".*ParseTreeBuilder\.java"/>
<!-- Should be solved after fixing https://github.com/checkstyle/checkstyle/issues/1805 -->
<suppress checks="IllegalType" files=".*[\\/]src[\\/]test[\\/]|(AbstractTypeAwareCheck|TryHandler|SlistHandler|PrimordialHandler|MethodCallHandler|MemberDefHandler|IndentationCheck|IfHandler|HandlerFactory|CaseHandler|BlockParentHandler|AbstractExpressionHandler|JavadocMethodCheck|DetectorOptions)\.java"/>
</suppressions>