下面是我关于检查样式的代码 - 但它似乎并没有抑制抑制注释行之间的审计。我还尝试使用内联注释 // 而不是 /* */
请帮忙。我尝试了很多方法 - 排列/组合这些方法来解决这个问题。谢谢你。如果您需要更多信息,请告诉我。
/* CHECKSTYLE:OFF */
private abc createTimerChart(String title, String yAxisLabel, XYDataset dataset) {
final abc chart = ChartFactory.createXYLineChart(title, // chart title
"Time Elapsed (" + pollUnit.toString() + ")", // x axis label
yAxisLabel, // y axis label
dataset, // data
PlotOrientation.VERTICAL, true, // include legend
true, // tooltips
false // urls
);
/* CHECKSTYLE:ON */
CONFIG.XML 读取:
<module name="FileContentsHolder">
<module name="SuppressionCommentFilter">
<property name="checkFormat" value="IndentationCheck"/>
</module>
</module>
在检查器下移动 SuppressionCommentFilter 后:
<module name="Checker">
<!-- setting the default severity to warning -->
<property name="severity" value="warning" />
<module name="SuppressionCommentFilter">
<property name="checkFormat" value="Indentation"/>
</module>
<!-- No TAB characters in the source code -->
<module name="FileTabCharacter" />
<!-- List of files to ignore . -->
<!-- TODO Add all auto-generated files to this file -->
<module name="SuppressionFilter">
<property name="file" value="checkstyle/kepler-checkstyle-suppressions.xml"/>
</module>
<module name="TreeWalker">
..
..
..