Skip to content

Commit 3cf0c30

Browse files
authored
Update gitignore to use template from gitignore.io (#34)
1 parent 048f8b1 commit 3cf0c30

File tree

1 file changed

+90
-11
lines changed

1 file changed

+90
-11
lines changed

.gitignore

+90-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,93 @@
1-
# Editor
2-
.vscode/
1+
# Created by https://www.toptal.com/developers/gitignore/api/macos,go,helm,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,go,helm,visualstudiocode
33

4-
# kubebuilder
5-
/bin
6-
/config
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
714

8-
# Tests
9-
cover.out
15+
# Test binary, built with `go test -c`
16+
*.test
1017

11-
# Charts
12-
Chart.lock
13-
/chart/charts
14-
*.tgz
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+
### Helm ###
32+
# Chart dependencies
33+
**/charts/*.tgz
34+
35+
### macOS ###
36+
# General
37+
.DS_Store
38+
.AppleDouble
39+
.LSOverride
40+
41+
# Icon must end with two \r
42+
Icon
43+
44+
45+
# Thumbnails
46+
._*
47+
48+
# Files that might appear in the root of a volume
49+
.DocumentRevisions-V100
50+
.fseventsd
51+
.Spotlight-V100
52+
.TemporaryItems
53+
.Trashes
54+
.VolumeIcon.icns
55+
.com.apple.timemachine.donotpresent
56+
57+
# Directories potentially created on remote AFP share
58+
.AppleDB
59+
.AppleDesktop
60+
Network Trash Folder
61+
Temporary Items
62+
.apdisk
63+
64+
### macOS Patch ###
65+
# iCloud generated files
66+
*.icloud
67+
68+
### VisualStudioCode ###
69+
.vscode/*
70+
!.vscode/settings.json
71+
!.vscode/tasks.json
72+
!.vscode/launch.json
73+
!.vscode/extensions.json
74+
!.vscode/*.code-snippets
75+
76+
# Local History for Visual Studio Code
77+
.history/
78+
79+
# Built Visual Studio Code Extensions
80+
*.vsix
81+
82+
### VisualStudioCode Patch ###
83+
# Ignore all local history of files
84+
.history
85+
.ionide
86+
87+
# Support for Project snippet scope
88+
.vscode/*.code-snippets
89+
90+
# Ignore code-workspaces
91+
*.code-workspace
92+
93+
# End of https://www.toptal.com/developers/gitignore/api/macos,go,helm,visualstudiocode

0 commit comments

Comments
 (0)