summaryrefslogtreecommitdiff
path: root/ale_linters/go
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-11-11 09:42:57 +0000
committerw0rp <devw0rp@gmail.com>2018-11-11 09:42:57 +0000
commitd1d5292178c8553531f4320ba45e3341e4922497 (patch)
tree735f1ab5ceb50b57b988e8317130789afc6429c3 /ale_linters/go
parentb96105bebb42c0b6323ba9a283e9cbbc99f68663 (diff)
downloadale-d1d5292178c8553531f4320ba45e3341e4922497.zip
Fix #2054 - Make golint configurable
Diffstat (limited to 'ale_linters/go')
-rw-r--r--ale_linters/go/golint.vim15
1 files changed, 13 insertions, 2 deletions
diff --git a/ale_linters/go/golint.vim b/ale_linters/go/golint.vim
index d580fda2..4bf14fcc 100644
--- a/ale_linters/go/golint.vim
+++ b/ale_linters/go/golint.vim
@@ -1,10 +1,21 @@
" Author: neersighted <bjorn@neersighted.com>
" Description: golint for Go files
+call ale#Set('go_golint_executable', 'golint')
+call ale#Set('go_golint_options', '')
+
+function! ale_linters#go#golint#GetCommand(buffer) abort
+ let l:options = ale#Var(a:buffer, 'go_golint_options')
+
+ return '%e'
+ \ . (!empty(l:options) ? ' ' . l:options : '')
+ \ . ' %t'
+endfunction
+
call ale#linter#Define('go', {
\ 'name': 'golint',
\ 'output_stream': 'both',
-\ 'executable': 'golint',
-\ 'command': 'golint %t',
+\ 'executable_callback': ale#VarFunc('go_golint_executable'),
+\ 'command_callback': 'ale_linters#go#golint#GetCommand',
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
\})