Skip to content

Commit cb27392

Browse files
authored
.gitignore: add
Add `.gitignore` for some common files.
1 parent be1ddf5 commit cb27392

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Builds
2+
*.exe
3+
*.exe~
4+
dist/
5+
build/
6+
bin/
7+
*.tmp
8+
9+
# IDE files
10+
.vscode/
11+
*.code-workspace
12+
.idea/
13+
*~
14+
15+
# Go Specific
16+
*.prof
17+
*.pprof
18+
*.out
19+
*.coverage
20+
coverage.txt
21+
coverage.html
22+
23+
# OS generated files
24+
# macOS
25+
.DS_Store
26+
.DS_Store?
27+
._*
28+
.Spotlight-V100
29+
.Trashes
30+
ehthumbs.db
31+
Thumbs.db
32+
33+
# Windows
34+
Desktop.ini
35+
$RECYCLE.BIN/
36+
37+
# Linux
38+
.nfs*

0 commit comments

Comments
 (0)