From 9d82f7b97bffefab7f436f8c1e59d0c340764bf9 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 15:54:57 +0000 Subject: [PATCH] Add template index and language templates (Python, JavaScript, Java, Go, Rust) --- .../templates/languages/go.gitignore | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 gitignore_generator/templates/languages/go.gitignore diff --git a/gitignore_generator/templates/languages/go.gitignore b/gitignore_generator/templates/languages/go.gitignore new file mode 100644 index 0000000..ae6dd5b --- /dev/null +++ b/gitignore_generator/templates/languages/go.gitignore @@ -0,0 +1,46 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary (built with go test) +*.test + +# Output of the go coverage tool, specifically when running with cover mode +*.out + +# Go dependency module checksum +go.sum + +# IDE - GoLand +.idea/ +*.iml +*.ipr +*.iws +.project +.classpath +.settings/ +.vscode/ + +# Visual Studio Code +.vscode/* +!.vscode/extensions.json + +# OS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Vim +*.swp +*.swo +*~ + +# Misc +coverage.txt