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 + install golangci-lint and gosec if missing
  • make vetgo vet ./...
  • make lintgolangci-lint run --timeout=5m
  • make securitygosec ./...
  • make testgo test -v -race -coverprofile=coverage.out ./...
  • make checkmake vet && make lint

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

tomevault-io/skills-registry/tree/main/rcarmo--agentbox--go commit d4ea975f01

Frequently asked questions

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