迫使')之间的空白和' {'

时间:2014-08-08 11:27:49

标签: checkstyle

在我们的代码中,我们有时会有这个

public class Demo{
    public String value(){
        if (something){  
            while(true){
                ...
            }
        }
    }
}

我目前正在尝试配置我的checkstyle配置,以迫使开发人员在'{'之前有空格:

public class Demo {
    public String value() {
        if (something) {  
            while(true) {
                ...
            }
        }
    }
}

但我无法让它发挥作用。有没有人知道这个特定设置的正确checkstyle配置?我想检查此代码作为我的gradle构建的一部分

1 个答案:

答案 0 :(得分:3)

如果您使用eclipse,您可以查看" Window / Preferences / Java / Code Style / Formatter"。 你可以设置几乎所有东西。

对于你的问题:

Here

如果你想使用checkstyle,你可以去" Window / Preferences / Checkstyle / New ..."。 做一些这样的事情: Here