Add support for nim check

This commit is contained in:
baabelfish
2017-03-18 18:33:26 +02:00
parent e7d32fe376
commit 297bc8553c
4 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
Execute(Parsing nim errors should work):
runtime ale_linters/nim/nimcheck.vim
AssertEqual
\ [
\ {
\ 'bufnr': 42,
\ 'lnum': 8,
\ 'col': 8,
\ 'text': 'Warning: use {.base.} for base methods; baseless methods are deprecated [UseBase]',
\ 'type': 'W',
\ },
\ {
\ 'bufnr': 42,
\ 'lnum': 12,
\ 'col': 2,
\ 'text': 'Error: identifier expected, but found ''a.barfoo''',
\ 'type': 'E',
\ },
\ {
\ 'bufnr': 42,
\ 'lnum': 2,
\ 'col': 5,
\ 'text': 'Hint: ''NotUsed'' is declared but not used [XDeclaredButNotUsed]',
\ 'type': 'W',
\ },
\ ],
\ ale_linters#nim#nimcheck#Handle(42, [
\ '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]',
\ ])