This commit is contained in:
Aldo Mateli 2025-04-20 20:09:48 +01:00
parent 98125cc09c
commit 678ff6a165
1 changed files with 1 additions and 1 deletions

View File

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