Skip to content

Commit

Permalink
updated git ignore to best practices for go
Browse files Browse the repository at this point in the history
  • Loading branch information
milldr committed Mar 4, 2020
1 parent c014806 commit e4b0ac6
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Local dev
dist/
vendor/
.bundle
.DS_Store
.vscode/**/*
Expand All @@ -13,3 +13,22 @@ vendor/
**/*.retry
**/*.sw*
**/local.json

# 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

# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

# Dependency directories (remove the comment below to include it)
vendor/

0 comments on commit e4b0ac6

Please sign in to comment.