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