We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TS Template added by @mjbvz
TypeScript Version: 4.2.0-dev.20201103
Search Terms
When running TypeScript's "Organize Imports" action on this file from the LSP client:
https://github.com/microsoft/vscode-languageserver-node/blob/05fa3b55538acaa87647111d528d39ddbd86caa2/client/src/common/client.ts
It makes a mess of the file, inserting lots of blank lines in between each class:
I've disabled all other extensions but it still occurs. It shows TS 4.0.3 in the status bar if that's important.
The text was updated successfully, but these errors were encountered:
Minimal repo using 4.2.0-dev.20201103:
vars.ts:
vars.ts
export const a = 1 export const b = 1 export const c = 1
index.ts
import { a, b as B, c, c as C, b } from './vars' console.log(a, B, b, c, C)
Organize imports in index.ts adds a blank line:
import { a, b as B, b, c, c as C } from './vars' console.log(a, B, b, c, C)
Sorry, something went wrong.
armanio123
Successfully merging a pull request may close this issue.
TS Template added by @mjbvz
TypeScript Version: 4.2.0-dev.20201103
Search Terms
When running TypeScript's "Organize Imports" action on this file from the LSP client:
https://github.com/microsoft/vscode-languageserver-node/blob/05fa3b55538acaa87647111d528d39ddbd86caa2/client/src/common/client.ts
It makes a mess of the file, inserting lots of blank lines in between each class:
I've disabled all other extensions but it still occurs. It shows TS 4.0.3 in the status bar if that's important.
The text was updated successfully, but these errors were encountered: