From 8700e3adb54677cf10703d46820517353d5d84e4 Mon Sep 17 00:00:00 2001 From: Bobby Date: Mon, 20 Oct 2025 05:11:49 +0530 Subject: go gitignore --- .gitignore | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..075f60e --- /dev/null +++ b/.gitignore @@ -0,0 +1,67 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Go build output +complexity-analyzer +complexity-analyzer.exe +main +main.exe + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool +*.out +coverage.txt +coverage.html + +# Go workspace file +go.work + +# Environment variables +.env +.env.local +.env.*.local + +# Temporary files +tmp/ +temp/ +*.tmp +*.swp +*.swo +*~ + +# Logs +*.log +logs/ + +# IDE/Editor files +.vscode/ +.idea/ +*.iml +.DS_Store +.AppleDouble +.LSOverride +Thumbs.db +desktop.ini + +# Complexity test temporary files +complexity-test-*/ + +# Node modules (if frontend tooling is added) +node_modules/ + +# Build artifacts +dist/ +build/ + +# Air live reload +.air.toml +tmp/ + +# Dependency directories (optional, usually committed) +vendor/ \ No newline at end of file -- cgit v1.2.3