如何在 googles checkstyle.xml 方法之前添加一个标签

How to add exactly one tab before method in googles checkstyle.xml

所以我希望 maven checkstyle 插件构建在一种方法超过一个选项卡(4 个空格)时失败,简单示例是

class test {
    public void test1 () {} //4 spaces in so thats ok
     public void test2 () {} //5 spaces in i want maven build to fail
}

我找不到可以解决这个问题的人,所以我需要帮助

解决了在TreeWalker下添加这个

<module name="Indentation">
        <property name="basicOffset" value="4"/>
        <property name="braceAdjustment" value="0"/>
        <property name="caseIndent" value="4"/>
        <property name="throwsIndent" value="8"/>
        <property name="lineWrappingIndentation" value="8"/>
        <property name="arrayInitIndent" value="4"/>
    </module>

这就是我解决问题的方法