1
1
# Folders
2
- vendor
3
- _obj
4
- _test
5
- _output
6
- .kube
7
2
.idea
8
3
9
- # Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
4
+ # Build artifacts
5
+ /build
6
+ /tools /bin
7
+
8
+ # Website
9
+ website /public /
10
+ website /resources /
11
+ website /node_modules /
12
+ website /tech-doc-hugo
13
+
14
+ # Created by https://www.toptal.com/developers/gitignore/api/go,vim,emacs,visualstudiocode
15
+ # Edit at https://www.toptal.com/developers/gitignore?templates=go,vim,emacs,visualstudiocode
10
16
11
17
# ## Emacs ###
12
18
# -*- mode: gitignore; -*-
@@ -55,6 +61,10 @@ flycheck_*.el
55
61
# directory configuration
56
62
.dir-locals.el
57
63
64
+ # network security
65
+ /network-security.data
66
+
67
+
58
68
# ## Go ###
59
69
# Binaries for programs and plugins
60
70
* .exe
@@ -63,7 +73,7 @@ flycheck_*.el
63
73
* .so
64
74
* .dylib
65
75
66
- # Test binary, build with `go test -c`
76
+ # Test binary, built with `go test -c`
67
77
* .test
68
78
69
79
# Output of the go coverage tool, specifically when used with LiteIDE
@@ -72,13 +82,15 @@ flycheck_*.el
72
82
# ## Vim ###
73
83
# Swap
74
84
[._ ]* .s [a-v ][a-z ]
85
+ ! * .svg # comment out if you don't need vector files
75
86
[._ ]* .sw [a-p ]
76
87
[._ ]s [a-rt-v ][a-z ]
77
88
[._ ]ss [a-gi-z ]
78
89
[._ ]sw [a-p ]
79
90
80
91
# Session
81
92
Session.vim
93
+ Sessionx.vim
82
94
83
95
# Temporary
84
96
.netrwhist
@@ -89,24 +101,15 @@ tags
89
101
90
102
# ## VisualStudioCode ###
91
103
.vscode /*
92
-
93
- # End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
94
-
95
- # Build artifacts
96
- /build
97
- /tools /bin
98
- test /ansible-operator /ansible-operator
99
- test /helm-operator /helm-operator
100
- images /scorecard-proxy /scorecard-proxy
101
- images /scorecard-test /scorecard-test
102
- images /scorecard-test-kuttl /scorecard-test-kuttl
103
-
104
- # Test artifacts
105
- internal /ansible /runner /testdata /valid.yaml
106
- internal /scorecard /examples /custom-scorecard-tests /go.sum
107
-
108
- # Website
109
- website /public /
110
- website /resources /
111
- website /node_modules /
112
- website /tech-doc-hugo
104
+ ! .vscode /settings.json
105
+ ! .vscode /tasks.json
106
+ ! .vscode /launch.json
107
+ ! .vscode /extensions.json
108
+ * .code-workspace
109
+
110
+ # ## VisualStudioCode Patch ###
111
+ # Ignore all local history of files
112
+ .history
113
+ .ionide
114
+
115
+ # End of https://www.toptal.com/developers/gitignore/api/go,vim,emacs,visualstudiocode
0 commit comments