317 B
317 B
description
| description |
|---|
| Run Go linters on the codebase |
Run linting tools on the RelSpec codebase:
- First run
gofmt -l .to check formatting - If golangci-lint is available, run
golangci-lint run ./... - Run
go vet ./...to check for suspicious constructs
Report any issues found and suggest fixes if needed.