Add linter for haskell-language-server

The patch adds a new linter for haskell-language-server (hls). hls is
the integration point of haskell-ide-engine (hie) and ghcide.
This commit is contained in:
yen3
2020-11-30 09:05:33 +01:00
parent 2d07fa0cc2
commit e5e851fadc
6 changed files with 105 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
Before:
call ale#assert#SetUpLinterTest('haskell', 'hls')
Save &filetype
let &filetype = 'haskell'
After:
call ale#assert#TearDownLinterTest()
Execute(The language string should be correct):
AssertLSPLanguage 'haskell'
Execute(The default executable should be correct):
AssertLinter 'haskell-language-server-wrapper',
\ ale#Escape('haskell-language-server-wrapper') . ' --lsp'
Execute(The project root should be detected correctly):
AssertLSPProject g:dir
call ale#test#SetFilename('hls_paths/file.hs')
AssertLSPProject ale#path#Simplify(g:dir . '/hls_paths')
Execute(The executable should be configurable):
let g:ale_haskell_hls_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' --lsp'