Use when setting up linting for a Go project, configuring golangci-lint, or adding Go checks to a CI/CD pipeline. Also use when starting a new Go project and…
Go Linting Core Principle More important than any "blessed" set of linters: lint consistently across a codebase. Consistent linting helps catch common issues and establishes a high bar for code quality without being unnecessarily prescriptive. Setup Procedure Create .golangci.yml using the configuration below Run golangci-lint run ./... If errors appear, fix them category by category (formatting first, then vet, then style) Re-run until clean
don't have the plugin yet? install it then click "run inline in claude" again.