[#1388] lens: Add nolint annotations

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2024-09-24 15:58:52 +03:00 committed by Dmitrii Stepanov
parent 4fbfffd44c
commit 772b471aab
2 changed files with 4 additions and 0 deletions

View file

@ -7,6 +7,8 @@ import (
) )
type RawEntry struct { type RawEntry struct {
// key and value used for record dump.
// nolint:unused
key, value []byte key, value []byte
} }

View file

@ -16,6 +16,8 @@ type (
DefaultRecord struct { DefaultRecord struct {
addr oid.Address addr oid.Address
// data used for record dump.
// nolint:unused
data []byte data []byte
} }
) )