51 lines
464 B
Plaintext
51 lines
464 B
Plaintext
# Go binaries
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Go test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Go coverage tool, specifically for Go 1.10+
|
|
*.out
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# Database files
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
dist/
|