防止Webstorm中不必要的空白区域

时间:2012-09-17 13:10:00

标签: intellij-idea code-formatting webstorm

在Webstorm中自动格式化JavaScript文件时,有没有办法删除不必要的空格,例如两个空格而不是一个空格

function   test () {
  return  'test'  ;
}

function test() {
  return 'test';
}

1 个答案:

答案 0 :(得分:2)

目前它被格式化为:

function test() {
  return  'test';
}

我可以看到唯一的问题是return之后的空格数。我已经为它创建了一个新问题,请star/vote。如果您发现格式无法按预期工作的其他情况,请随意report them directly to YouTrack