1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 15:02:09 +02:00

go-vet: add page (#6832)

This commit is contained in:
Morgan Howard 2021-10-11 20:31:24 -07:00 committed by GitHub
parent bb83c2b705
commit b5aa93b291
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

29
pages/common/go-vet.md Normal file
View file

@ -0,0 +1,29 @@
# go vet
> Check Go source code and report suspicious constructs (e.g. lint your Go source files).
> Go vet returns a non-zero exit code if problems are found; returns a zero exit code if no problems are found.
> More information: <https://pkg.go.dev/cmd/vet>.
- Check the Go package in the current directory:
`go vet`
- Check the Go package in the specified path:
`go vet {{path/to/file_or_directory}}`
- List available checks that can be run with go vet:
`go tool vet help`
- View details and flags for a particular check:
`go tool vet help {{check_name}}`
- Display offending lines plus N lines of surrounding context:
`go vet -c={{N}}`
- Output analysis and errors in JSON format:
`go vet -json`