mirror of
https://github.com/dense-analysis/ale.git
synced 2026-02-20 00:28:35 +08:00
* Add support for Microsoft's DSL Bicep The compilation command 'bicep build' catches compilation errors as well as providing some lint warnings. Repository for Bicep: https://github.com/Azure/bicep * Different null file on Windows & hardcode commands
22 lines
642 B
Plaintext
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 %t'
|
|
else
|
|
AssertLinter 'bicep', ale#Escape('bicep') . ' build --outfile /dev/null %t'
|
|
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 %t'
|
|
else
|
|
AssertLinter 'foobar', ale#Escape('foobar') . ' build --outfile /dev/null %t'
|
|
endif
|