Skip to content

Commit

Permalink
Issue #37: upgrade to checkstyle 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
romani committed Dec 24, 2016
1 parent bfcbca6 commit 1aea246
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.TranslationCheck.param.re
rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck.name=Parameter Name
rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck.param.format=Regular expression
rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck.param.ignoreOverridden=Allows to skip methods with Override annotation from validation.
rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck.param.scope=Visibility scope of methods where parameters are checked.
rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck.param.excludeScope=Visibility scope of methods where parameters are not checked.
rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.modifier.RedundantModifierCheck.name=Redundant Modifier
rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.modifier.RedundantModifierCheck.param.tokens=tokens to check
rule.checkstyle.com.puppycrawl.tools.checkstyle.checks.whitespace.EmptyForInitializerPadCheck.name=Empty For Initializer Pad
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1275,6 +1275,11 @@
<param key="ignoreOverridden" type="BOOLEAN">
<defaultValue>false</defaultValue>
</param>
<param key="scope" type="s[nothing,public,protected,package,private,anoninner]">
<defaultValue>anoninner</defaultValue>
</param>
<param key="excludeScope" type="s[nothing,public,protected,package,private,anoninner]">
</param>
<status>READY</status>
</rule>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</ciManagement>

<properties>
<checkstyle.version>7.2</checkstyle.version>
<checkstyle.version>7.3</checkstyle.version>
<sonar.version>4.5.2</sonar.version>
<sonar-java.version>3.7</sonar-java.version>
<java.version>1.8</java.version>
Expand Down

0 comments on commit 1aea246

Please sign in to comment.