From 558c3ee48250ef396cff87ef682015c3a4f413e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Wed, 1 Oct 2025 00:40:15 +0800 Subject: [PATCH] fix: make lint happy --- abineundo/ref/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/abineundo/ref/main.go b/abineundo/ref/main.go index 8ec52b08..34887f8b 100644 --- a/abineundo/ref/main.go +++ b/abineundo/ref/main.go @@ -1,3 +1,4 @@ +// Package main generate necessary files that needed for compiling package main import ( @@ -30,7 +31,7 @@ func main() { tgtf := path.Join(*root, "abineundo/ref/custom/register.go") if _, err := os.Stat(regf); err != nil { if os.IsNotExist(err) { - _ = os.WriteFile(tgtf, []byte("package custom\n"), 0644) + _ = os.WriteFile(tgtf, []byte("// Package custom ...\npackage custom\n"), 0644) return } panic(err)