When I use autoformat function in VS Code editor it insert spaces before curly brackets like this:
From:
<Button onClick={this.callMyFunc.bind(this, screenSet.index)}>Add</Button>
To:
<Button onClick={this.callMyFunc.bind(this, screenSet.index) }>Add</Button>
From:
))}
To:
)) }
I can't find option what settings this... Can anyone help me, please?