diff options
author | aurieh <me@aurieh.me> | 2017-10-24 15:03:47 +0300 |
---|---|---|
committer | aurieh <me@aurieh.me> | 2017-10-24 15:03:47 +0300 |
commit | 4884e33f8b2591cce635e171e776368184def406 (patch) | |
tree | ce0cba6f0e61bd76a7a0c092eba8f06818041b92 /ale_linters | |
parent | be5c7a09ced7b8fd0fa3bf964fa3364ef0751a21 (diff) | |
download | ale-4884e33f8b2591cce635e171e776368184def406.zip |
Add checkmake (resolves #866)
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/make/checkmake.vim | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ale_linters/make/checkmake.vim b/ale_linters/make/checkmake.vim new file mode 100644 index 00000000..3dd8cc91 --- /dev/null +++ b/ale_linters/make/checkmake.vim @@ -0,0 +1,24 @@ +" Author: aurieh - https://github.com/aurieh + +function! ale_linters#make#checkmake#Handle(buffer, lines) abort + let l:pattern = '\v^(\d+):(.+):(.+)$' + let l:output = [] + + for l:match in ale#util#GetMatches(a:lines, l:pattern) + let l:text = l:match[2] . ': ' . l:match[3] + call add(l:output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:match[1] + 0, + \ 'type': 'E', + \ 'text': l:text, + \}) + endfor + return l:output +endfunction + +call ale#linter#Define('make', { +\ 'name': 'checkmake', +\ 'executable': 'checkmake', +\ 'command': 'checkmake %s --format="{{.LineNumber}}:{{.Rule}}:{{.Violation}}"', +\ 'callback': 'ale_linters#make#checkmake#Handle', +\}) |