2016-10-19 12:27:03 +00:00
|
|
|
" Author: jparoz <jesse.paroz@gmail.com>
|
|
|
|
" Description: hlint for Haskell files
|
|
|
|
|
2017-01-22 14:54:57 +00:00
|
|
|
function! ale_linters#haskell#hlint#Handle(buffer, lines) abort
|
2016-10-19 12:27:03 +00:00
|
|
|
let l:output = []
|
|
|
|
|
2017-07-26 23:45:25 +00:00
|
|
|
for l:error in ale#util#FuzzyJSONDecode(a:lines, [])
|
2017-08-08 07:39:13 +00:00
|
|
|
if l:error.severity is# 'Error'
|
2017-07-18 12:14:02 +00:00
|
|
|
let l:type = 'E'
|
2017-08-08 07:39:13 +00:00
|
|
|
elseif l:error.severity is# 'Suggestion'
|
2017-07-18 12:14:02 +00:00
|
|
|
let l:type = 'I'
|
|
|
|
else
|
|
|
|
let l:type = 'W'
|
|
|
|
endif
|
|
|
|
|
2016-10-19 12:27:03 +00:00
|
|
|
call add(l:output, {
|
2017-07-18 12:14:02 +00:00
|
|
|
\ 'lnum': str2nr(l:error.startLine),
|
|
|
|
\ 'col': str2nr(l:error.startColumn),
|
|
|
|
\ 'end_lnum': str2nr(l:error.endLine),
|
|
|
|
\ 'end_col': str2nr(l:error.endColumn),
|
2016-12-14 12:50:14 +00:00
|
|
|
\ 'text': l:error.severity . ': ' . l:error.hint . '. Found: ' . l:error.from . ' Why not: ' . l:error.to,
|
2017-07-18 12:14:02 +00:00
|
|
|
\ 'type': l:type,
|
2016-10-19 12:27:03 +00:00
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:output
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('haskell', {
|
|
|
|
\ 'name': 'hlint',
|
|
|
|
\ 'executable': 'hlint',
|
|
|
|
\ 'command': 'hlint --color=never --json -',
|
|
|
|
\ 'callback': 'ale_linters#haskell#hlint#Handle',
|
|
|
|
\})
|