Skip to content

Commit

Permalink
Update terminal UI libs (#789)
Browse files Browse the repository at this point in the history
* dep ensure

* Update term UI libraries

Fixes #759

* Exclude fmt.Fprint from errcheck
  • Loading branch information
dominikschulz committed May 21, 2018
1 parent 46ac859 commit 87b643f
Show file tree
Hide file tree
Showing 28 changed files with 369 additions and 928 deletions.
3 changes: 3 additions & 0 deletions .errcheck.excl
@@ -0,0 +1,3 @@
fmt.Fprintf
fmt.Fprintln
fmt.Fprint
14 changes: 10 additions & 4 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -191,7 +191,7 @@ codequality:
@which errcheck > /dev/null; if [ $$? -ne 0 ]; then \
$(GO) get -u github.com/kisielk/errcheck; \
fi
@errcheck $(PKGS) || exit 1
@errcheck -exclude .errcheck.excl $(PKGS) || exit 1
@printf '%s\n' '$(OK)'

@echo -n " UNCONVERT "
Expand Down

0 comments on commit 87b643f

Please sign in to comment.