Skip to content

Commit

Permalink
HBASE-12523 update checkstyle warnings to match our normal usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
busbey committed Dec 3, 2014
1 parent d6b1d8c commit 2052408
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@
<module name="TreeWalker">
<module name="AvoidStarImport"/>
<module name="RedundantImport"/>
<module name="UnusedImports"/>
<module name="UnusedImports">
<property name="processJavadoc" value="true"/>
</module>
<module name="LineLength">
<property name="max" value="100"/>
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://|org.apache.thrift.|com.google.protobuf.|hbase.protobuf.generated"/>
</module>
<module name="MethodLength"/>
<module name="MethodParamPad"/>
Expand All @@ -51,7 +53,10 @@
<module name="FinalClass"/>
<module name="HideUtilityClassConstructor"/>
<module name="InterfaceIsType"/>
<module name="VisibilityModifier"/>
<module name="VisibilityModifier">
<property name="packageAllowed" value="true"/>
<property name="protectedAllowed" value="true"/>
</module>
<module name="ArrayTypeStyle"/>
<module name="UpperEll"/>
<module name="NoFinalizer"/>
Expand Down

0 comments on commit 2052408

Please sign in to comment.