diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-09-26 15:38:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-26 15:38:15 +0100 |
commit | 58ceb21cbc10a05f376664da31c8d7621e6d3669 (patch) | |
tree | 838f66cea354fcec1861c4b2a5923ea0a1af8815 /ale_linters/haskell/hlint.vim | |
parent | 143c3cd09f52996c90b78059275a400d3c2327b0 (diff) | |
parent | bd32b7c856937cfe8dae67907b9bde19b6bccb80 (diff) | |
download | ale-58ceb21cbc10a05f376664da31c8d7621e6d3669.zip |
Merge pull request #1908 from KtorZ/master
Allow extra options to be passed to haskell:hlint
Diffstat (limited to 'ale_linters/haskell/hlint.vim')
-rw-r--r-- | ale_linters/haskell/hlint.vim | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/ale_linters/haskell/hlint.vim b/ale_linters/haskell/hlint.vim index be40d92c..3ee864bf 100644 --- a/ale_linters/haskell/hlint.vim +++ b/ale_linters/haskell/hlint.vim @@ -1,6 +1,9 @@ " Author: jparoz <jesse.paroz@gmail.com> " Description: hlint for Haskell files +call ale#Set('haskell_hlint_executable', 'hlint') +call ale#Set('haskell_hlint_options', get(g:, 'hlint_options', '')) + function! ale_linters#haskell#hlint#Handle(buffer, lines) abort let l:output = [] @@ -26,9 +29,17 @@ function! ale_linters#haskell#hlint#Handle(buffer, lines) abort return l:output endfunction +function! ale_linters#haskell#hlint#GetCommand(buffer) abort + let l:hlintopts = '--color=never --json' + + return '%e' + \ . ' ' . ale#Var(a:buffer, 'haskell_hlint_options') + \ . ' ' . l:hlintopts . ' -' +endfunction + call ale#linter#Define('haskell', { \ 'name': 'hlint', -\ 'executable': 'hlint', -\ 'command': 'hlint --color=never --json -', +\ 'executable_callback': ale#VarFunc('haskell_hlint_executable'), +\ 'command_callback': 'ale_linters#haskell#hlint#GetCommand', \ 'callback': 'ale_linters#haskell#hlint#Handle', \}) |