We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go.mod
The issue was introduced with #25. Cmd breaks when the go.mod is located in a subpath. Example structure:
project ├── .git └── go ├── go.mod └── main.go
One way to solve this would be finding the go mod root. go env GOMOD returns the correct value or os.DevNull if if can't find one.
go env GOMOD
os.DevNull
The text was updated successfully, but these errors were encountered:
I opened a fix PR in golangci-lint golangci/golangci-lint#3748 and propose the changes from v0.0.8 are partially reverted.
Sorry, something went wrong.
fix(nvim): use golangci-lint via nvim-lint
48d6b37
Apparently, there's an issue with the golangci-lint LSP: nametake/golangci-lint-langserver#33
1670b25
No branches or pull requests
The issue was introduced with #25. Cmd breaks when the go.mod is located in a subpath. Example structure:
One way to solve this would be finding the go mod root.
go env GOMOD
returns the correct value oros.DevNull
if if can't find one.The text was updated successfully, but these errors were encountered: