Intellij Idea代码样式 - 在关闭大括号后插入空白行

Cha*_*ila 6 coding-style intellij-idea

我希望Idea在格式化代码时在结束大括号后插入一个空行.

所以这,

if(condition1)
{
    someMethod();
}
else
{
    anotherMethod();
}
statement1;
statement2;
Run Code Online (Sandbox Code Playgroud)

最终会如此

if(condition1)
{
    someMethod();
}
else
{
    anotherMethod();
}

statement1;
statement2;
Run Code Online (Sandbox Code Playgroud)

我浏览了代码样式对话框,但找不到相关选项.