From 6e8c43fc0fcc0bdd93faac2e88d81d3a575ef576 Mon Sep 17 00:00:00 2001 From: Mike Lady Date: Sat, 3 Jan 2026 17:57:20 -0800 Subject: [PATCH] fix(lint): Add nolint directive for GitHub API spelling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The misspell linter flags "cancelled" but this is the actual value returned by GitHub's Check Runs API (British spelling). Added nolint directive with explanation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- internal/web/fetcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/web/fetcher.go b/internal/web/fetcher.go index 393f73a8..942e3816 100644 --- a/internal/web/fetcher.go +++ b/internal/web/fetcher.go @@ -513,7 +513,7 @@ func determineCIStatus(checks []struct { for _, check := range checks { // Check conclusion first (for completed checks) switch check.Conclusion { - case "failure", "cancelled", "timed_out", "action_required": + case "failure", "cancelled", "timed_out", "action_required": //nolint:misspell // GitHub API returns "cancelled" (British spelling) hasFailure = true case "success", "skipped", "neutral": // Pass