" Author: Joshua Rubin , Ben Reedy " Description: go build for Go files " inspired by work from dzhou121 function! ale_linters#go#gobuild#GoEnv(buffer) abort if exists('s:go_env') return '' endif return 'go env GOPATH GOROOT' endfunction function! ale_linters#go#gobuild#GetCommand(buffer, goenv_output) abort if !exists('s:go_env') let s:go_env = { \ 'GOPATH': a:goenv_output[0], \ 'GOROOT': a:goenv_output[1], \} endif " Run go test in local directory with relative path return 'GOPATH=' . s:go_env.GOPATH \ . ' cd ' . fnamemodify(bufname(a:buffer), ':.:h') \ . ' && go test -c -o /dev/null ./' endfunction function! ale_linters#go#gobuild#GetMatches(lines) abort " Matches patterns like the following: " " file.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args " file.go:53:10: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) " file.go:5:2: expected declaration, found 'STRING' "log" " go test returns relative paths so use tail of filename as part of pattern matcher let l:pattern = '\v^([a-zA-Z]?:?[^:]+):(\d+):?(\d+)?:? (.+)$' return ale#util#GetMatches(a:lines, l:pattern) endfunction function! ale_linters#go#gobuild#Handler(buffer, lines) abort 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, { \ 'lnum': l:match[2] + 0, \ 'col': l:match[3] + 0, \ 'text': l:match[4], \ 'type': 'E', \}) endfor return l:output endfunction call ale#linter#Define('go', { \ 'name': 'go build', \ 'executable': 'go', \ 'command_chain': [ \ {'callback': 'ale_linters#go#gobuild#GoEnv', 'output_stream': 'stdout'}, \ {'callback': 'ale_linters#go#gobuild#GetCommand', 'output_stream': 'stderr'}, \ ], \ 'callback': 'ale_linters#go#gobuild#Handler', \ 'lint_file': 1, \})