From 0cb3e3655419e80226e3738f94d514836a382b87 Mon Sep 17 00:00:00 2001 From: Ben Paxton Date: Mon, 19 Mar 2018 15:34:47 +0000 Subject: Lint whole package for gosimple and gotype Fixes #936 --- ale_linters/go/gosimple.vim | 6 +++++- ale_linters/go/gotype.vim | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'ale_linters/go') diff --git a/ale_linters/go/gosimple.vim b/ale_linters/go/gosimple.vim index 8a4c01e1..12ef3b94 100644 --- a/ale_linters/go/gosimple.vim +++ b/ale_linters/go/gosimple.vim @@ -1,10 +1,14 @@ " Author: Ben Reedy " Description: gosimple for Go files +function! ale_linters#go#gosimple#GetCommand(buffer) abort + return ale#path#BufferCdString(a:buffer) . ' gosimple .' +endfunction + call ale#linter#Define('go', { \ 'name': 'gosimple', \ 'executable': 'gosimple', -\ 'command': 'gosimple %s', +\ 'command_callback': 'ale_linters#go#gosimple#GetCommand', \ 'callback': 'ale#handlers#unix#HandleAsWarning', \ 'output_stream': 'both', \ 'lint_file': 1, diff --git a/ale_linters/go/gotype.vim b/ale_linters/go/gotype.vim index 13055a89..82737e28 100644 --- a/ale_linters/go/gotype.vim +++ b/ale_linters/go/gotype.vim @@ -6,7 +6,8 @@ function! ale_linters#go#gotype#GetCommand(buffer) abort return endif - return 'gotype %s' + + return ale#path#BufferCdString(a:buffer) . ' gotype .' endfunction call ale#linter#Define('go', { -- cgit v1.2.3