forked from kubernetes-sigs/kubebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
37 lines (30 loc) · 788 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.idea/
.vscode/
# don't check in the build output of the book
docs/book/book/
# Editor temp files
*~
\#*#
# Skip bazel dirs
/bazel-*
# skip bin
bin/*
testbin/*
testdata/project-v3-addon/testbin/*
testdata/project-v3-multigroup/testbin/*
testdata/project-v3/testbin/*
docs/book/src/multiversion-tutorial/testdata/project/bin/*
docs/book/src/cronjob-tutorial/testdata/project/bin/*
# skip .out files (coverage tests)
*.out
# skip testdata gopath non-src
/testdata/gopath/bin
/testdata/gopath/pkg
# skip testdata go.mod, since it may have
# different result depending on go version
/testdata/project-v2/go.sum
/testdata/project-v2-addon/go.sum
/testdata/project-v2-multigroup/go.sum
/testdata/project-v3/go.sum
/testdata/project-v3-multigroup/go.sum
/testdata/project-v3-addon/go.sum