Issue #1566: ReturnCount check activated
This commit is contained in:
parent
9cd3660fd5
commit
a95266d1a1
|
|
@ -334,6 +334,8 @@
|
|||
DetailsAST, CheckstyleException, UnsupportedEncodingException, BuildException, ConversionException, FileNotFoundException, TestException"/>
|
||||
</module>
|
||||
|
||||
<module name="ReturnCount"/>
|
||||
|
||||
<!--
|
||||
<module name="ClassFanOutComplexity"/>
|
||||
<module name="FinalParameters"/>
|
||||
|
|
@ -345,7 +347,6 @@
|
|||
<module name="OverloadMethodsDeclarationOrder"/>
|
||||
<module name="PackageDeclaration"/>
|
||||
<module name="RequireThis"/>
|
||||
<module name="ReturnCount"/>
|
||||
<module name="SingleLineJavadoc"/>
|
||||
<module name="SummaryJavadoc"/>
|
||||
<module name="VariableDeclarationUsageDistance"/>
|
||||
|
|
|
|||
|
|
@ -86,4 +86,6 @@
|
|||
<!-- a lot of GUI elements is OK -->
|
||||
<suppress checks="ClassDataAbstractionCoupling" files="ParseTreeInfoPanel\.java"/>
|
||||
|
||||
<!-- Should be fixed after moving https://github.com/sevntu-checkstyle/sevntu.checkstyle/blob/master/sevntu-checks/src/main/java/com/github/sevntu/checkstyle/checks/coding/ReturnCountExtendedCheck.java into the main repo -->
|
||||
<suppress checks="ReturnCount" files="(ClassResolver|ConfigurationLoader|IndentationCheckTest)\.java"/>
|
||||
</suppressions>
|
||||
|
|
|
|||
Loading…
Reference in New Issue