/ .gitignore
.gitignore
1 # Binaries for programs and plugins 2 *.exe 3 *.exe~ 4 *.dll 5 *.so 6 *.dylib 7 8 # Test binary, built with `go test -c` 9 *.test 10 11 # Output of the go coverage tool 12 *.out 13 14 # Dependency directories 15 # vendor/ 16 17 # Go workspace file 18 go.work 19 20 # Binary output 21 /icp-management 22 23 # IDE specific files 24 .idea/ 25 .vscode/ 26 27 # OS specific files 28 .DS_Store 29 ._* 30 .Spotlight-V100 31 .Trashes 32 Thumbs.db 33 ehthumbs.db 34 35 # Temporary files 36 *.tmp 37 *.temp 38 39 # Editor backups 40 *.swp 41 *.swo 42 *.bak 43 44 # Build artifacts 45 /build/ 46 /dist/ 47 48 # Environment files (secrets) 49 .env 50 .env.local 51 52 # Memory Bank (project documentation - NOT tracked) 53 memory-bank/ 54 55 # AGENTS.md is tracked (not ignored) 56 # Research files (reference implementations - NOT tracked) 57 research/