From ddd94b7d330dea91b144b90221644d7ae30afb22 Mon Sep 17 00:00:00 2001 From: harshabose Date: Thu, 10 Jul 2025 06:46:52 +0530 Subject: [PATCH] added additional .gitignore candidates --- .gitignore | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 50 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bffbb23..7a288b3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,50 @@ -/third-party -.idea \ No newline at end of file +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool +*.out + +# Go workspace file +go.work + +# Dependency directories +vendor/ + +# Build directories +build/ +third_party/ + +# Environment files +*.env +!.env.example + +# macOS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes + +# Windows +ehthumbs.db +Thumbs.db + +# Linux +*~ + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo + +# Logs +*.log +logs/ \ No newline at end of file