Add SyntaxErl linter

These changes add [SyntaxErl][1] integration.  SyntaxErl is a syntax
checker tool for Erlang.

[1]: https://github.com/ten0s/syntaxerl
This commit is contained in:
Dmitri Vereshchagin
2017-07-16 14:35:43 +03:00
parent 4fa66ab627
commit 1aea6a34ff
5 changed files with 75 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
Before:
runtime ale_linters/erlang/syntaxerl.vim
After:
call ale#linter#Reset()
Execute:
AssertEqual
\ [
\ {
\ 'lnum': 42,
\ 'text': "syntax error before: ','",
\ 'type': 'E',
\ },
\ {
\ 'lnum': 42,
\ 'text': 'function foo/0 is unused',
\ 'type': 'W',
\ },
\ ],
\ ale_linters#erlang#syntaxerl#Handle(42, [
\ "/tmp/v2wDixk/1/module.erl:42: syntax error before: ','",
\ '/tmp/v2wDixk/2/module.erl:42: warning: function foo/0 is unused',
\ ])