From 12ae35c5b985f6e3a4454d10f66aef5d695e8a6b Mon Sep 17 00:00:00 2001 From: Sysix <3897725+Sysix@users.noreply.github.com> Date: Wed, 4 Mar 2026 22:17:00 +0000 Subject: [PATCH] docs(oxlint/lsp): remove outdated ToDo for `LintOptions.run` (#20012) This TODO was from a time when the language server was shipped as one single binary, including oxlint and oxfmt. We live now in the future and implement one language server for each tool --- apps/oxlint/src/lsp/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/oxlint/src/lsp/options.rs b/apps/oxlint/src/lsp/options.rs index 26cd285b7244f..fcb40d17df349 100644 --- a/apps/oxlint/src/lsp/options.rs +++ b/apps/oxlint/src/lsp/options.rs @@ -24,7 +24,7 @@ pub enum Run { #[derive(Debug, Default, Serialize, Clone)] #[serde(rename_all = "camelCase")] pub struct LintOptions { - pub run: Run, // TODO: the client wants maybe only the formatter, make it optional + pub run: Run, #[serde(skip_serializing_if = "Option::is_none")] pub config_path: Option, #[serde(skip_serializing_if = "Option::is_none")]