Object braces indentation (JavaScript)

Is there way to disable indentation when braces of object are in new line? It looks like this when I add braces in new line and reformat file

const obj =
    {

    };

I want braces to be positioned like this when I reformat file

const obj =
{
};
0

请先登录再写评论。