7c643a2d9c
Read more here: https://github.com/w0rp/ale
17 lines
416 B
VimL
17 lines
416 B
VimL
" Author: Andrey Popp -- @andreypopp
|
|
" Description: Report errors in ReasonML code with Merlin
|
|
|
|
if !exists('g:merlin')
|
|
finish
|
|
endif
|
|
|
|
function! ale_linters#reason#merlin#Handle(buffer, lines) abort
|
|
return merlin#ErrorLocList()
|
|
endfunction
|
|
|
|
call ale#linter#Define('reason', {
|
|
\ 'name': 'merlin',
|
|
\ 'executable': 'ocamlmerlin',
|
|
\ 'command': 'true',
|
|
\ 'callback': 'ale_linters#reason#merlin#Handle',
|
|
\})
|