Issue #1566: ReturnCount check activated

This commit is contained in:
Ruslan Diachenko 2015-08-29 09:28:11 +01:00 committed by Roman Ivanov
parent 9cd3660fd5
commit a95266d1a1
2 changed files with 4 additions and 1 deletions

View File

@ -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"/>

View File

@ -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>