typescript-language-server
Version:
Language Server Protocol (LSP) implementation for TypeScript using tsserver
19 lines • 884 B
JavaScript
/*
* Copyright (C) 2018 TypeFox and others.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*/
import * as lsp from 'vscode-languageserver';
import { toTextDocumentEdit } from './protocol-translation.js';
import { CodeActionKind } from './utils/types.js';
export function provideOrganizeImports(response, documents) {
if (!response || response.body.length === 0) {
return [];
}
// Return a single code action with potentially multiple edits.
return [
lsp.CodeAction.create('Organize imports', { documentChanges: response.body.map(edit => toTextDocumentEdit(edit, documents)) }, CodeActionKind.SourceOrganizeImportsTs.value)
];
}
//# sourceMappingURL=organize-imports.js.map