53 lines
504 B
Plaintext
53 lines
504 B
Plaintext
# Go build artifacts
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
|
|
# Binaries and build dirs
|
|
bin/
|
|
build/
|
|
dist/
|
|
|
|
# Common local binaries (if built into tree)
|
|
cmd/**/nftcache
|
|
|
|
# Coverage / test reports
|
|
coverage/
|
|
cover*
|
|
*.cover
|
|
*.coverprofile
|
|
*.cov
|
|
*.lcov
|
|
coverage.*.out
|
|
|
|
# Profiling / debug data
|
|
*.pprof
|
|
cpu.prof
|
|
mem.prof
|
|
heap.prof
|
|
profile*
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*
|
|
|
|
# Editor/OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Vendored deps (if ever used)
|
|
vendor/
|