Handle cython warning with custom handle and remove '--warning-errors'.

Add a custom handler to support cython warning format.
Remove '--warning-errors' to keep previous behaviour.
This commit is contained in:
Nicolas Pauss
2018-06-25 17:25:38 +02:00
committed by Nicolas Pauss
parent bedd30ee11
commit d05936a489
2 changed files with 44 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
Before:
runtime ale_linters/pyrex/cython.vim
After:
call ale#linter#Reset()
Execute(The cython handler should handle warnings and errors):
AssertEqual
\ [
\ {
\ 'lnum': 42,
\ 'col': 7,
\ 'text': 'some warning',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 777,
\ 'col': 21,
\ 'text': 'some error',
\ 'type': 'E',
\ },
\ ],
\ ale_linters#pyrex#cython#Handle(347, [
\ 'warning: file:42:7: some warning',
\ 'file:777:21: some error',
\ ])