From 74b907fcc6e24a17708410a08c0346c7c5cbfe68 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 15:43:53 +0000 Subject: [PATCH] Add remaining templates (languages, frameworks, IDEs, OS) --- src/gitignore_cli/templates/go.yaml | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/gitignore_cli/templates/go.yaml diff --git a/src/gitignore_cli/templates/go.yaml b/src/gitignore_cli/templates/go.yaml new file mode 100644 index 0000000..e5ea9a2 --- /dev/null +++ b/src/gitignore_cli/templates/go.yaml @@ -0,0 +1,35 @@ +name: go +category: language +description: Go development environment +patterns: | + # Binaries for programs and plugins + *.exe + *.exe~ + *.dll + *.so + *.dylib + + # Test binary (built with 'go test -c') + *.test + + # Output of 'go coverage' + *.out + + # Go workspace file + go.work + + # Vendor directory (if using Go modules) + vendor/ + + # Go dependencies + go.sum + + # IDE files + .idea/ + .vscode/ + *.swp + *.swo + + # OS files + .DS_Store + Thumbs.db