Bumping golint

This commit is contained in:
Mike Farah
2026-03-21 09:25:31 +11:00
parent 34d3a29308
commit 6a965bc39a
5 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -911,7 +911,7 @@ func stringsEqual(a, b []string) bool {
return false
}
for i := range a {
if a[i] != b[i] {
if a[i] != b[i] { //nolint:gosec // G602 false positive: b length equality is checked above
return false
}
}