Go Fmt

Go Fmt

rootwarp 81f8d70 313 B Updated

File contents

/go-fmt

Format Go source files.

Instructions

Format all Go files in the project:

gofmt -w .

Or use goimports if available for better import management:

if command -v goimports &> /dev/null; then
    goimports -w .
else
    gofmt -w .
fi

rootwarp/claude-code-plugins-monorepo/tree/main/plugins/go/skills/go-fmt commit 81f8d705fa

Frequently asked questions

npx skillmds@latest add rootwarp/go-fmt