diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-09-08 12:47:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 12:47:57 +0100 |
commit | 14522fc62886b95431f62d5bd21d70cfaac780ee (patch) | |
tree | 0b45337ec8e0835cd8f8a15932bc48761b7f8950 /cli/lsp/config.rs | |
parent | a9cc4631ca4b5e2bb64943435d0d8242292b168d (diff) |
chore(lsp): remove TestingSettings::enable (#20407)
Diffstat (limited to 'cli/lsp/config.rs')
-rw-r--r-- | cli/lsp/config.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/lsp/config.rs b/cli/lsp/config.rs index 6d47d9502..4aafe0238 100644 --- a/cli/lsp/config.rs +++ b/cli/lsp/config.rs @@ -252,17 +252,12 @@ pub struct TestingSettings { /// a workspace. #[serde(default)] pub args: Vec<String>, - /// Enable or disable the testing API if the client is capable of supporting - /// the testing API. - #[serde(default = "is_true")] - pub enable: bool, } impl Default for TestingSettings { fn default() -> Self { Self { args: vec!["--allow-all".to_string(), "--no-check".to_string()], - enable: true, } } } @@ -971,7 +966,6 @@ mod tests { }, testing: TestingSettings { args: vec!["--allow-all".to_string(), "--no-check".to_string()], - enable: true }, tls_certificate: None, unsafely_ignore_certificate_errors: None, |