diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2021-06-24 22:41:04 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-24 22:41:04 +1000 |
| commit | 8ed83cba7e2eeabb3af1fd65579dacd782f50644 (patch) | |
| tree | 30d93dbea20fd4a20cd5dc262a069fdcb456fdb0 /cli/tests/lsp/initialize_params_bad_config_option.json | |
| parent | 40310eaebfaa38eff929213f2d6b912b87ad3edf (diff) | |
fix(lsp): handle invalid config setting better (#11104)
Fixes #11100
Fixes #10808
Diffstat (limited to 'cli/tests/lsp/initialize_params_bad_config_option.json')
| -rw-r--r-- | cli/tests/lsp/initialize_params_bad_config_option.json | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/cli/tests/lsp/initialize_params_bad_config_option.json b/cli/tests/lsp/initialize_params_bad_config_option.json new file mode 100644 index 000000000..fbff31566 --- /dev/null +++ b/cli/tests/lsp/initialize_params_bad_config_option.json @@ -0,0 +1,62 @@ +{ + "processId": 0, + "clientInfo": { + "name": "test-harness", + "version": "1.0.0" + }, + "rootUri": null, + "initializationOptions": { + "enable": true, + "codeLens": { + "implementations": true, + "references": true, + "test": true + }, + "config": "bad_tsconfig.json", + "importMap": null, + "lint": true, + "suggest": { + "autoImports": true, + "completeFunctionCalls": false, + "names": true, + "paths": true, + "imports": { + "hosts": {} + } + }, + "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 + } + }, + "workspace": { + "configuration": true, + "workspaceFolders": true + } + } +} |
