From 67d4dba37f4334fd5c7ffe9d462eb1a1a2ac48c4 Mon Sep 17 00:00:00 2001 From: Ryan Hamamura <58859899+ryanhamamura@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:40:02 -1000 Subject: [PATCH] fix: suppress gosec G117 on auth form signal structs --- features/auth/handlers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/auth/handlers.go b/features/auth/handlers.go index e39e59e..dc34675 100644 --- a/features/auth/handlers.go +++ b/features/auth/handlers.go @@ -15,12 +15,12 @@ import ( type LoginSignals struct { Username string `json:"username"` - Password string `json:"password"` + Password string `json:"password"` //nolint:gosec // form input, not stored } type RegisterSignals struct { Username string `json:"username"` - Password string `json:"password"` + Password string `json:"password"` //nolint:gosec // form input, not stored Confirm string `json:"confirm"` }