Implement phase 1 foundations
build-image / docker (push) Successful in 53s

This commit is contained in:
2026-07-03 20:14:06 -08:00
commit 6f7549d439
39 changed files with 2221 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package analysis
import "testing"
func TestSanitizeLine(t *testing.T) {
got := sanitizeLine(" error\nwith\rspaces ")
if got != "error with spaces" {
t.Fatalf("got %q", got)
}
}