Exécutez n'importe quel Skill dans Manus
en un clic
en un clic
Exécutez n'importe quel Skill dans Manus en un clic
Commencer$pwd:
$ git log --oneline --stat
stars:644
forks:56
updated:10 mars 2026 à 09:37
SKILL.md
| name | go-check |
| description | Run go vet to analyze Go source code for suspicious constructs |
Use go vet to examine Go source code and report suspicious constructs
that the compiler might not catch.
To vet the current package:
go vet ./...
To vet a specific package:
go vet ./pkg/mypackage
-v — verbose output, listing checked files-json — output diagnostics in JSON format-vettool=path — use an external vet toolgo vet runs several built-in analyzers including:
printf — check printf-style format stringsshadow — check for shadowed variablesstructtag — check struct field tags conform to reflect.StructTag.Getunusedresult — check for unused results of calls to certain functions