Skip to content

Commit 7f6408d

Browse files
committed
chore: add .gitignore for Go project
1 parent 212917c commit 7f6408d

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
coverage.txt
14+
coverage.html
15+
16+
# Go workspace file
17+
go.work
18+
go.work.sum
19+
20+
# Dependency directories
21+
vendor/
22+
23+
# IDEs
24+
.vscode/
25+
.idea/
26+
*.swp
27+
*.swo
28+
*~
29+
.DS_Store
30+
31+
# Temporary files
32+
*.tmp
33+
*.log
34+
/tmp/
35+
36+
# Build artifacts
37+
bin/
38+
dist/

0 commit comments

Comments
 (0)