Files
odo/.gitignore
Tomas Kral 7c81a212d8 Clean e2e test example (#1535)
* a template for a clean tests

* vendor: update ginkgo,gomega,testify

* e2e template: Remove Before/AfterSuite and rename file

* gofmt

* don't ignore .odo
2019-04-01 06:09:14 -07:00

72 lines
698 B
Plaintext

#
# ODO SPECIFIC
#
# Ignore compiled files
odo
dist
bin
# Un-ignore odo directories
!odo/
# Ignore coverage report
coverage.txt
#
# GO SPECIFIC
#
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
*.so
# Folders
_obj
_test
# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*
_testmain.go
*.exe
*.test
*.prof
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
#
# VIM SPECIFIC
#
# swap
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
# session
Session.vim
# temporary
.netrwhist
*~
# auto-generated tag files
tags
# IntelliJ IDE specific
.idea
# VSCode specific
.vscode