Add support for Erlang dialyzer (#2509)

* Add support for Erlang dialyzer
* Add an option to specify rebar3 profile

In doing so, the use of the `**` wildcard becomes unnecessary.
This commit is contained in:
Antoine Gagné
2019-05-19 16:16:17 -04:00
committed by w0rp
parent 652d991077
commit 3b7c86e401
5 changed files with 187 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
Before:
runtime ale_linters/erlang/dialyzer.vim
After:
call ale#linter#Reset()
Execute(The dialyzer handler should handle error messages.):
AssertEqual
\[
\ {
\ 'lnum': 3,
\ 'lcol': 0,
\ 'text': 'Callback info about the provider behaviour is not available',
\ 'type': 'W'
\ }
\],
\ ale_linters#erlang#dialyzer#Handle(bufnr(''), ['erl_tidy_prv_fmt.erl:3: Callback info about the provider behaviour is not available'])
Execute(The dialyzer handler should handle empty file.):
AssertEqual
\[],
\ ale_linters#erlang#dialyzer#Handle(bufnr(''), [])
Execute(The dialyzer handler should handle empty lines.):
AssertEqual
\[],
\ ale_linters#erlang#dialyzer#Handle(bufnr(''), [''])