From b1997b01c09d1b408e8c496b02c04e2e44ce806c Mon Sep 17 00:00:00 2001 From: lauener Date: Tue, 11 Jun 2024 08:35:03 +0200 Subject: [PATCH] Remove useless nolint --- group.go | 1 - group/edwards25519/const.go | 2 -- group/edwards25519/fe.go | 2 -- group/edwards25519/scalar.go | 2 -- 4 files changed, 7 deletions(-) diff --git a/group.go b/group.go index ff638c28f..08e61b36b 100644 --- a/group.go +++ b/group.go @@ -1,4 +1,3 @@ -//nolint:interfacebloat // Already a well defined interface package kyber import ( diff --git a/group/edwards25519/const.go b/group/edwards25519/const.go index 1cb4483f3..38c6824aa 100644 --- a/group/edwards25519/const.go +++ b/group/edwards25519/const.go @@ -1,8 +1,6 @@ // Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// -//nolint:lll package edwards25519 import ( diff --git a/group/edwards25519/fe.go b/group/edwards25519/fe.go index a428ffd39..25e8a8226 100644 --- a/group/edwards25519/fe.go +++ b/group/edwards25519/fe.go @@ -1,8 +1,6 @@ // Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// -//nolint:funlen package edwards25519 import ( diff --git a/group/edwards25519/scalar.go b/group/edwards25519/scalar.go index 41915447e..2e1623ded 100644 --- a/group/edwards25519/scalar.go +++ b/group/edwards25519/scalar.go @@ -1,8 +1,6 @@ // Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// -//nolint:funlen package edwards25519 import (