Is there a way to disable removing space before parentheses when editing a function in VS Code?
Lets say I have a function
function render () { // some code here}
When I start editing it, VS Code removes the space before parentheses and transforms this code to:
function render() { // some code here}
Is there a way to disable this behavior?