在这种情况下,有没有办法让PhpStorm在新行上放置大括号?
var test = {
'*':
{
// something
}
}
而不是制作(重新格式化后):
var test = {
'*': {
// something
}
}