46 lines
554 B
Text
46 lines
554 B
Text
# Ignore the Go binary executables
|
|
/bin/
|
|
/obj/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# Go Modules and Dependency files
|
|
/vendor/
|
|
.golangci.yml
|
|
.golangci-lint-cache/
|
|
|
|
# IDE/Editor settings
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test binary and coverage files
|
|
*.test
|
|
*.coverprofile
|
|
|
|
# Debugging files
|
|
*.log
|
|
*.out
|
|
|
|
# Go test binaries and profiles
|
|
profile/
|
|
|
|
# User-specific config files
|
|
.env
|
|
|
|
# Go vendor directory (if you use a vendoring strategy)
|
|
# /vendor
|
|
|
|
# Go build cache
|
|
/go-build/
|
|
|
|
# Other ignored files (e.g., CI/CD)
|
|
*.pid
|
|
*.swp
|
|
|
|
|