Go Project Conventions

Project conventions with module caching, linting, security checks, and tests via Make Use when this capability is needed.

tomevault-io Updated

File contents

Skill: Go project conventions

Goal

Provide a standard Go workflow with module caching, linting, security checks, and tests driven by Make.

Make targets (recommended)

  • make depsgo mod download + go mod tidy
  • make vetgo vet ./...
  • make lintfmt + vet + staticcheck (if available)
  • make securitygosec ./... (if available)
  • make testgo test -v ./...
  • make checkmake lint && make test (standard validation pipeline)

Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/rcarmo--gotel--go commit 41f1bf4895

Frequently asked questions

npx skillmds@latest add tomevault-io/go-project-conventions-2