fix: Address all errcheck and misspell linter errors

This commit is contained in:
Steve Yegge
2025-11-01 23:56:03 -07:00
parent a2361f85e7
commit 2b086951c4
15 changed files with 61 additions and 60 deletions

View File

@@ -21,6 +21,6 @@ func ExtractIssueNumber(issueID string) int {
return 0
}
var num int
fmt.Sscanf(issueID[idx+1:], "%d", &num)
_, _ = fmt.Sscanf(issueID[idx+1:], "%d", &num)
return num
}