14 lines
429 B
YAML
14 lines
429 B
YAML
{
|
|
"$schema": "https://json.schemastore.org/lefthook.json",
|
|
"pre-push": {
|
|
"commands": {
|
|
"go-fmt": { "run": "go fmt ./..." },
|
|
"go-vet": { "run": "go vet ./..." },
|
|
"go-test": { "run": "go test ./..." },
|
|
"ts-typecheck": { "run": "bunx tsc -p tsconfig.json --noEmit" },
|
|
"build-assets": { "run": "bun run build:assets" },
|
|
"go-build": { "run": "go build -o server ./cmd/server" }
|
|
}
|
|
}
|
|
}
|