29 lines
450 B
Plaintext
29 lines
450 B
Plaintext
# Ignore binary files and executables
|
|
*.exe
|
|
*.o
|
|
*.a
|
|
|
|
# Ignore the build directory
|
|
/build
|
|
|
|
# Ignore any generated or temporary files
|
|
*.log
|
|
*.pid
|
|
*.lock
|
|
|
|
# Ignore the vendor directory (if you're using Go modules)
|
|
/vendor
|
|
|
|
# Ignore the Go binary and cache directories
|
|
/bin
|
|
/pkg
|
|
|
|
# Ignore any editor-specific files or directories
|
|
.vscode
|
|
.idea
|
|
*.sublime-*
|
|
|
|
# Ignore configuration files with sensitive information (if applicable)
|
|
config.yaml
|
|
secrets.json
|