Issue #1566: IllegalType suppressions were added
This commit is contained in:
parent
584f7ee123
commit
553e36c2ea
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue