From e5d62191ca2182b7b0615190c5ee6ba1475705dc Mon Sep 17 00:00:00 2001 From: Amir Zarrinkafsh Date: Sat, 23 Jul 2022 07:59:14 +1000 Subject: [PATCH] refactor(utils): remove unused linter rule (#3731) --- internal/utils/const.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/utils/const.go b/internal/utils/const.go index add47e00a..b4b3f0158 100644 --- a/internal/utils/const.go +++ b/internal/utils/const.go @@ -63,7 +63,7 @@ const ( const ( // Hour is an int based representation of the time unit. - Hour = time.Minute * 60 //nolint:revive + Hour = time.Minute * 60 // Day is an int based representation of the time unit. Day = Hour * 24