File tree 1 file changed +86
-0
lines changed
1 file changed +86
-0
lines changed Original file line number Diff line number Diff line change
1
+ # OSX leaves these everywhere on SMB shares
2
+ ._ *
3
+
4
+ # OSX trash
5
+ .DS_Store
6
+
7
+ # Eclipse files
8
+ .classpath
9
+ .project
10
+ .settings /**
11
+
12
+ # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
13
+ .idea /
14
+ * .iml
15
+
16
+ # Vscode files
17
+ .vscode
18
+
19
+ # This is where the result of the go build goes
20
+ /output * /
21
+ /_output * /
22
+ /_output
23
+
24
+ # Emacs save files
25
+ * ~
26
+ \# * \#
27
+ . \# *
28
+
29
+ # Vim-related files
30
+ [._ ]* .s [a-w ][a-z ]
31
+ [._ ]s [a-w ][a-z ]
32
+ * .un~
33
+ Session.vim
34
+ .netrwhist
35
+
36
+ # Go test binaries
37
+ * .test
38
+ /hack /.test-cmd-auth
39
+
40
+ # JUnit test output from ginkgo e2e tests
41
+ /junit * .xml
42
+
43
+ # Mercurial files
44
+ ** /.hg
45
+ ** /.hg *
46
+
47
+ # Vagrant
48
+ .vagrant
49
+ network_closure.sh
50
+
51
+ # Local cluster env variables
52
+ /cluster /env.sh
53
+
54
+ # Compiled binaries in third_party
55
+ /third_party /pkg
56
+
57
+ .tags *
58
+
59
+ # Karma output
60
+ /www /test_out
61
+
62
+ # precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
63
+ /_tmp /
64
+ /doc_tmp /
65
+
66
+ # Test artifacts produced by Jenkins jobs
67
+ /_artifacts /
68
+
69
+ # Go dependencies installed on Jenkins
70
+ /_gopath /
71
+
72
+ # Config directories created by gcloud and gsutil on Jenkins
73
+ /.config /gcloud * /
74
+ /.gsutil /
75
+
76
+ # direnv .envrc files
77
+ .envrc
78
+
79
+ # make-related metadata
80
+ /.make /
81
+
82
+ # This file used by some vendor repos (e.g. github.com/go-openapi/...) to store secret variables and should not be ignored
83
+ ! \. drone \. sec
84
+
85
+ /bazel- *
86
+ * .pyc
You can’t perform that action at this time.
0 commit comments