upgrade linter to 2.13.1

Signed-off-by: Ryan Richard <richardry@vmware.com>
This commit is contained in:
Ryan Richard
2026-08-27 14:48:37 -07:00
parent 3ba58efa59
commit 4a18bd939d
13 changed files with 14 additions and 23 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
// Copyright 2021-2024 the Pinniped contributors. All Rights Reserved.
// Copyright 2021-2026 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package controllerinit
@@ -78,7 +78,7 @@ func anyToFullname(a any) string {
}
func typeToFullname(typ reflect.Type) string {
if typ.Kind() == reflect.Ptr {
if typ.Kind() == reflect.Pointer {
typ = typ.Elem()
}
return typ.PkgPath() + "." + typ.Name()