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
doc.go
golint ./...
package comment should be of the form "Package swagger ..."
// +build !codeanalysis
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Add package name in
doc.go
to pass Go linter checksCurrently
golint ./...
is giving the following error:Another option is to add
// +build !codeanalysis
during generating the fileUsing this approach prevents parsing of the files, and significantly reduced our memory consumption during build time.
The linter-related packages and their versions I use currently
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7
The text was updated successfully, but these errors were encountered: