diff options
author | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-05-21 13:52:42 -0700 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-05-21 14:09:00 -0700 |
commit | 1edca413dfbc05e438541929579ed7ed6aed450e (patch) | |
tree | a0627e24c5d96e3a67e4d4c90c04a20443ed060e /vnfs/DAaaS/collectd-operator/.gitignore | |
parent | 117240ff3abb80c8e6e9b7aee04a204e969baff4 (diff) |
CollectD Operator - Skeleton code
Skeleton code for CollectD Operator repo.
Issue-ID: ONAPARC-461
Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
Change-Id: I3894091cb6ec5ae11995e7914cf20e09b0def20a
Diffstat (limited to 'vnfs/DAaaS/collectd-operator/.gitignore')
-rw-r--r-- | vnfs/DAaaS/collectd-operator/.gitignore | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/vnfs/DAaaS/collectd-operator/.gitignore b/vnfs/DAaaS/collectd-operator/.gitignore new file mode 100644 index 00000000..a7976e1e --- /dev/null +++ b/vnfs/DAaaS/collectd-operator/.gitignore @@ -0,0 +1,101 @@ +# Common +.DS_Store +.vscode +*-workspace +.tox/ +.*.swp +*.log +coverage.html +docs/build +*.so + +# Tests +*.test +*.out + +# # Directories +bin +target +vendor +src/github.com +src/golang.org + + + +# Temporary Build Files +build/_output +build/_test +# Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* +# Org-mode +.org-id-locations +*_archive +# flymake-mode +*_flymake.* +# eshell files +/eshell/history +/eshell/lastdir +# elpa packages +/elpa/ +# reftex files +*.rel +# AUCTeX auto folder +/auto/ +# cask packages +.cask/ +dist/ +# Flycheck +flycheck_*.el +# server auth directory +/server/ +# projectiles files +.projectile +projectile-bookmarks.eld +# directory configuration +.dir-locals.el +# saveplace +places +# url cache +url/cache/ +# cedet +ede-projects.el +# smex +smex-items +# company-statistics +company-statistics-cache.el +# anaconda-mode +anaconda-mode/ +### Go ### +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +# Test binary, build with 'go test -c' +*.test +# Output of the go coverage tool, specifically when used with LiteIDE +*.out +### Vim ### +# swap +.sw[a-p] +.*.sw[a-p] +# session +Session.vim +# temporary +.netrwhist +# auto-generated tag files +tags +### VisualStudioCode ### +.vscode/* +.history +# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode |