2017-07-09 21:39:33 +00:00
|
|
|
" Author: Jake Zimmerman <jake@zimmerman.io>
|
|
|
|
" Description: Like stack-ghc, but for entire projects
|
|
|
|
"
|
|
|
|
" Note: Ideally, this would *only* typecheck. Right now, it also does codegen.
|
|
|
|
" See <https://github.com/commercialhaskell/stack/issues/977>.
|
|
|
|
|
2017-07-11 12:05:13 +00:00
|
|
|
call ale#Set('haskell_stack_build_options', '--fast')
|
|
|
|
|
|
|
|
function ale_linters#haskell#stack_build#GetCommand(buffer) abort
|
|
|
|
let l:flags = ale#Var(a:buffer, 'haskell_stack_build_options')
|
|
|
|
|
|
|
|
return 'stack build ' . l:flags
|
|
|
|
endfunction
|
|
|
|
|
2017-07-09 21:39:33 +00:00
|
|
|
call ale#linter#Define('haskell', {
|
|
|
|
\ 'name': 'stack-build',
|
|
|
|
\ 'output_stream': 'stderr',
|
|
|
|
\ 'executable': 'stack',
|
2017-07-11 12:05:13 +00:00
|
|
|
\ 'command_callback': 'ale_linters#haskell#stack_build#GetCommand',
|
2017-07-09 21:39:33 +00:00
|
|
|
\ 'lint_file': 1,
|
|
|
|
\ 'callback': 'ale#handlers#haskell#HandleGHCFormat',
|
|
|
|
\})
|