From c9d6f7a17fc61ebfb13244bd8a41ad59bbf25eb4 Mon Sep 17 00:00:00 2001 From: Pia Tikmany Date: Fri, 23 Jan 2026 20:15:46 +0530 Subject: [PATCH] fixed-issue-2561 --- harper-ls/src/diagnostics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harper-ls/src/diagnostics.rs b/harper-ls/src/diagnostics.rs index a71f776de..3b2f84420 100644 --- a/harper-ls/src/diagnostics.rs +++ b/harper-ls/src/diagnostics.rs @@ -132,7 +132,7 @@ fn lint_to_diagnostic( range, severity: Some(severity.to_lsp()), code_description: None, - source: Some("Harper".to_owned()), + source: Some(format!("Harper ({})", origin_tag)), code: Some(NumberOrString::String(origin_tag.to_string())), message: lint.message.clone(), related_information: None,