diff options
| -rw-r--r-- | .gitignore | 67 |
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 |
