docs/docs/tools/cli/go/lint/example.md
Snider 5b5beaf36f refactor: move agent, mcp, ide, cli, api under tools/ directory
URLs now /tools/agent/, /tools/mcp/, /tools/cli/, etc.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-11 11:50:26 +00:00

209 B

Go Lint Examples

# Check
core go lint

# Auto-fix
core go lint --fix

Configuration

.golangci.yml:

linters:
  enable:
    - gofmt
    - govet
    - errcheck
    - staticcheck