Files
ale/test/linter/test_bicep_bicep.vader
Carl Smedstad e73f0f5cb3 bicep: Lint files on disk instead of buffer (#4311)
I discovered that references to other Bicep files (modules) will be
broken if running on a temporary file in a different location. I've
found no way of providing an alternate path when invoking the command.
2022-09-21 22:44:22 +09:00

22 lines
642 B
Plaintext

Before:
call ale#assert#SetUpLinterTest('bicep', 'bicep')
After:
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
if has('win32')
AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile NUL %s'
else
AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile /dev/null %s'
endif
Execute(The executable should be configurable):
let g:ale_bicep_bicep_executable = 'foobar'
if has('win32')
AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile NUL %s'
else
AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile /dev/null %s'
endif