Go Lint

Go Lint

rootwarp 76d6f55 327 B Updated

File contents

/go-lint

Run linters on the Go project.

Instructions

Run golangci-lint if available, otherwise use go vet:

if command -v golangci-lint &> /dev/null; then
    golangci-lint run ./...
else
    go vet ./...
fi

Analyze any lint warnings or errors and suggest fixes.

rootwarp/claude-code-plugins-monorepo/tree/main/plugins/go/skills/go-lint commit 76d6f552f2

Frequently asked questions

npx skillmds@latest add rootwarp/go-lint