summaryrefslogtreecommitdiff
path: root/ale_linters/haskell/hlint.vim
blob: 5b870e3de1c5be58d9e1229665b1363736dfb00c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
" Author: jparoz <jesse.paroz@gmail.com>
" Description: hlint for Haskell files

function! ale_linters#haskell#hlint#Handle(buffer, lines) abort
    let l:errors = json_decode(join(a:lines, ''))

    let l:output = []

    for l:error in l:errors
        " vcol is Needed to indicate that the column is a character.
        call add(l:output, {
        \   'bufnr': a:buffer,
        \   'lnum': l:error.startLine + 0,
        \   'vcol': 0,
        \   'col': l:error.startColumn + 0,
        \   'text': l:error.severity . ': ' . l:error.hint . '. Found: ' . l:error.from . ' Why not: ' . l:error.to,
        \   'type': l:error.severity ==# 'Error' ? 'E' : 'W',
        \})
    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',
\})