[#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 {
// key and value used for record dump.
// nolint:unused
key, value []byte
}

View file

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