mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-09 13:02:28 +08:00
Integration of qmlfmt linting tool (#1462)
* Add first qmlfmt support * Add GetCommand() function - pass --error/-e option * Add handle unittest - fix pattern regex - store col as integer * Update docs * Add command callback unit test
This commit is contained in:
19
test/handler/test_qmlfmt_handler.vader
Normal file
19
test/handler/test_qmlfmt_handler.vader
Normal file
@@ -0,0 +1,19 @@
|
||||
Before:
|
||||
runtime ale_linters/qml/qmlfmt.vim
|
||||
|
||||
After:
|
||||
call ale#linter#Reset()
|
||||
|
||||
Execute(The qmlfmt handler should parse error messages correctly):
|
||||
AssertEqual
|
||||
\ [
|
||||
\ {
|
||||
\ 'lnum': 22,
|
||||
\ 'col': 1,
|
||||
\ 'type': 'E',
|
||||
\ 'text': 'Expected token ''}''.'
|
||||
\ }
|
||||
\ ],
|
||||
\ ale_linters#qml#qmlfmt#Handle(1, [
|
||||
\ 'Error:22:1: Expected token ''}''.'
|
||||
\ ])
|
||||
Reference in New Issue
Block a user