mirror of
https://github.com/dense-analysis/ale
synced 2024-12-18 04:15:39 +00:00
9e1351499c
* Handle golangci_lint warning and error messages correctly * Fix linter warning Co-authored-by: Richard Jonas <richard.jonas@derivco.se>
65 lines
2.0 KiB
VimL
65 lines
2.0 KiB
VimL
" Author: Sascha Grunert <mail@saschagrunert.de>
|
|
" Description: Adds support of golangci-lint
|
|
|
|
call ale#Set('go_golangci_lint_options', '--enable-all')
|
|
call ale#Set('go_golangci_lint_executable', 'golangci-lint')
|
|
call ale#Set('go_golangci_lint_package', 0)
|
|
|
|
function! ale_linters#go#golangci_lint#GetCommand(buffer) abort
|
|
let l:filename = expand('#' . a:buffer . ':t')
|
|
let l:options = ale#Var(a:buffer, 'go_golangci_lint_options')
|
|
let l:lint_package = ale#Var(a:buffer, 'go_golangci_lint_package')
|
|
|
|
|
|
if l:lint_package
|
|
return ale#go#EnvString(a:buffer)
|
|
\ . '%e run '
|
|
\ . l:options
|
|
endif
|
|
|
|
return ale#go#EnvString(a:buffer)
|
|
\ . '%e run '
|
|
\ . ale#Escape(l:filename)
|
|
\ . ' ' . l:options
|
|
endfunction
|
|
|
|
function! ale_linters#go#golangci_lint#GetMatches(lines) abort
|
|
let l:pattern = '\v^([a-zA-Z]?:?[^:]+):(\d+):?(\d+)?:?:?:?\s\*?(.+)\s+\((.+)\)$'
|
|
|
|
return ale#util#GetMatches(a:lines, l:pattern)
|
|
endfunction
|
|
|
|
function! ale_linters#go#golangci_lint#Handler(buffer, lines) abort
|
|
let l:dir = expand('#' . a:buffer . ':p:h')
|
|
let l:output = []
|
|
|
|
for l:match in ale_linters#go#golangci_lint#GetMatches(a:lines)
|
|
if l:match[5] is# 'typecheck'
|
|
let l:msg_type = 'E'
|
|
else
|
|
let l:msg_type = 'W'
|
|
endif
|
|
|
|
" l:match[1] will already be an absolute path, output from
|
|
" golangci_lint
|
|
call add(l:output, {
|
|
\ 'filename': ale#path#GetAbsPath(l:dir, l:match[1]),
|
|
\ 'lnum': l:match[2] + 0,
|
|
\ 'col': l:match[3] + 0,
|
|
\ 'type': l:msg_type,
|
|
\ 'text': l:match[4] . ' (' . l:match[5] . ')',
|
|
\})
|
|
endfor
|
|
|
|
return l:output
|
|
endfunction
|
|
|
|
call ale#linter#Define('go', {
|
|
\ 'name': 'golangci-lint',
|
|
\ 'executable': {b -> ale#Var(b, 'go_golangci_lint_executable')},
|
|
\ 'cwd': '%s:h',
|
|
\ 'command': function('ale_linters#go#golangci_lint#GetCommand'),
|
|
\ 'callback': 'ale_linters#go#golangci_lint#Handler',
|
|
\ 'lint_file': 1,
|
|
\})
|