diff --git a/.gitignore b/.gitignore index 8ba78ab3c11..090f5a2d349 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,67 @@ +# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 +.glide/ + +# Folders +vendor +_obj +_test +_output +.kube +.idea + +# 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 + +# directory configuration +.dir-locals.el + +### Go ### # Binaries for programs and plugins *.exe +*.exe~ *.dll *.so *.dylib @@ -10,14 +72,34 @@ # Output of the go coverage tool, specifically when used with LiteIDE *.out -# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 -.glide/ +### Go Patch ### +/vendor/ +/Godeps/ -# Folders -vendor -_obj -_test -_output -.kube -.vscode -.idea +### Vim ### +# Swap +[._]*.s[a-v][a-z] +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim + +# Temporary +.netrwhist +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + + +# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode