Files
2026-03-28 00:39:24 -04:00

25 lines
507 B
YAML

version: '3'
tasks:
lint:
desc: Run Go code style checks (fmt, vet, staticcheck)
cmds:
- go fmt ./...
- go vet ./...
- staticcheck ./...
silent: true
gen-platforms:
desc: Generate platforms.json from markdown docs
cmds:
- go run tools/gen-platforms/main.go
silent: true
hooks-setup:
desc: Install git hooks for development
cmds:
- git config core.hooksPath .githooks
- echo "Git hooks installed from .githooks/"
silent: true