Skip to content

Commit 1046707

Browse files
committed
[travis deploy] cleaning up and updating .gitignore
1 parent ff5571a commit 1046707

File tree

1 file changed

+31
-28
lines changed

1 file changed

+31
-28
lines changed

.gitignore

Lines changed: 31 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Folders
2-
vendor
3-
_obj
4-
_test
5-
_output
6-
.kube
72
.idea
83

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
1016

1117
### Emacs ###
1218
# -*- mode: gitignore; -*-
@@ -55,6 +61,10 @@ flycheck_*.el
5561
# directory configuration
5662
.dir-locals.el
5763

64+
# network security
65+
/network-security.data
66+
67+
5868
### Go ###
5969
# Binaries for programs and plugins
6070
*.exe
@@ -63,7 +73,7 @@ flycheck_*.el
6373
*.so
6474
*.dylib
6575

66-
# Test binary, build with `go test -c`
76+
# Test binary, built with `go test -c`
6777
*.test
6878

6979
# Output of the go coverage tool, specifically when used with LiteIDE
@@ -72,13 +82,15 @@ flycheck_*.el
7282
### Vim ###
7383
# Swap
7484
[._]*.s[a-v][a-z]
85+
!*.svg # comment out if you don't need vector files
7586
[._]*.sw[a-p]
7687
[._]s[a-rt-v][a-z]
7788
[._]ss[a-gi-z]
7889
[._]sw[a-p]
7990

8091
# Session
8192
Session.vim
93+
Sessionx.vim
8294

8395
# Temporary
8496
.netrwhist
@@ -89,24 +101,15 @@ tags
89101

90102
### VisualStudioCode ###
91103
.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

Comments
 (0)