17 lines
460 B
VimL
17 lines
460 B
VimL
|
" Author: wizzup <wizzup@gmail.com>
|
||
|
" Description: ghc-mod for Haskell files
|
||
|
|
||
|
call ale#linter#Define('haskell', {
|
||
|
\ 'name': 'ghc-mod',
|
||
|
\ 'executable': 'ghc-mod',
|
||
|
\ 'command': 'ghc-mod check %t',
|
||
|
\ 'callback': 'ale#handlers#haskell#HandleGHCFormat',
|
||
|
\})
|
||
|
|
||
|
call ale#linter#Define('haskell', {
|
||
|
\ 'name': 'stack-ghc-mod',
|
||
|
\ 'executable': 'stack',
|
||
|
\ 'command': 'stack exec ghc-mod check %t',
|
||
|
\ 'callback': 'ale#handlers#haskell#HandleGHCFormat',
|
||
|
\})
|