Skip to content

Commit

Permalink
Added checkstyle config file
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinWieczorek committed Nov 15, 2016
1 parent 1f03c95 commit c8ce0ea
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions checkstyle.xml
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
<module name="Checker">
<module name="TreeWalker">
<module name="AvoidStarImport"/>
<module name="EmptyBlock"/>
<module name="AtclauseOrder">
<property name="tagOrder" value="@author, @version, @param, @return, @throws, @exception, @see, @since, @serial, @serialField, @serialData, @deprecated"/>
<property name="target" value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
</module>
<module name="JavadocMethod">
<property name="validateThrows" value="true"/>
<property name="scope" value="public"/>
</module>
</module>
</module>

0 comments on commit c8ce0ea

Please sign in to comment.