Checkstyle不适用于SuppressionCommentFilter

下面是我的检查样式代码 – 但它似乎没有抑制抑制注释行之间的审核.我也尝试使用内联注释//而不是/ * * /

请帮忙.我尝试了很多方法 – 排列/组合以解决这个问题.谢谢.
如果您需要更多信息,请告诉我.

/* 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>

移动后抑制评论过滤器检查器:

<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">
..
..
..

最佳答案 缩进检查称为缩进.如果将checkFormat属性更改为Indentation,则会显示工作:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
    "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<module name="Checker">
    <property name="severity" value="warning" />
    <module name="TreeWalker">
        <module name="JavadocType" />
        <module name="Indentation" />
        <module name="FileContentsHolder"/>
    </module>
    <module name="SuppressionCommentFilter">
        <property name="checkFormat" value="Indentation" />
    </module>
</module>

或者,更一般地说,我建议不要设置checkFormat属性,这将使抑制注释抑制该代码块的所有警告.

点赞