因此,当一种方法在(4 个空格)中超过一个选项卡时,我希望 maven checkstyle 插件构建失败,简单示例是
class test {
public void test1 () {} //4 spaces in so thats ok
public void test2 () {} //5 spaces in i want maven build to fail
}
我找不到能解决这个问题的人,所以我需要帮助
因此,当一种方法在(4 个空格)中超过一个选项卡时,我希望 maven checkstyle 插件构建失败,简单示例是
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>
这就是我解决问题的方法