36 lines
320 B
Plaintext
36 lines
320 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Build artifacts
|
|
tmp/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# IDE specific files
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Local configuration
|
|
test/
|
|
tmp/
|