style: fix struct field alignment in activeTask

Align streamedChunks and messageContent fields to match
the existing padding pattern in the activeTask struct.
Fixes gci linter failure.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
dj-oyu 2026-03-03 12:08:37 +09:00
parent 659ff3c1a1
commit 2249e15115

View file

@ -53,8 +53,8 @@ type activeTask struct {
lastError *toolLogEntry // sticky: most recent error, persists across iterations lastError *toolLogEntry // sticky: most recent error, persists across iterations
projectDir string // detected from exec cd target (authoritative) projectDir string // detected from exec cd target (authoritative)
fileCommonDir string // LCP of file paths relative to workspace (fallback) fileCommonDir string // LCP of file paths relative to workspace (fallback)
streamedChunks bool // true after onChunk fires at least once streamedChunks bool // true after onChunk fires at least once
messageContent string // last content sent by the message tool (for inclusion in completion) messageContent string // last content sent by the message tool (for inclusion in completion)
mu sync.Mutex mu sync.Mutex
} }