Skip to content

Commit 36eda73

Browse files
committed
chore: add gitignore
1 parent be1ddf5 commit 36eda73

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

.gitignore

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Go language
2+
# Binaries for programs and plugins
3+
*.exe
4+
*.exe~
5+
*.dll
6+
*.so
7+
*.dylib
8+
9+
# Test binary, built with `go test -c`
10+
*.test
11+
12+
# Output of the go coverage tool
13+
*.out
14+
*.coverage
15+
coverage.txt
16+
coverage.html
17+
18+
# Dependency directories (remove the comment below to include it)
19+
vendor/
20+
21+
# Go workspace file
22+
go.work
23+
go.work.sum
24+
25+
# Build artifacts
26+
dist/
27+
build/
28+
bin/
29+
*.tmp
30+
31+
# VS Code
32+
.vscode/
33+
*.code-workspace
34+
35+
# JetBrains IDEs (GoLand, IntelliJ IDEA, etc.)
36+
.idea/
37+
*.iml
38+
*.iws
39+
*.ipr
40+
41+
# OS generated files
42+
# macOS
43+
.DS_Store
44+
.DS_Store?
45+
._*
46+
.Spotlight-V100
47+
.Trashes
48+
ehthumbs.db
49+
Thumbs.db
50+
51+
# Windows
52+
Desktop.ini
53+
$RECYCLE.BIN/
54+
55+
# Linux
56+
*~
57+
.nfs*
58+
59+
# Editor temporary files
60+
*.swp
61+
*.swo
62+
.#*
63+
\#*#
64+
*.orig
65+
*.rej
66+
67+
# Log files
68+
*.log
69+
logs/
70+
71+
# Temporary files
72+
*.temp
73+
tmp/
74+
temp/
75+
76+
# Environment files
77+
.env
78+
.env.local
79+
.env.*.local
80+
81+
# Debug files
82+
debug
83+
debug.test
84+
__debug_bin
85+
86+
# Crash log files
87+
crash.log
88+
89+
# Profiling files
90+
*.prof
91+
*.pprof
92+
cpu.prof
93+
mem.prof
94+
block.prof
95+
mutex.prof

0 commit comments

Comments
 (0)