blob: 1308ec84f1dab974ab0292d94dd37e9f84dce946 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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',
\ ])
|