Go Linting

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

tomevault-io Updated

File contents

Linting

Route by Tool

  • go vet warnings → see vet/
  • staticcheck issues → see staticcheck/
  • golangci-lint setup → see golangci/

Quick Check

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

Common Workflow

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

Install Tools

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 — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/jamesprial--claudefiles--linting commit c9f89f3897

Frequently asked questions

npx skillmds@latest add tomevault-io/go-linting