括号内的缩进Intellij Idea

时间:2017-03-19 10:52:56

标签: intellij-idea format

让我们假设在Intellij Idea中格式化之后我有这样的代码:

for (j = 0; j < 2; j++)
{
  i = a;
}

while (x < 0)
{
  number = number + 1;
}

function f (a)
{
  return a;
}

如何更改设置,以便格式化后代码如此:

for(j = 0; j < 2; j++)
{
  i = a;
}

while(x < 0)
{
  number = number + 1;
}

function f(a)
{
  return a;
}

1 个答案:

答案 0 :(得分:0)

您可以在JavaScript代码样式设置Spaces:

中对其进行配置

code style