You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following revive rules don't work as expected:
context-keys-type
errorf
modifies-value-receiver
range-val-address
string-of-int
time-equal
time-naming
unhandled-error
var-declaration
The problem seems to only happen with the integration of revive inside golangci-lint (I was not able to reproduce the behavior with revive as CLI).
The problem is hidden because an error is ignored inside revive, so it is not possible to see the problem.
The problem cannot be easily detected by tests because it requires using 2 different GOROOT + GOPATH + Go versions, and using -trimpath during compilation (the problem also happens without -trimpath but the cases are more complex to obtain).
For now, I have no idea how to fix that, but I'm working on it.
$ go version && go env go version go1.23.7 linux/amd64GO111MODULE='on'GOARCH='amd64'GOBIN=''GOCACHE='/home/ldez/.cache/go-build'GOENV='/home/ldez/.config/go/env'GOEXE=''GOEXPERIMENT=''GOFLAGS=''GOHOSTARCH='amd64'GOHOSTOS='linux'GOINSECURE=''GOMODCACHE='/home/ldez/sources/go/pkg/mod'GONOPROXY=''GONOSUMDB=''GOOS='linux'GOPATH='/home/ldez/sources/go'GOPRIVATE=''GOPROXY='https://proxy.golang.org,direct'GOROOT='/home/ldez/.gvm/gos/go1.23.7'GOSUMDB='sum.golang.org'GOTMPDIR=''GOTOOLCHAIN='auto'GOTOOLDIR='/home/ldez/.gvm/gos/go1.23.7/pkg/tool/linux_amd64'GOVCS=''GOVERSION='go1.23.7'GODEBUG=''GOTELEMETRY='on'GOTELEMETRYDIR='/home/ldez/.config/go/telemetry'GCCGO='gccgo'GOAMD64='v1'AR='ar'CC='gcc'CXX='g++'CGO_ENABLED='1'GOMOD='/home/ldez/sources/experimental/fiber/go.mod'GOWORK=''CGO_CFLAGS='-O2 -g'CGO_CPPFLAGS=''CGO_CXXFLAGS='-O2 -g'CGO_FFLAGS='-O2 -g'CGO_LDFLAGS='-O2 -g'PKG_CONFIG='pkg-config'GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build3489667529=/tmp/go-build -gno-record-gcc-switches
Verbose output of running
$ golangci-lint cache clean
$ golangci-lint run -v
A minimal reproducible example or link to a public repository
Welcome
typecheck
section of the FAQ.How did you install golangci-lint?
Official binary
Description of the problem
The following
revive
rules don't work as expected:context-keys-type
errorf
modifies-value-receiver
range-val-address
string-of-int
time-equal
time-naming
unhandled-error
var-declaration
The problem seems to only happen with the integration ofrevive
insidegolangci-lint
(I was not able to reproduce the behavior withrevive
as CLI).The problem is hidden because an error is ignored inside
revive
, so it is not possible to see the problem.The problem cannot be easily detected by tests because it requires using 2 different
GOROOT
+GOPATH
+ Go versions, and using-trimpath
during compilation (the problem also happens without-trimpath
but the cases are more complex to obtain).For now, I have no idea how to fix that, but I'm working on it.
Related to golangci/golangci-lint-action#1197
Version of golangci-lint
Configuration
Go environment
Verbose output of running
A minimal reproducible example or link to a public repository
Validation
Supporter
The text was updated successfully, but these errors were encountered: