Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 364 Bytes

File metadata and controls

22 lines (13 loc) · 364 Bytes

AGENTS.md

Essential Commands

# Test
gotestsum --format pkgname-and-test-fails --format-hide-empty-pkg -- ./...

# Test (verbose)
gotestsum --format testdox --format-hide-empty-pkg -- ./...

# Watch mode
gotestsum --watch --format pkgname-and-test-fails --format-hide-empty-pkg -- ./...

# Lint
golangci-lint run ./...

# Format
golangci-lint fmt