所以我希望当一种方法超过(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
}
我找不到可以解决此问题的人,因此我需要帮助
答案 0 :(得分:1)
解决了在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>
这就是我解决问题的方式