是否有任何eslint 规则强制在)
and之间留出空间{
?
无效的
if (true){
...
}
function doSomething(){
...
}
有效的
if (true) {
...
}
function doSomething() {
...
}
是否有任何eslint 规则强制在)
and之间留出空间{
?
if (true){
...
}
function doSomething(){
...
}
if (true) {
...
}
function doSomething() {
...
}