From 9c7ed284b3b36b016017cc4fb6c4ad5ed0b14c50 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 28 May 2026 19:00:45 -0400 Subject: [PATCH] fix(lint): suppress gosec G404 for demo data RNG --- vhs/backfill/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vhs/backfill/main.go b/vhs/backfill/main.go index 5a32162..b698b93 100644 --- a/vhs/backfill/main.go +++ b/vhs/backfill/main.go @@ -28,7 +28,7 @@ func main() { os.Exit(1) } - rng := rand.New(rand.NewPCG(42, 0)) + rng := rand.New(rand.NewPCG(42, 0)) //nolint:gosec // deterministic seed for reproducible demo data now := time.Now().UTC() if err := backfillHistory(db, rng, now, ids); err != nil {