From e6ab90f390b08fbdd9e956f7b63ba4b9e021e1f8 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 05:58:11 +0000 Subject: [PATCH] fix: resolve CI linting and type checking errors --- scaffoldforge/templates/go/default/main.go.j2 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scaffoldforge/templates/go/default/main.go.j2 b/scaffoldforge/templates/go/default/main.go.j2 index 0c97ead..f5e11d1 100644 --- a/scaffoldforge/templates/go/default/main.go.j2 +++ b/scaffoldforge/templates/go/default/main.go.j2 @@ -1,16 +1,16 @@ -// Main entry point for {{ project_name }} +// Main entry point for {{ project_name }}. // Generated from GitHub Issue #{{ issue_number }}: {{ issue_title }} -// URL: {{ issue_url }} package main import "fmt" -{% for item in todo_items %} -// TODO #{{ loop.index }}: {{ item }} -{% endfor %} - func main() { + // TODO: Implement main functionality + // {% for item in todo_items %} + // TODO #{{ loop.index }}: {{ item }} + // {% endfor %} + fmt.Println("{{ project_name }} is running") fmt.Printf("Repository: {{ repository }}\n") fmt.Printf("Issue: {{ issue_number }}\n")