Skip to content
This repository was archived by the owner on Mar 3, 2024. It is now read-only.

Commit f29edfa

Browse files
committed
chore: add gitignore
1 parent 14a82d4 commit f29edfa

File tree

1 file changed

+124
-0
lines changed

1 file changed

+124
-0
lines changed

.gitignore

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/go,windows,linux,macos,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=go,windows,linux,macos,visualstudiocode
3+
4+
### Go ###
5+
# If you prefer the allow list template instead of the deny list, see community template:
6+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
7+
#
8+
# Binaries for programs and plugins
9+
*.exe
10+
*.exe~
11+
*.dll
12+
*.so
13+
*.dylib
14+
15+
# Test binary, built with `go test -c`
16+
*.test
17+
18+
# Output of the go coverage tool, specifically when used with LiteIDE
19+
*.out
20+
21+
# Dependency directories (remove the comment below to include it)
22+
# vendor/
23+
24+
# Go workspace file
25+
go.work
26+
27+
### Go Patch ###
28+
/vendor/
29+
/Godeps/
30+
31+
### Linux ###
32+
*~
33+
34+
# temporary files which can be created if a process still has a handle open of a deleted file
35+
.fuse_hidden*
36+
37+
# KDE directory preferences
38+
.directory
39+
40+
# Linux trash folder which might appear on any partition or disk
41+
.Trash-*
42+
43+
# .nfs files are created when an open file is removed but is still being accessed
44+
.nfs*
45+
46+
### macOS ###
47+
# General
48+
.DS_Store
49+
.AppleDouble
50+
.LSOverride
51+
52+
# Icon must end with two \r
53+
Icon
54+
55+
56+
# Thumbnails
57+
._*
58+
59+
# Files that might appear in the root of a volume
60+
.DocumentRevisions-V100
61+
.fseventsd
62+
.Spotlight-V100
63+
.TemporaryItems
64+
.Trashes
65+
.VolumeIcon.icns
66+
.com.apple.timemachine.donotpresent
67+
68+
# Directories potentially created on remote AFP share
69+
.AppleDB
70+
.AppleDesktop
71+
Network Trash Folder
72+
Temporary Items
73+
.apdisk
74+
75+
### macOS Patch ###
76+
# iCloud generated files
77+
*.icloud
78+
79+
### VisualStudioCode ###
80+
.vscode/*
81+
!.vscode/settings.json
82+
!.vscode/tasks.json
83+
!.vscode/launch.json
84+
!.vscode/extensions.json
85+
!.vscode/*.code-snippets
86+
87+
# Local History for Visual Studio Code
88+
.history/
89+
90+
# Built Visual Studio Code Extensions
91+
*.vsix
92+
93+
### VisualStudioCode Patch ###
94+
# Ignore all local history of files
95+
.history
96+
.ionide
97+
98+
### Windows ###
99+
# Windows thumbnail cache files
100+
Thumbs.db
101+
Thumbs.db:encryptable
102+
ehthumbs.db
103+
ehthumbs_vista.db
104+
105+
# Dump file
106+
*.stackdump
107+
108+
# Folder config file
109+
[Dd]esktop.ini
110+
111+
# Recycle Bin used on file shares
112+
$RECYCLE.BIN/
113+
114+
# Windows Installer files
115+
*.cab
116+
*.msi
117+
*.msix
118+
*.msm
119+
*.msp
120+
121+
# Windows shortcuts
122+
*.lnk
123+
124+
# End of https://www.toptal.com/developers/gitignore/api/go,windows,linux,macos,visualstudiocode

0 commit comments

Comments
 (0)