Checkstyle 关闭不适用于 Checkstyle Gradle

Checkstyle off is not working for Checkstyle Gradle

我想使用 //@checkstyle:off 和 //@checkstyle:on 来免除某些代码部分被 checkstyle 检查,但它仍然在抱怨。

public void invoke() {
    //@checkstyle:off
    String foo="Don't scan me please";
    //@checkstyle:on
}

http://checkstyle.sourceforge.net/config_filters.html#SuppressionCommentFilter。请将模块添加到您的 checkstyle.xml

您可以在代码中添加注释以关闭 checkstyle(在不同级别),然后通过在代码中使用注释再次打开。例如

//CHECKSTYLE:OFF
public void someMethod(String arg1, String arg2, String arg3, String arg4) {
//CHECKSTYLE:ON