diff options
author | Rob Berry <rob@luvhate.us> | 2017-02-14 22:47:53 +0000 |
---|---|---|
committer | Rob Berry <rob@luvhate.us> | 2017-02-17 17:18:38 +0000 |
commit | 06fe8a043f5046405327984ab05641d3280f4cbc (patch) | |
tree | b8004a738659cc23e7feef8ae67b6341d3cf444a /autoload | |
parent | c4afd727926ec11d1f980847c48f0828784402d6 (diff) | |
download | ale-06fe8a043f5046405327984ab05641d3280f4cbc.zip |
Add hdevtools linter for haskell
This adds support for the hdevtools haskell linter
https://github.com/hdevtools/hdevtools
The output for hdevtools is near identical to the ghc output so this
also extracts the ghc handler into the handle file and adds tests
* Add testing for previous major release of ghc
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/handlers.vim | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/autoload/ale/handlers.vim b/autoload/ale/handlers.vim index 22c830c9..93282a4b 100644 --- a/autoload/ale/handlers.vim +++ b/autoload/ale/handlers.vim @@ -224,18 +224,15 @@ endfunction function! ale#handlers#HandleGhcFormat(buffer, lines) abort " Look for lines like the following. " - " /dev/stdin:28:26: Not in scope: `>>>>>' - "Appoint/Lib.hs:8:1: warning: - let l:pattern = '^[^:]\+:\(\d\+\):\(\d\+\):\s\{-}\(warning\|error\)\(.\+\)$' + "Appoint/Lib.hs:8:1: warning: + "Appoint/Lib.hs:8:1: + let l:pattern = '^[^:]\+:\(\d\+\):\(\d\+\):\(.*\)\?$' let l:output = [] let l:corrected_lines = [] for l:line in a:lines if len(matchlist(l:line, l:pattern)) > 0 call add(l:corrected_lines, l:line) - if l:line !~# '\(: error\|warning\):$' - call add(l:corrected_lines, '') - endif elseif l:line ==# '' call add(l:corrected_lines, l:line) else @@ -253,13 +250,24 @@ function! ale#handlers#HandleGhcFormat(buffer, lines) abort continue endif + let l:errors = matchlist(l:match[3], '\(warning:\|error:\)\(.*\)') + + if len(l:errors) > 0 + let l:type = l:errors[1] + let l:text = l:errors[2] + else + let l:type = '' + let l:text = l:match[3] + end + let l:type = l:type ==# '' ? 'E' : toupper(l:type[0]) + call add(l:output, { \ 'bufnr': a:buffer, \ 'lnum': l:match[1] + 0, \ 'vcol': 0, \ 'col': l:match[2] + 0, - \ 'text': l:match[4], - \ 'type': toupper(l:match[3][0]), + \ 'text': l:text, + \ 'type': l:type, \ 'nr': -1, \}) endfor |