Files
orca/.golangci.yml
Jon Chery df58bc25a3 docs(milestone): complete scheduling-streaming (v0.3)
---ci---
project: orca
phase: 3
milestone: v0.3
status: complete
requirements:
  covered: [REQ-022, REQ-030, REQ-032]
  partial: []
---/ci---

v0.3 milestone merged to main. Includes all v0.2 work (P08-P10) that
was previously on the milestone branch but not yet merged to main, plus
the v0.3 completion work (iter.Seq streaming + doctor network/db).

v0.2 phases included: P08 (mTLS), P09 (scheduling), P10 (security scan).
v0.3 phases: P0 (pre-execution), P1 (iter.Seq streaming), P2 (doctor),
P3 (final review+ship).

Total: 40 requirements, all complete. No new go.mod dependencies.
Full test suite passes under -race. gofmt + go vet clean.
2026-08-01 20:06:47 +00:00

40 lines
1.3 KiB
YAML

---
# golangci-lint unified config for orca (v0.2 P03, REQ-040).
# Supersedes per-tool invocations. The linters here are picked for
# the minimalist pillar: only what's needed to catch real bugs and
# security issues, nothing cosmetic.
linters:
disable-all: true
enable:
- gosec # security; integrated with .coreci.yml validate
- govet # standard go vet
- ineffassign # unreachable error returns
- misspell # common typos
- gocritic # opinionated style/lint checks (subset below)
linters-settings:
gosec:
# Severity filter: don't fail on LOW; HIGH is a blocker.
# The P03 plan asks for hardcoded-credential (G101) to be a
# build-breaking finding; the gosec default severity is HIGH
# for G101, so the default config satisfies that.
severity: high
confidence: medium
issues:
# Exclude generated or vendored paths.
exclude-rules:
- path: "_test\\.go"
linters: [gosec]
text: "G404" # Insecure random number source (math/rand) is fine in tests
- path: "internal/security/testdata/"
linters: [gosec, misspell]
run:
# golangci-lint uses .golangci.yml by default; we keep the
# timeout short because the codebase is small. CI overrides
# this in .coreci.yml.
timeout: 5m
tests: true