Skip to content

Commit

Permalink
Update checkstyle.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev committed Nov 28, 2016
1 parent 7fca71e commit 0949c8e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.1//EN"
"http://www.puppycrawl.com/dtds/configuration_1_1.dtd">


<module name="Checker">
<property name="charset" value="UTF-8"/>
<property name="severity" value="error"/>
Expand All @@ -20,7 +20,7 @@
<module name="FileLength">
<property name="fileExtensions" value="java"/>
<property name="severity" value="warning"/>
<property name="max" value="2500"/>
<property name="max" value="2600"/>
</module>
<module name="RegexpSingleline">
<property name="format" value="\s+$"/>
Expand Down Expand Up @@ -124,7 +124,9 @@
</module>
<module name="ParenPad"/>
<module name="TypecastParenPad"/>
<!-- <module name="TabCharacter"/> --> <module name="WhitespaceAfter"/> <module name="WhitespaceAround">
<!-- <module name="TabCharacter"/> -->
<module name="WhitespaceAfter"/>
<module name="WhitespaceAround">
<property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LCURLY, LE, LITERAL_ASSERT, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, RCURLY, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN, STAR, STAR_ASSIGN, TYPE_EXTENSION_AND"/>
</module>
<module name="ModifierOrder"/>
Expand Down Expand Up @@ -192,7 +194,8 @@
<module name="ParameterAssignment">
<property name="severity" value="warning"/>
</module>
<module name="ExplicitInitialization"/> <module name="DefaultComesLast"/>
<module name="ExplicitInitialization"/>
<module name="DefaultComesLast"/>
<module name="FallThrough"/>
<module name="MultipleVariableDeclarations"/>
<module name="UnnecessaryParentheses"/>
Expand Down

0 comments on commit 0949c8e

Please sign in to comment.