@@ -17,8 +17,8 @@ limitations under the License.
1717-->
1818
1919<!DOCTYPE module PUBLIC
20- "-//Puppy Crawl //DTD Check Configuration 1.1 //EN"
21- "http ://www.puppycrawl.com /dtds/configuration_1_1 .dtd">
20+ "-//Checkstyle //DTD Checkstyle Configuration 1.3 //EN"
21+ "https ://checkstyle.org /dtds/configuration_1_3 .dtd">
2222
2323<!-- Checkstyle configuration that checks the commons-cli coding conventions -->
2424
@@ -47,16 +47,16 @@ limitations under the License.
4747 <property name =" eachLine" value =" true" />
4848 </module >
4949
50- <module name =" TreeWalker" >
50+ <module name =" LineLength" >
51+ <property name =" max" value =" 120" />
52+ </module >
5153
52- < property name =" cacheFile " value = " ${checkstyle.cache.file} " / >
54+ < module name =" TreeWalker " >
5355
5456 <!-- Checks for Javadoc comments. -->
5557 <!-- See http://checkstyle.sf.net/config_javadoc.html -->
5658 <module name =" JavadocMethod" >
5759 <property name =" scope" value =" public" />
58- <property name =" allowUndeclaredRTE" value =" true" />
59- <property name =" allowMissingJavadoc" value =" true" />
6060 </module >
6161 <module name =" JavadocType" />
6262 <module name =" JavadocVariable" />
@@ -85,9 +85,6 @@ limitations under the License.
8585 <!-- Checks for Size Violations. -->
8686 <!-- See http://checkstyle.sf.net/config_sizes.html -->
8787 <!-- <module name="FileLength"/>-->
88- <module name =" LineLength" >
89- <property name =" max" value =" 120" />
90- </module >
9188 <module name =" MethodLength" />
9289 <module name =" ParameterNumber" >
9390 <property name =" max" value =" 9" />
@@ -135,9 +132,6 @@ limitations under the License.
135132 <module name =" MagicNumber" >
136133 <property name =" ignoreNumbers" value =" -1,0,1,2,3" />
137134 </module >
138- <module name =" RedundantThrows" >
139- <property name =" allowUnchecked" value =" true" />
140- </module >
141135 <module name =" SimplifyBooleanExpression" />
142136 <module name =" SimplifyBooleanReturn" />
143137 <module name =" StringLiteralEquality" />
0 commit comments