ABOUTME: Complete Go development guide - code, design, concurrency, performance, review ABOUTME: Modern Go (1.22-1.26): stdlib router, Green Tea GC, fgprof, easyjson, pgx batching
Why gofmt before build: Code generators (sqlc, protoc) may produce code gofmt disagrees with. Always run gofmt -w after regeneration and before commit.
1.22: Loop var fix (each iteration owns its variable). Range over int: for i := range 10. Stdlib router: mux.HandleFunc("GET /api/v1/feed/{id}", h) + r.PathValue("id").
Sviluppo Go: convenzioni, architettura, concorrenza, prestazioni e revisione del codice. Da utilizzare quando si lavora con file .go, go.mod o quando l'utente richiede informazioni su goroutine, canali, gestione degli errori e interfacce. Fonte: maroffo/claude-forge.