/ .gitignore
.gitignore
1 # Build artifacts 2 dist/ 3 bin/ 4 build/ 5 coverage/ 6 7 # WebAssembly artifacts 8 *.wasm 9 wasm/server 10 11 # Go specific 12 *.exe 13 *.exe~ 14 *.dll 15 *.so 16 *.dylib 17 *.test 18 *.out 19 go.work 20 21 # IDE and editor files 22 .vscode/ 23 .idea/ 24 *.swp 25 *.swo 26 *~ 27 .DS_Store 28 Thumbs.db 29 30 # Logs and temporary files 31 *.log 32 *.tmp 33 *.temp 34 *.prof 35 *.trace 36 37 # Environment files 38 .env 39 .env.local 40 .env.*.local 41 42 # OS generated files 43 .DS_Store 44 .DS_Store? 45 ._* 46 .Spotlight-V100 47 .Trashes 48 ehthumbs.db 49 Thumbs.db 50 51 # Backup files 52 *.bak 53 *.backup 54 *.old 55 56 # Package manager files 57 node_modules/ 58 vendor/ 59 60 # Test coverage 61 coverage.out 62 coverage.html 63 *.cover 64 65 # Profiling files 66 cpu.prof 67 mem.prof 68 block.prof 69 mutex.prof 70 71 # Local configuration 72 config.local.* 73 settings.local.*