diff options
author | Ben Paxton <ben.paxton@headforwards.com> | 2018-03-19 15:34:47 +0000 |
---|---|---|
committer | Ben Paxton <ben.paxton@headforwards.com> | 2018-03-19 15:52:42 +0000 |
commit | 0cb3e3655419e80226e3738f94d514836a382b87 (patch) | |
tree | 95d6a0bb0fdbd87e76a07f5baafa339f6705107c /ale_linters/go/gosimple.vim | |
parent | 43e8f47e6e8c4fd3cc7ea161120c320b85813efd (diff) | |
download | ale-0cb3e3655419e80226e3738f94d514836a382b87.zip |
Lint whole package for gosimple and gotype
Fixes #936
Diffstat (limited to 'ale_linters/go/gosimple.vim')
-rw-r--r-- | ale_linters/go/gosimple.vim | 6 |
1 files changed, 5 insertions, 1 deletions
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 <https://github.com/breed808> " 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, |