检查样式抑制注释不忽略指定规则的筛选器
2022-09-03 18:04:18
我有一个检查样式.xml看起来像这样:
<module name="Checker">
....
<module name="SuppressionCommentFilter">
<property name="offCommentFormat" value="CSOFF\: ([\w\|]+)"/>
<property name="onCommentFormat" value="CSON\: ([\w\|]+)"/>
<property name="checkFormat" value="$1"/>
</module>
<module name="TreeWalker">
<module name="LineLength">
<property name="max" value="200"/>
</module>
....
</module>
</module>
在我的一个班级中,我有一行超过200个字符,并在其周围放置以下内容:
// CSOFF: LineLength
...
// CSON: LineLength
但是,有问题的行不会作为checkstyle的一部分被忽略。
我在pom中指定了以下内容.xml:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.6</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</build>
并执行此操作:
mvn checkstyle:checkstyle