| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Go build output
- *.exe
- *.exe~
- *.dll
- *.so
- *.dylib
- # Go test binary & output
- *.test
- *.out
- *.prof
- # Go module cache (local vendor cache)
- .gomodcache/
- # IDE
- .ai-context/
- .cursorrules/
- .idea/
- .vscode/
- *.swp
- *.swo
- *~
- # macOS
- .DS_Store
- .AppleDouble
- .LSOverride
- # Config (may contain secrets)
- **/etc/**/*.*
- !**/etc/**/*-prod.yaml
- !**/etc/**/*-test.yaml
- !**/etc/**/*-dev.yaml
- # Temp / logs
- *.log
- tmp/
- # Debug files
- __debug*
|