blob: 263caea72c6c7bb78c39df74e56dd94636eb5704 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)))
|