diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-08 10:09:42 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-08 10:09:42 +0200 |
| commit | 80808d42c257823feb873f80d06b325430c9350e (patch) | |
| tree | f622fc46969db9fa332bbc5d3d0d4210d4baebb7 /Magefile.go | |
| parent | af28afa66ae58925eed076072927f54c149dd81e (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.go | 2 |
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) ) |
