This commit is contained in:
Dirk Bäumer 2024-07-30 14:46:58 +02:00 коммит произвёл GitHub
Родитель 148fa60b98
Коммит 4e9d3ad956
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -1,5 +1,7 @@
# Language Server Index Format
[![Build Status](https://dev.azure.com/vscode/lsif-node/_apis/build/status%2Flsif-node?branchName=main)](https://dev.azure.com/vscode/lsif-node/_build/latest?definitionId=50&branchName=main)
The purpose of the Language Server Index Format (LSIF) is it to define a standard format for language servers or other programming tools to dump their knowledge about a workspace. This dump can later be used to answer language server [LSP](https://microsoft.github.io/language-server-protocol/) requests for the same workspace without running the language server itself. Since much of the information would be invalidated by a change to the workspace, the dumped information typically excludes requests used when mutating a document. So, for example, the result of a code complete request is typically not part of such a dump.
A first draft specification can be found [here](https://github.com/Microsoft/language-server-protocol/blob/master/indexFormat/specification.md).

Просмотреть файл

@ -1,8 +1,8 @@
steps:
- task: NodeTool@0
inputs:
versionSpec: '20.9.0'
displayName: 'Use Node.js 20.9.0'
versionSpec: '20.14.0'
displayName: 'Use Node.js 20.14.0'
- script: |
npm ci

Просмотреть файл

@ -1,8 +1,8 @@
steps:
- task: NodeTool@0
inputs:
versionSpec: '20.9.0'
displayName: 'Use Node.js 20.9.0'
versionSpec: '20.14.0'
displayName: 'Use Node.js 20.14.0'
- script: |
npm ci