java - Suppressionfilter doesn't work in checkstyle config file -
can why suppression filter doesn't work? still generates javadoc errors candidate_ file. checkstyle.xml `...
<module name="suppressionfilter"> <property name="file" value="c:/sts-projects/staffing4/trunk/config/suppressions.xml" /> </module> <!-- checks package-info.java file exists each package. --> <module name="javadocpackage" />
...`
suppressions.xml
<suppressions> <suppress checks="javadocmethod" files="candidate_.java" /> </suppressions>
could because checkstyle.xml
above references suppressions.xml
while file mentioned below suppression.xml
?
Comments
Post a Comment