mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* renamed the config file * broke the config into global and local config structs * lookup added * use the global config everywhere * resolved tests * resolved logs and application_test * added support for global flag in utils config cli * resolved failed tests * resolved code climate issues * updated help and added e2e test * updated the cli reference * added configuration check, common config and success message * added check for user confirmation * Resolved the failing config test * add force flag * not show default values when doing config view * resolved failing tests * created proxy New method and refactored to CVR pattern for global stuff * resolved tests * used the check in set local config * local odo config created only when we set config * added delete command and tests * removed focus * resolved code climate error * resolved go ci issue * resolved config tests * CamelCased the config and regen the cli ref * removed allNil check and added delete invalid error message * renamed delete to unset and updated tests * removed fit * resolved local build issue
74 lines
742 B
Plaintext
74 lines
742 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
|
|
|
|
# local .odo config directory
|
|
.odo
|
|
*/**/.odo |