107516c757
* Add basic qmllint support * Use temp file, remove superfluous error code key, adjust author info * Add qmllint handler parse test
20 lines
392 B
Plaintext
20 lines
392 B
Plaintext
Before:
|
|
runtime ale_linters/qml/qmllint.vim
|
|
|
|
After:
|
|
call ale#linter#Reset()
|
|
|
|
Execute(The qmllint handler should parse error messages correctly):
|
|
AssertEqual
|
|
\ [
|
|
\ {
|
|
\ 'lnum': 2,
|
|
\ 'col': 0,
|
|
\ 'type': 'E',
|
|
\ 'text': 'Expected token ''}'''
|
|
\ }
|
|
\ ],
|
|
\ ale_linters#qml#qmllint#Handle(1, [
|
|
\ '/tmp/ab34cd56/Test.qml:2 : Expected token ''}'''
|
|
\ ])
|