-
Notifications
You must be signed in to change notification settings - Fork 123
/
.gitignore
117 lines (88 loc) · 1.47 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
*.pyc
bin
*.tar.gz
*.ipynb_checkpoints
# Test binary, build with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Kubernetes Generated files - skip generated files, except for vendored files
!vendor/**/zz_generated.*
# Python dev
.mypy_cache
.venv/
*.egg-info/
# Logs
logs
npm-debug.log*
# JS Sourcemaps
*.js.map
# Dependencies
node_modules/
bower_components/
# Build output
dist
# Web server
frontend/server/dist
# Python built package
*.egg-info
dist
.tox
# UI test outputs
frontend/test/ui/visual-regression/errorShots
frontend/test/ui/visual-regression/screenshots/diff
frontend/test/ui/visual-regression/screenshots/screen
# sqlite db
*.db
# IDE
.idea/
.ijwb/
*.iml
*.swp
*.swo
*~
# Merge files
*.orig
# Operating system generated files
.DS_Store
# go vendor
vendor
tekton-catalog/pipeline-loops/go.sum
# Go module cache
backend/pkg/mod/cache
# Bazel output artifacts
bazel-*
# VSCode
.vscode
# Local or temporary build files
build/
sdk/samples/*.yaml
temp/
# test yaml
sdk/python/tests/compiler/pipeline.yaml
sdk/python/tests/compiler/testdata/testpackage/pipeline.yaml
# Test temporary files
_artifacts
.failed_tests
# Generated Python SDK documentation
docs/_build
# sed backups
*.bak
# virtualenv
.venv/
# python sdk package
*.tar.gz
# Copy from kubeflow/frontend
coverage/
# Python cache
__pycache__
.pytest_cache
# Coverage
.coverage
.coverage*