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:
P M
2018-04-05 21:09:41 +02:00
committed by w0rp
parent 912f632bf5
commit 85a2a00826
6 changed files with 99 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
Before:
runtime ale_linters/qml/qmlfmt.vim
After:
let g:ale_qml_qmlfmt_executable = 'qmlfmt'
call ale#linter#Reset()
Execute(The qml qmlfmt command callback should return the correct default string):
AssertEqual ale#Escape('qmlfmt') . ' -e',
\ join(split(ale_linters#qml#qmlfmt#GetCommand(1)))
Execute(The qmlfmt executable should be configurable):
let g:ale_qml_qmlfmt_executable = '~/.local/bin/qmlfmt'
AssertEqual '~/.local/bin/qmlfmt', ale_linters#qml#qmlfmt#GetExecutable(1)
AssertEqual ale#Escape('~/.local/bin/qmlfmt') . ' -e',
\ join(split(ale_linters#qml#qmlfmt#GetCommand(1)))