[#1388] lens: Add nolint annotations
All checks were successful
DCO action / DCO (pull_request) Successful in 59s
Tests and linters / Run gofumpt (pull_request) Successful in 1m9s
Vulncheck / Vulncheck (pull_request) Successful in 1m26s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m12s
Build / Build Components (pull_request) Successful in 2m21s
Tests and linters / Staticcheck (pull_request) Successful in 2m38s
Tests and linters / gopls check (pull_request) Successful in 2m41s
Tests and linters / Lint (pull_request) Successful in 3m25s
Tests and linters / Tests (pull_request) Successful in 4m17s
Tests and linters / Tests with -race (pull_request) Successful in 6m0s

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2024-09-24 15:58:52 +03:00
parent b1d6b4b54a
commit 62c8e6554c
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
}
)