-
Notifications
You must be signed in to change notification settings - Fork 29.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets not behaving correctly #4279
Comments
Moving to TS. We pass the right option to the tsserver. |
This issue was moved to microsoft/TypeScript#7540 |
Now that InsertSpaceAfterOpeningAndBeforeClosingNonemptyBraces have been added to TypeScript, I think this issue should be reopened to add it to VS Code too. |
Ah, #18043 tracks this, waiting on microsoft/TypeScript#13275 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
VSCode Version: 0.10.12
OS Version: OSX
Test new Java/Type-script settings #4022
Steps to Reproduce:
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true
to the workspace settings.if (x) {var x = 1;}
if (x) { var x = 1; }
if (x) { var x = 1; }
but expectedif (x) {var x = 1;}
The text was updated successfully, but these errors were encountered: