aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-10-20 05:11:49 +0530
committerBobby <[email protected]>2025-10-20 05:11:49 +0530
commit8700e3adb54677cf10703d46820517353d5d84e4 (patch)
tree0f06c759f89be6e0971ef31d8e733b3e23988194
parent4d28e1c3aab227c2d115ef9489d527d856f939f7 (diff)
downloadcomplexity-analyzer-8700e3adb54677cf10703d46820517353d5d84e4.tar.xz
complexity-analyzer-8700e3adb54677cf10703d46820517353d5d84e4.zip
go gitignore
-rw-r--r--.gitignore67
1 files changed, 67 insertions, 0 deletions
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