2018-03-31 10:55:20 -04:00
|
|
|
" Author: wizzup <wizzup@gmail.com>
|
|
|
|
" Description: ghc-mod for Haskell files
|
|
|
|
|
|
|
|
call ale#linter#Define('haskell', {
|
2018-07-30 17:18:16 -04:00
|
|
|
\ 'name': 'ghc_mod',
|
|
|
|
\ 'aliases': ['ghc-mod'],
|
2018-03-31 10:55:20 -04:00
|
|
|
\ 'executable': 'ghc-mod',
|
|
|
|
\ 'command': 'ghc-mod --map-file %s=%t check %s',
|
|
|
|
\ 'callback': 'ale#handlers#haskell#HandleGHCFormat',
|
|
|
|
\})
|
|
|
|
|
|
|
|
call ale#linter#Define('haskell', {
|
2018-07-30 17:18:16 -04:00
|
|
|
\ 'name': 'stack_ghc_mod',
|
|
|
|
\ 'aliases': ['stack-ghc-mod'],
|
2018-03-31 10:55:20 -04:00
|
|
|
\ 'executable': 'stack',
|
|
|
|
\ 'command': 'stack exec ghc-mod -- --map-file %s=%t check %s',
|
|
|
|
\ 'callback': 'ale#handlers#haskell#HandleGHCFormat',
|
|
|
|
\})
|