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; }