代码之家  ›  专栏  ›  技术社区  ›  Freddy

覆盖maven checkstyle中的一条规则

  •  3
  • Freddy  · 技术社区  · 8 年前

    每当我运行它时,我都会收到消息 [...] (coding) HiddenField: 'userId' hides a field. 我想在不创建自己的规则xml文件的情况下隐藏它。

    有没有一种方法可以在不替换整个xml文件的情况下覆盖checkstyle中的规则?

    到目前为止,我的代码是:

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
        <version>2.17</version>
        <configuration>
            <configLocation>google_checks.xml</configLocation>
        </configuration>
    </plugin>
    
    1 回复  |  直到 8 年前
        1
  •  2
  •   Sam    8 年前

    是的,您可以使用其他抑制文件抑制规则。您可以在中看到一个示例 http://maven.apache.org/plugins/maven-checkstyle-plugin/examples/suppressions-filter.html