fix(lint): suppress gosec G404 for demo data RNG
CI / test (pull_request) Successful in 2m48s
CI / lint (pull_request) Successful in 1m7s
CI / vulncheck (pull_request) Successful in 56s

This commit is contained in:
2026-05-28 19:00:45 -04:00
parent ff85abb2c9
commit 9c7ed284b3
+1 -1
View File
@@ -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 {