fix: resolve all golangci-lint errors

- errcheck: explicitly discard error returns for git config --unset
- gosec G304: add nolint for safe file read from hardcoded list
- gosec G306: add nolint for .gitattributes (must be world-readable)
- unparam: remove unused gitDir param, use _ for unused ctx
- unparam: change functions with always-nil error returns to void

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-16 17:50:25 -08:00
parent a6f0c2d497
commit 52f3363b0f
3 changed files with 11 additions and 18 deletions
+4 -3
View File
@@ -227,7 +227,7 @@ func showResetPreview(items []resetItem) {
fmt.Printf("To proceed, run: %s\n", yellow("bd reset --force"))
}
func performReset(items []resetItem, gitDir, beadsDir string) {
func performReset(items []resetItem, _, beadsDir string) {
green := color.New(color.FgGreen).SprintFunc()
var errors []string
@@ -257,8 +257,8 @@ func performReset(items []resetItem, gitDir, beadsDir string) {
case "config":
// Remove merge driver config (ignore errors - may not exist)
exec.Command("git", "config", "--unset", "merge.beads.driver").Run()
exec.Command("git", "config", "--unset", "merge.beads.name").Run()
_ = exec.Command("git", "config", "--unset", "merge.beads.driver").Run()
_ = exec.Command("git", "config", "--unset", "merge.beads.name").Run()
if !jsonOutput {
fmt.Printf("%s Removed merge driver config\n", green("✓"))
}
@@ -363,5 +363,6 @@ func removeGitattributesEntry() error {
// Add single trailing newline
newContent += "\n"
//nolint:gosec // G306: .gitattributes must be world-readable (0644)
return os.WriteFile(".gitattributes", []byte(newContent), 0644)
}