From 99fe21f5e053a0525bf36290cf25510146ce4c14 Mon Sep 17 00:00:00 2001 From: Benjamin Wang Date: Tue, 27 Dec 2022 14:51:10 +0800 Subject: [PATCH] Disabled linter on field 'dataref' Signed-off-by: Benjamin Wang --- db.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/db.go b/db.go index 9b2f9d1..328b2ce 100644 --- a/db.go +++ b/db.go @@ -129,6 +129,9 @@ type DB struct { path string openFile func(string, int, os.FileMode) (*os.File, error) file *os.File + // `dataref` isn't used at all on Windows, and the golangci-lint + // always fails on Windows platform. + //nolint dataref []byte // mmap'ed readonly, write throws SEGV data *[maxMapSize]byte datasz int