summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-08 10:09:42 +0200
committerPaul Buetow <paul@buetow.org>2026-02-08 10:09:42 +0200
commitbd698b257a548d835fbc2675ff5be5e1a69ff229 (patch)
treef622fc46969db9fa332bbc5d3d0d4210d4baebb7 /Magefile.go
parent04c42582018f0295935701215490236e789cf5e3 (diff)
add per-project .hexaiconfig.toml config override and lower coverage target to 80%
Introduce support for a .hexaiconfig.toml file at the git repository root that selectively overrides the global config. Precedence order: defaults → global config → project config → env vars. Also lower the coverage threshold from 85% to 80%. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/Magefile.go b/Magefile.go
index fdf5389..1644f08 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -18,7 +18,7 @@ import (
var (
Default = Build // Default target: build all binaries.
- coverageThreshold float64 = 85
+ coverageThreshold float64 = 80
coveragePrinted = make(chan struct{}, 1)
)