# Go Linting

> Go static analysis. Routes to specific tools. Use when this capability is needed.

- Skill: `tomevault-io/go-linting` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/go-linting`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/go-linting/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/go-linting

---


# Linting

## Route by Tool
- go vet warnings → see [vet/](vet/)
- staticcheck issues → see [staticcheck/](staticcheck/)
- golangci-lint setup → see [golangci/](golangci/)

## 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
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/jamesprial) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

