/ .gitignore
.gitignore
1 # Binaries (root binary only) 2 /beats 3 *.exe 4 *.exe~ 5 *.dll 6 *.so 7 *.dylib 8 9 # Test binary 10 *.test 11 12 # Output of go coverage tool 13 *.out 14 15 # Go workspace file 16 go.work 17 18 # IDE 19 .idea/ 20 .vscode/ 21 *.swp 22 *.swo 23 24 # Beats data directory (user-specific) 25 .beats/ 26 27 # OS files 28 .DS_Store 29 Thumbs.db