Add misspell lint

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2017-05-23 11:33:38 -04:00
parent 01e1e58ada
commit a712993e93
2 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,7 @@ func (h *hijackedIOStreamer) setupInput() (restore func(), err error) {
func (h *hijackedIOStreamer) beginOutputStream(restoreInput func()) <-chan error { func (h *hijackedIOStreamer) beginOutputStream(restoreInput func()) <-chan error {
if h.outputStream == nil && h.errorStream == nil { if h.outputStream == nil && h.errorStream == nil {
// Ther is no need to copy output. // There is no need to copy output.
return nil return nil
} }

View File

@ -14,6 +14,7 @@
"ineffassign", "ineffassign",
"interfacer", "interfacer",
"lll", "lll",
"misspell",
"unused", "unused",
"vet" "vet"
], ],