Static safety/lint runner for the BlockNinja codebase. ~25 invariant
checks across Go and frontend sources. Was at git.dev.alexdunmow.com:block/ninja
in backend/cmd/check-safety/ until the 2026-06-06 consolidation moved
the BlockNinja repos under a shared ~/src/blockninja/ parent.
This repo is the standalone extraction:
- Own go.mod (git.dev.alexdunmow.com/block/check-safety, go 1.26.4)
- Vendored internal/{helpers,theme} from CMS (Go's internal/ rule
blocks cross-module imports; vendoring is the workaround)
- CLI contract unchanged: `check-safety <target-dir> [--flags]`
- CMS Makefile shells into ../check-safety for safety-check /
install-safety-checker targets
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func init() {
|
|
register(Check{
|
|
Seq: 25,
|
|
ID: "2f",
|
|
Title: "sqlc compile and buf generate",
|
|
Run: func(ctx *ScanContext, rep *Reporter) {
|
|
// Check 2f: sqlc compile and buf generate
|
|
fmt.Println("=== Check 2f: sqlc compile and buf generate ===")
|
|
codegenTargets := discoverCodegenTargets(ctx.repoRoot, ctx.backendDir, ctx.backendTargets, ctx.pluginTargets, ctx.includeCoreTargets)
|
|
if len(codegenTargets) > 0 {
|
|
completedCodegenTargets, codegenFailures, codegenErr := runCodegenChecks(codegenTargets)
|
|
if codegenErr != nil {
|
|
fmt.Printf(" ERROR: failed to run codegen checks: %v\n", codegenErr)
|
|
os.Exit(2)
|
|
}
|
|
if len(codegenFailures) > 0 {
|
|
fmt.Printf(" FAIL: %d codegen target(s) failed sqlc compile or buf generate:\n", len(codegenFailures))
|
|
for _, failure := range codegenFailures {
|
|
fmt.Printf(" [%s] %s\n", failure.stage, failure.target)
|
|
if failure.output != "" {
|
|
for line := range strings.SplitSeq(failure.output, "\n") {
|
|
fmt.Printf(" %s\n", line)
|
|
}
|
|
}
|
|
}
|
|
rep.Fail()
|
|
} else {
|
|
fmt.Printf(" OK: sqlc compile / buf generate clean for %d target(s)\n", len(completedCodegenTargets))
|
|
for _, target := range completedCodegenTargets {
|
|
fmt.Printf(" - %s\n", target)
|
|
}
|
|
}
|
|
} else {
|
|
fmt.Println(" SKIP: no sqlc or buf codegen targets found")
|
|
}
|
|
|
|
fmt.Println()
|
|
},
|
|
})
|
|
}
|