我想使用// @ checkstyle:off和// @ checkstyle:on来免除某些部分代码被checkstyle检查,但它仍然在抱怨。
public void invoke() {
//@checkstyle:off
String foo="Don't scan me please";
//@checkstyle:on
}
答案 0 :(得分:1)
http://checkstyle.sourceforge.net/config_filters.html#SuppressionCommentFilter。请将模块添加到checkstyle.xml
您可以在代码中添加注释以关闭checkstyle(在各个级别),然后通过在代码中使用注释再次返回。 E.g。
count_of_lines_in_any_textFile = sum(1 for l in open('any_textFile.txt'))