Open
Description
From @aymone on July 8, 2016 17:59
- VSCode Version: 1.3
- OS Version: Ubuntu 16.04
- Language: JS
Steps to Reproduce:
1.Create a simple object with functions shorthand like:
const x = {
a(){}
};
2.Use VSCode auto format (ctrl+shift+i):
const x = {
a(){ } // why vscode add this extra space between braces?
};
Any way to disable this?
Copied from original issue: microsoft/vscode#8965