Go Linting Recommended linters and configuration for Go projects. golangci-lint Setup golangci-lint is the standard linter aggregator for Go. Install it as a tool dependency in your module: Recommended Configuration Place at the project root. This uses the golangci-lint v2 config format: Update under to match your module path. Note: this config uses golangci-lint v2 format ( ). If you are on golangci-lint v1, run to convert, or remove the line and move back into . Makefile Integration If golangci-lint is not a tool dependency: CI Integration GitHub Actions Per-Linter Guidance errcheck Finds u…