diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2021-05-18 06:45:13 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 06:45:13 +1000 |
| commit | 27e7bb090e9d771c8f3e4ddba4dd956a4a56855b (patch) | |
| tree | 82cb99c1406fc94850bc3d5d66f8db40300860de /cli/tests/lsp/initialize_params_registry.json | |
| parent | aecdbba2c25d08d771a4e4fbeb62cac60015a3bd (diff) | |
refactor: share test harness for lsp between bench and integration (#10659)
Diffstat (limited to 'cli/tests/lsp/initialize_params_registry.json')
| -rw-r--r-- | cli/tests/lsp/initialize_params_registry.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/cli/tests/lsp/initialize_params_registry.json b/cli/tests/lsp/initialize_params_registry.json new file mode 100644 index 000000000..38777b3d4 --- /dev/null +++ b/cli/tests/lsp/initialize_params_registry.json @@ -0,0 +1,58 @@ +{ + "processId": 0, + "clientInfo": { + "name": "test-harness", + "version": "1.0.0" + }, + "rootUri": null, + "initializationOptions": { + "enable": true, + "codeLens": { + "implementations": true, + "references": true + }, + "importMap": null, + "lint": true, + "suggest": { + "autoImports": true, + "completeFunctionCalls": false, + "names": true, + "paths": true, + "imports": { + "hosts": { + "http://localhost:4545/": true + } + } + }, + "unstable": false + }, + "capabilities": { + "textDocument": { + "codeAction": { + "codeActionLiteralSupport": { + "codeActionKind": { + "valueSet": [ + "quickfix" + ] + } + }, + "isPreferredSupport": true, + "dataSupport": true, + "resolveSupport": { + "properties": [ + "edit" + ] + } + }, + "foldingRange": { + "lineFoldingOnly": true + }, + "synchronization": { + "dynamicRegistration": true, + "willSave": true, + "willSaveWaitUntil": true, + "didSave": true + } + } + } +} |
