summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-11-20 20:58:43 +0000
committerGitHub <noreply@github.com>2017-11-20 20:58:43 +0000
commit5a3a6955863fde86ef318a1fc6c3ad5d23429c0a (patch)
tree7a9a4f6c7ad618041ca2a171eaa22db1aa201e0c /ale_linters
parentc9e203e6204314b55aed76c49f57aaf8ab826c90 (diff)
parentb9f02ffb275b1d120967ab163e79959d3673ffd6 (diff)
downloadale-5a3a6955863fde86ef318a1fc6c3ad5d23429c0a.zip
Merge pull request #1154 from deltaskelta/add-filename-key-for-gobuild
Added filename key for `go build` linter
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/go/gobuild.vim10
1 files changed, 4 insertions, 6 deletions
diff --git a/ale_linters/go/gobuild.vim b/ale_linters/go/gobuild.vim
index 143c2fd0..783b9e0a 100644
--- a/ale_linters/go/gobuild.vim
+++ b/ale_linters/go/gobuild.vim
@@ -1,4 +1,5 @@
-" Author: Joshua Rubin <joshua@rubixconsulting.com>, Ben Reedy <https://github.com/breed808>
+" Author: Joshua Rubin <joshua@rubixconsulting.com>, Ben Reedy <https://github.com/breed808>,
+" Jeff Willette <jrwillette88@gmail.com>
" Description: go build for Go files
" inspired by work from dzhou121 <dzhou121@gmail.com>
@@ -39,15 +40,12 @@ function! ale_linters#go#gobuild#GetMatches(lines) abort
endfunction
function! ale_linters#go#gobuild#Handler(buffer, lines) abort
+ let l:dir = expand('#' . a:buffer . ':p:h')
let l:output = []
for l:match in ale_linters#go#gobuild#GetMatches(a:lines)
- " Omit errors from imported go packages
- if !ale#path#IsBufferPath(a:buffer, l:match[1])
- continue
- endif
-
call add(l:output, {
+ \ 'filename': ale#path#GetAbsPath(l:dir, l:match[1]),
\ 'lnum': l:match[2] + 0,
\ 'col': l:match[3] + 0,
\ 'text': l:match[4],