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 23556d7b67
commit ba9541dddf

View file

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