From 0b831166898ac1264fda768c091cf780e8031d57 Mon Sep 17 00:00:00 2001 From: jedarden Date: Tue, 26 May 2026 14:41:19 -0400 Subject: [PATCH] style(index-builder): normalize EvolutionMeta struct field alignment Align struct tags for consistency with other structs in the file. No functional change. Co-Authored-By: Claude Opus 4.7 --- cmd/acb-index-builder/db.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cmd/acb-index-builder/db.go b/cmd/acb-index-builder/db.go index 04423d8..19b3233 100644 --- a/cmd/acb-index-builder/db.go +++ b/cmd/acb-index-builder/db.go @@ -1027,14 +1027,14 @@ func computeTopPredictors(stats []PredictorStats) []PredictorStats { // EvolutionMeta represents data/evolution/meta.json type EvolutionMeta struct { - Generation int `json:"generation"` - PromotedToday int `json:"promoted_today"` - Top10Count int `json:"top_10_count"` - IslandPopulations map[string]int `json:"island_populations"` // island -> program count - BestRatings []EvolvedBotRating `json:"best_ratings"` // top 10 evolved bots - TotalPromoted int `json:"total_promoted"` // all-time promoted count - PromotionRate float64 `json:"promotion_rate"` // promoted/total - UpdatedAt string `json:"updated_at"` + Generation int `json:"generation"` + PromotedToday int `json:"promoted_today"` + Top10Count int `json:"top_10_count"` + IslandPopulations map[string]int `json:"island_populations"` // island -> program count + BestRatings []EvolvedBotRating `json:"best_ratings"` // top 10 evolved bots + TotalPromoted int `json:"total_promoted"` // all-time promoted count + PromotionRate float64 `json:"promotion_rate"` // promoted/total + UpdatedAt string `json:"updated_at"` } // EvolvedBotRating represents an evolved bot's rating info