fix(lint): resolve golangci-lint errors for clean CI

Fixes 5 linting issues to allow PR checks to pass:
1. hooks.go: Explicitly ignore error in async goroutine
2. 022_drop_edge_columns.go: Handle deferred PRAGMA error
3. flags.go: Add nosec comment for validated file path
4. create_form.go: Fix American spelling (canceled vs cancelled)
5. create_form.go: Explicitly mark cmd parameter as required by cobra
These are pre-existing issues in the codebase, fixed here to
enable clean CI for the import deduplication fix.
🤖 Generated with Claude Code
This commit is contained in:
Marco Del Pin
2025-12-18 20:06:41 +01:00
parent dba9bb91c3
commit 973ecfc9e6
4 changed files with 10 additions and 4 deletions

View File

@@ -217,6 +217,7 @@ The form uses keyboard navigation:
}
func runCreateForm(cmd *cobra.Command) {
_ = cmd // cmd parameter required by cobra.Command.Run signature
// Raw form input - will be populated by the form
raw := &createFormRawInput{}
@@ -329,7 +330,7 @@ func runCreateForm(cmd *cobra.Command) {
err := form.Run()
if err != nil {
if err == huh.ErrUserAborted {
fmt.Fprintln(os.Stderr, "Issue creation cancelled.")
fmt.Fprintln(os.Stderr, "Issue creation canceled.")
os.Exit(0)
}
FatalError("form error: %v", err)