From 678ff6a165c6c957efd6d123fa9ff8cfce7931dc Mon Sep 17 00:00:00 2001 From: Aldo Mateli Date: Sun, 20 Apr 2025 20:09:48 +0100 Subject: [PATCH] wip --- crates/ruff_linter/src/rules/eradicate/detection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_linter/src/rules/eradicate/detection.rs b/crates/ruff_linter/src/rules/eradicate/detection.rs index 0066a52ec2..e1b56827e1 100644 --- a/crates/ruff_linter/src/rules/eradicate/detection.rs +++ b/crates/ruff_linter/src/rules/eradicate/detection.rs @@ -105,7 +105,7 @@ pub(crate) fn comment_contains_code(line: &str, task_tags: &[String]) -> bool { return false; } - // Ignore lines with references to issues. + // Ignore lines with references to github/gitlab/jira (#999, PROJ-123, !54). if ISSUE_REFERENCE.is_match(line) { return false; }