diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-20 10:43:45 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-20 10:43:45 +0000 |
commit | f224ce8a377bbb3a0deb78b98fdc6c43555791e2 (patch) | |
tree | aa5c36e414807d681721a5b3fa1d8588e96f2726 /ale_linters/go | |
parent | 9420c411bda14348a435a76bb415a3081940b285 (diff) | |
download | ale-f224ce8a377bbb3a0deb78b98fdc6c43555791e2.zip |
Revert "Show problems from other files for gobuild and gometalinter"
This reverts commit e721f851b41b8f6f31067ae2a137019e1cb5546c.
Diffstat (limited to 'ale_linters/go')
-rw-r--r-- | ale_linters/go/gobuild.vim | 10 | ||||
-rw-r--r-- | ale_linters/go/gometalinter.vim | 5 |
2 files changed, 8 insertions, 7 deletions
diff --git a/ale_linters/go/gobuild.vim b/ale_linters/go/gobuild.vim index 783b9e0a..143c2fd0 100644 --- a/ale_linters/go/gobuild.vim +++ b/ale_linters/go/gobuild.vim @@ -1,5 +1,4 @@ -" Author: Joshua Rubin <joshua@rubixconsulting.com>, Ben Reedy <https://github.com/breed808>, -" Jeff Willette <jrwillette88@gmail.com> +" Author: Joshua Rubin <joshua@rubixconsulting.com>, Ben Reedy <https://github.com/breed808> " Description: go build for Go files " inspired by work from dzhou121 <dzhou121@gmail.com> @@ -40,12 +39,15 @@ 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], diff --git a/ale_linters/go/gometalinter.vim b/ale_linters/go/gometalinter.vim index 7f75c44e..f1abfc83 100644 --- a/ale_linters/go/gometalinter.vim +++ b/ale_linters/go/gometalinter.vim @@ -1,4 +1,4 @@ -" Author: Ben Reedy <https://github.com/breed808>, Jeff Willette <jrwillette88@gmail.com> +" Author: Ben Reedy <https://github.com/breed808> " Description: Adds support for the gometalinter suite for Go files call ale#Set('go_gometalinter_options', '') @@ -14,6 +14,7 @@ function! ale_linters#go#gometalinter#GetCommand(buffer) abort let l:options = ale#Var(a:buffer, 'go_gometalinter_options') return ale#Escape(l:executable) + \ . ' --include=' . ale#Escape('^' . ale#util#EscapePCRE(l:filename)) \ . (!empty(l:options) ? ' ' . l:options : '') \ . ' ' . ale#Escape(fnamemodify(l:filename, ':h')) endfunction @@ -25,12 +26,10 @@ function! ale_linters#go#gometalinter#GetMatches(lines) abort endfunction function! ale_linters#go#gometalinter#Handler(buffer, lines) abort - let l:dir = expand('#' . a:buffer . ':p:h') let l:output = [] for l:match in ale_linters#go#gometalinter#GetMatches(a:lines) call add(l:output, { - \ 'filename': ale#path#GetAbsPath(l:dir, l:match[1]), \ 'lnum': l:match[2] + 0, \ 'col': l:match[3] + 0, \ 'type': tolower(l:match[4]) is# 'warning' ? 'W' : 'E', |