Skip to content

Commit

Permalink
Additional checkstyle rules
Browse files Browse the repository at this point in the history
  • Loading branch information
acoburn committed Jan 27, 2019
1 parent 0b9996c commit 25c3a08
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions buildtools/src/main/resources/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,18 @@
<property name="checkHtml" value="true"/>
</module>

<module name="MethodName">
<property name="severity" value="error"/>
</module>

<module name="ParameterName">
<property name="severity" value="error"/>
</module>

<module name="LocalVariableName">
<property name="severity" value="error"/>
</module>

<module name="LocalFinalVariableName">
<!-- Validates identifiers for local final variables against the
expression "^[a-z][a-zA-Z0-9]*$". -->
Expand Down

0 comments on commit 25c3a08

Please sign in to comment.