...
1# Copyright 2022 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# IntelliJ/Goland config
16.idea
17*.iml
18
19# Google Terraform Provider binary
20#terraform-provider-google-beta
21
22# Temporary Build Files
23tmp/_output
24tmp/_test
25
26# build output
27bin/
28operator/bin
29
30# Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
31
32### Emacs ###
33# -*- mode: gitignore; -*-
34*~
35\#*\#
36/.emacs.desktop
37/.emacs.desktop.lock
38*.elc
39auto-save-list
40tramp
41.\#*
42
43# Org-mode
44.org-id-locations
45*_archive
46
47# flymake-mode
48*_flymake.*
49
50# eshell files
51/eshell/history
52/eshell/lastdir
53
54# elpa packages
55/elpa/
56
57# reftex files
58*.rel
59
60# AUCTeX auto folder
61/auto/
62
63# cask packages
64.cask/
65dist/
66
67# Flycheck
68flycheck_*.el
69
70# server auth directory
71/server/
72
73# projectiles files
74.projectile
75projectile-bookmarks.eld
76
77# directory configuration
78.dir-locals.el
79
80# saveplace
81places
82
83# url cache
84url/cache/
85
86# cedet
87ede-projects.el
88
89# smex
90smex-items
91
92# company-statistics
93company-statistics-cache.el
94
95# anaconda-mode
96anaconda-mode/
97
98# pycache
99scripts/dclsampleconverter/__pycache__
100
101# temporary YAMLs
102config/installbundle/components/manager/base/manager_image_patch.yaml
103config/installbundle/components/recorder/recorder_image_patch.yaml
104config/installbundle/components/webhook/webhook_image_patch.yaml
105config/installbundle/components/deletiondefender/deletiondefender_image_patch.yaml
106config/installbundle/components/unmanageddetector/unmanageddetector_image_patch.yaml
107operator/config/manager/manager_image_patch.yaml
108operator/config/autopilot-manager/manager_image_patch.yaml
109
110### Go ###
111# Binaries for programs and plugins
112*.exe
113*.exe~
114*.dll
115*.so
116*.dylib
117
118# Test binary, build with 'go test -c'
119*.test
120
121# Output of the go coverage tool, specifically when used with LiteIDE
122*.out
123
124### Vim ###
125# swap
126.sw[a-p]
127.*.sw[a-p]
128# session
129Session.vim
130# temporary
131.netrwhist
132
133### VisualStudioCode ###
134.vscode
135.vscode/*
136!.vscode/settings.json
137!.vscode/tasks.json
138!.vscode/launch.json
139!.vscode/extensions.json
140.history
141
142
143# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
144#
145
146# always check in vendored files
147!/vendor/**/*
View as plain text