Coding
PromptBeginner5 minmarkdown
Nano Banana Pro
Agent skill for nano-banana-pro
6
- `make build` - Build all packages
Sign in to like and favorite skills
make build - Build all packagesmake test - Run all tests; for single test: go test -v ./path/to/pkg -run TestNamemake test-race - Run with race detectormake lint - Run golangci-lint (also run make fmt, make vet before committing)make fmt to format code with gofmt before committingvar (ErrX = errors.New("..."))t.Run(), t.Parallel() where appropriatemake check (fmt-check, vet, lint) and make test before committing