Skip to content

Commit

Permalink
Merge pull request #390 from eparis/gitignore
Browse files Browse the repository at this point in the history
.gitignore: Use gitignore.io to generate more complete output
  • Loading branch information
hasbro17 committed Aug 9, 2018
2 parents b19e56f + 75450cf commit 9cdfbf1
Showing 1 changed file with 92 additions and 10 deletions.
102 changes: 92 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

0 comments on commit 9cdfbf1

Please sign in to comment.