2017-11-15 17:21:17 +00:00
|
|
|
Before:
|
2017-03-18 16:33:26 +00:00
|
|
|
runtime ale_linters/nim/nimcheck.vim
|
2017-11-15 17:21:17 +00:00
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#linter#Reset()
|
|
|
|
|
|
|
|
Execute(Parsing nim errors should work):
|
2017-05-06 22:06:51 +00:00
|
|
|
silent file foobar.nim
|
2017-03-18 16:33:26 +00:00
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 8,
|
|
|
|
\ 'col': 8,
|
2017-11-19 00:38:00 +00:00
|
|
|
\ 'text': 'use {.base.} for base methods; baseless methods are deprecated',
|
|
|
|
\ 'code': 'UseBase',
|
2017-03-18 16:33:26 +00:00
|
|
|
\ 'type': 'W',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 12,
|
|
|
|
\ 'col': 2,
|
2017-11-19 00:38:00 +00:00
|
|
|
\ 'text': 'identifier expected, but found ''a.barfoo''',
|
2017-03-18 16:33:26 +00:00
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 2,
|
|
|
|
\ 'col': 5,
|
2017-11-19 00:38:00 +00:00
|
|
|
\ 'text': '''NotUsed'' is declared but not used',
|
|
|
|
\ 'code': 'XDeclaredButNotUsed',
|
2017-03-18 16:33:26 +00:00
|
|
|
\ 'type': 'W',
|
|
|
|
\ },
|
2017-03-22 09:11:32 +00:00
|
|
|
\ {
|
|
|
|
\ 'lnum': 12,
|
|
|
|
\ 'col': 2,
|
2017-11-19 00:38:00 +00:00
|
|
|
\ 'text': 'with : character',
|
2017-03-22 09:11:32 +00:00
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
2017-03-18 16:33:26 +00:00
|
|
|
\ ],
|
2017-05-06 22:06:51 +00:00
|
|
|
\ ale_linters#nim#nimcheck#Handle(bufnr(''), [
|
2017-03-18 16:33:26 +00:00
|
|
|
\ 'Line with wrong( format)',
|
|
|
|
\ 'foobar.nim(8, 8) Warning: use {.base.} for base methods; baseless methods are deprecated [UseBase]',
|
|
|
|
\ 'foobar.nim(12, 2) Error: identifier expected, but found ''a.barfoo''',
|
|
|
|
\ '/nested/folder/foobar.nim(2, 5) Hint: ''NotUsed'' is declared but not used [XDeclaredButNotUsed]',
|
2017-03-22 09:11:32 +00:00
|
|
|
\ 'foobar.nim(12, 2) Error: with : character',
|
2017-03-18 16:33:26 +00:00
|
|
|
\ ])
|