From bd698b257a548d835fbc2675ff5be5e1a69ff229 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 8 Feb 2026 10:09:42 +0200 Subject: add per-project .hexaiconfig.toml config override and lower coverage target to 80% MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- Magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Magefile.go') 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) ) -- cgit v1.2.3