Auto-fix Go linting issues with golangci-lint
/plugin marketplace add gopherguides/gopher-ai/plugin install go-dev@gopher-ai[path] [--check]claude-opus-4-5-20251101**If `$ARGUMENTS` is empty or not provided:** Fix all auto-fixable linting issues in the Go project. **Usage:** `/lint-fix [path] [options]` **Examples:** - `/lint-fix` - Fix all linting issues in project - `/lint-fix ./pkg/...` - Fix issues in specific package - `/lint-fix --check` - Check without fixing - `/lint-fix --staged` - Fix only staged files **Workflow:** 1. Detect golangci-lint configuration 2. Run linters with auto-fix enabled 3. Run gofmt and goimports 4. Report fixed and remaining issues 5. Optionally stage fixed files Proceed with fixing all linting issues. --- **If ...