AgentSkillsCN

go-linting

Go静态分析。通往特定工具的路径。

SKILL.md
--- frontmatter
name: go-linting
description: Go static analysis. Routes to specific tools.

Linting

Route by Tool

Quick Check

  • go vet ./... passes
  • go fmt applied
  • No unchecked errors

Common Workflow

bash
go fmt ./...
go vet ./...
staticcheck ./...

Install Tools

bash
go install honnef.co/go/tools/cmd/staticcheck@latest
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest