fix(lsp): respect DENO_CERT and other options related to TLS certs (#13467)

Fixes #13437
This commit is contained in:
Kitson Kelly 2022-01-24 11:27:52 +11:00 committed by GitHub
parent 3959d9f2d2
commit 3ec248cff8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 393 additions and 101 deletions

View file

@ -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,