From 70a24cca85391224281da747e58ad0e0e8a433fb Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Tue, 23 Sep 2025 22:44:50 +0200 Subject: [PATCH] ignore linter warning --- internal/restic/lock_unix.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/restic/lock_unix.go b/internal/restic/lock_unix.go index 4cbbceb6c..393dab5ba 100644 --- a/internal/restic/lock_unix.go +++ b/internal/restic/lock_unix.go @@ -14,6 +14,8 @@ import ( ) // UidGidInt returns uid, gid of the user as a number. +// +//nolint:revive // captialization is correct as is func UidGidInt(u *user.User) (uid, gid uint32, err error) { ui, err := strconv.ParseUint(u.Uid, 10, 32) if err != nil {