mirror of
https://github.com/dense-analysis/ale
synced 2024-12-17 20:05:31 +00:00
19437e25d0
* Create rflint.vim support for robot framework by creating ale definition for rflint syntax linter * robot framework - rflint support
21 lines
577 B
Plaintext
21 lines
577 B
Plaintext
Before:
|
|
call ale#assert#SetUpLinterTest('robot', 'rflint')
|
|
let b:rflint_format = ' --format'
|
|
\ . ' "{filename}:{severity}:{linenumber}:{char}:{rulename}:{message}" %s'
|
|
|
|
After:
|
|
call ale#assert#TearDownLinterTest()
|
|
unlet! b:rflint_format
|
|
|
|
Execute(The rflint command callback should return default string):
|
|
AssertLinter 'rflint',
|
|
\ 'rflint'
|
|
\ . b:rflint_format
|
|
|
|
Execute(The rflint executable should be configurable):
|
|
let g:ale_robot_rflint_executable = '~/.local/bin/rflint'
|
|
|
|
AssertLinter '~/.local/bin/rflint',
|
|
\ '~/.local/bin/rflint'
|
|
\ . b:rflint_format
|