summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/initialize_request.json
blob: 46f96a2c566c80ea04fad41e37c165e9d52d5e74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "initialize",
  "params": {
    "processId": 0,
    "clientInfo": {
      "name": "test-harness",
      "version": "1.0.0"
    },
    "rootUri": null,
    "initializationOptions": {
      "enable": true,
      "codeLens": {
        "references": true
      },
      "lint": true,
      "importMap": null,
      "unstable": false
    },
    "capabilities": {
      "textDocument": {
        "synchronization": {
          "dynamicRegistration": true,
          "willSave": true,
          "willSaveWaitUntil": true,
          "didSave": true
        }
      }
    }
  }
}