diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-07-30 21:17:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 21:17:20 +0100 |
commit | 3ae01ba24967a37e5a41626673422be53e188026 (patch) | |
tree | b68094ab353b74b998de86f003631401f5ff0d85 /ale_linters/go/staticcheck.vim | |
parent | 8f5ecf01200f82d12d452992a92c23fcf9e0f0e8 (diff) | |
parent | 49db8210f68637a2af14b21940f3cbbaf7361047 (diff) | |
download | ale-3ae01ba24967a37e5a41626673422be53e188026.zip |
Merge pull request #2430 from eliath/master
Support $GO111MODULE with Go tooling
Diffstat (limited to 'ale_linters/go/staticcheck.vim')
-rw-r--r-- | ale_linters/go/staticcheck.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ale_linters/go/staticcheck.vim b/ale_linters/go/staticcheck.vim index 26fe0193..ed40c6c2 100644 --- a/ale_linters/go/staticcheck.vim +++ b/ale_linters/go/staticcheck.vim @@ -8,17 +8,18 @@ function! ale_linters#go#staticcheck#GetCommand(buffer) abort let l:filename = expand('#' . a:buffer . ':t') let l:options = ale#Var(a:buffer, 'go_staticcheck_options') let l:lint_package = ale#Var(a:buffer, 'go_staticcheck_lint_package') + let l:env = ale#go#EnvString(a:buffer) " BufferCdString is used so that we can be sure the paths output from " staticcheck can be calculated to absolute paths in the Handler if l:lint_package return ale#path#BufferCdString(a:buffer) - \ . 'staticcheck' + \ . l:env . 'staticcheck' \ . (!empty(l:options) ? ' ' . l:options : '') . ' .' endif return ale#path#BufferCdString(a:buffer) - \ . 'staticcheck' + \ . l:env . 'staticcheck' \ . (!empty(l:options) ? ' ' . l:options : '') \ . ' ' . ale#Escape(l:filename) endfunction |