feat(lsp): Add support for source.organizeImports#31016
Merged
nayeemrmn merged 16 commits intodenoland:mainfrom Oct 21, 2025
Merged
feat(lsp): Add support for source.organizeImports#31016nayeemrmn merged 16 commits intodenoland:mainfrom
source.organizeImports#31016nayeemrmn merged 16 commits intodenoland:mainfrom
Conversation
nayeemrmn
reviewed
Oct 20, 2025
tests/integration/lsp_tests.rs
Outdated
| let mut client = context.new_lsp_command().build(); | ||
| client.initialize_default(); | ||
|
|
||
| let uri = "file:///a/file.ts"; |
Contributor
There was a problem hiding this comment.
Please use let file = temp_dir.source_file(), file.uri() etc.
See https://github.com/denoland/deno/pull/30989/files#diff-7727f0b2b730c9163774910ded5c83aaa587b4fe8531f9e8254e78384d245edf for an example
source.oganizeImportssource.organizeImports
This was referenced Oct 30, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The removal of unused imports is made conditional based on the presence of existing diagnostics (errors) in the file.
This approach is modeled after the behavior found in the typescript-language-server to prevent unwanted import removal when a file is in an unstable or error state.
Closes #30840