0

是否有任何eslint 规则强制在)and之间留出空间{

无效的

if (true){
  ...
}

function doSomething(){
  ...
}

有效的

if (true) {
  ...
}

function doSomething() {
  ...
}
4

1 回答 1

1

space-before-blocks规则就是这样做的。

于 2015-06-27T04:01:04.310 回答