mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
Added support for hlint
This commit is contained in:
35
ale_linters/haskell/hlint.vim
Normal file
35
ale_linters/haskell/hlint.vim
Normal file
@@ -0,0 +1,35 @@
|
||||
" Author: jparoz <jesse.paroz@gmail.com>
|
||||
" Description: hlint for Haskell files
|
||||
|
||||
if exists('g:loaded_ale_linters_haskell_hlint')
|
||||
finish
|
||||
endif
|
||||
|
||||
let g:loaded_ale_linters_haskell_hlint = 1
|
||||
|
||||
function! ale_linters#haskell#hlint#Handle(buffer, lines)
|
||||
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,
|
||||
\ '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',
|
||||
\})
|
||||
Reference in New Issue
Block a user