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
Since running the linter will be required for contributions, we should be explicit about the requirements for the development environment:
$ make lint golint -set_exit_status make: golint: No such file or directory make: *** [lint] Error 1
otelcol-lightstep-receiver/Makefile
Lines 35 to 37 in da12e05
golint
golangci-lint
For godoc the behavior is different:
godoc
$ make godoc go install github.com/princjef/gomarkdoc/cmd/gomarkdoc@latest go: downloading github.com/princjef/gomarkdoc v1.1.0 go: downloading github.com/princjef/termdiff v0.1.0 [...] go: downloading gopkg.in/warnings.v0 v0.1.2 gomarkdoc --output ./docs/receiver.md ./ make: gomarkdoc: No such file or directory make: *** [godoc] Error 1
Despite the install step, the command was still not available. (I can build and run skipper, but have no explicit env variables set for go).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since running the linter will be required for contributions, we should be explicit about the requirements for the development environment:
$ make lint golint -set_exit_status make: golint: No such file or directory make: *** [lint] Error 1
otelcol-lightstep-receiver/Makefile
Lines 35 to 37 in da12e05
golint
andgolangci-lint
.For
godoc
the behavior is different:$ make godoc go install github.com/princjef/gomarkdoc/cmd/gomarkdoc@latest go: downloading github.com/princjef/gomarkdoc v1.1.0 go: downloading github.com/princjef/termdiff v0.1.0 [...] go: downloading gopkg.in/warnings.v0 v0.1.2 gomarkdoc --output ./docs/receiver.md ./ make: gomarkdoc: No such file or directory make: *** [godoc] Error 1
Despite the install step, the command was still not available. (I can build and run skipper, but have no explicit env variables set for go).
The text was updated successfully, but these errors were encountered: