diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2022-01-24 11:27:52 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 11:27:52 +1100 |
commit | 3ec248cff8fff1a41c2b2ad5301e7aa3db00c6a8 (patch) | |
tree | 549b791b6d9718a51d3f7c8258e076beafab64df /cli/lsp/repl.rs | |
parent | 3959d9f2d285bd45beb34074cf61090e2c4976dc (diff) |
fix(lsp): respect DENO_CERT and other options related to TLS certs (#13467)
Fixes #13437
Diffstat (limited to 'cli/lsp/repl.rs')
-rw-r--r-- | cli/lsp/repl.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/lsp/repl.rs b/cli/lsp/repl.rs index b4bc1daf7..0a2603298 100644 --- a/cli/lsp/repl.rs +++ b/cli/lsp/repl.rs @@ -277,11 +277,14 @@ pub fn get_repl_workspace_settings() -> WorkspaceSettings { WorkspaceSettings { enable: true, config: None, + certificate_stores: None, cache: None, import_map: None, code_lens: Default::default(), internal_debug: false, lint: false, + tls_certificate: None, + unsafely_ignore_certificate_errors: None, unstable: false, suggest: CompletionSettings { complete_function_calls: false, |