File tree Expand file tree Collapse file tree 1 file changed +83
-0
lines changed
Expand file tree Collapse file tree 1 file changed +83
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ # Created by https://www.gitignore.io/api/windows,osx,linux,go
3+
4+ # ## Go ###
5+ # Binaries for programs and plugins
6+ * .exe
7+ * .dll
8+ * .so
9+ * .dylib
10+
11+ # Test binary, build with `go test -c`
12+ * .test
13+
14+ # Output of the go coverage tool, specifically when used with LiteIDE
15+ * .out
16+
17+ # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
18+ .glide /
19+
20+ # ## Linux ###
21+ * ~
22+
23+ # temporary files which can be created if a process still has a handle open of a deleted file
24+ .fuse_hidden *
25+
26+ # KDE directory preferences
27+ .directory
28+
29+ # Linux trash folder which might appear on any partition or disk
30+ .Trash- *
31+
32+ # .nfs files are created when an open file is removed but is still being accessed
33+ .nfs *
34+
35+ # ## OSX ###
36+ * .DS_Store
37+ .AppleDouble
38+ .LSOverride
39+
40+ # Icon must end with two \r
41+ Icon
42+
43+ # Thumbnails
44+ ._ *
45+
46+ # Files that might appear in the root of a volume
47+ .DocumentRevisions-V100
48+ .fseventsd
49+ .Spotlight-V100
50+ .TemporaryItems
51+ .Trashes
52+ .VolumeIcon.icns
53+ .com.apple.timemachine.donotpresent
54+
55+ # Directories potentially created on remote AFP share
56+ .AppleDB
57+ .AppleDesktop
58+ Network Trash Folder
59+ Temporary Items
60+ .apdisk
61+
62+ # ## Windows ###
63+ # Windows thumbnail cache files
64+ Thumbs.db
65+ ehthumbs.db
66+ ehthumbs_vista.db
67+
68+ # Folder config file
69+ Desktop.ini
70+
71+ # Recycle Bin used on file shares
72+ $RECYCLE.BIN /
73+
74+ # Windows Installer files
75+ * .cab
76+ * .msi
77+ * .msm
78+ * .msp
79+
80+ # Windows shortcuts
81+ * .lnk
82+
83+ # End of https://www.gitignore.io/api/windows,osx,linux,go
You can’t perform that action at this time.
0 commit comments