06fe8a043f
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
10 lines
256 B
VimL
10 lines
256 B
VimL
" Author: rob-b
|
|
" Description: hdevtools for Haskell files
|
|
|
|
call ale#linter#Define('haskell', {
|
|
\ 'name': 'hdevtools',
|
|
\ 'executable': 'hdevtools',
|
|
\ 'command': 'hdevtools check -g -Wall -p %s %t',
|
|
\ 'callback': 'ale#handlers#HandleGhcFormat',
|
|
\})
|