diff options
Diffstat (limited to 'ale_linters/bicep')
-rw-r--r-- | ale_linters/bicep/bicep.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/bicep/bicep.vim b/ale_linters/bicep/bicep.vim index 5796f83e..91cc1986 100644 --- a/ale_linters/bicep/bicep.vim +++ b/ale_linters/bicep/bicep.vim @@ -26,7 +26,7 @@ function! ale_linters#bicep#bicep#Command(buffer) abort \ . l:nullfile \ . ' ' \ . l:options - \ . ' %t' + \ . ' %s' endfunction function! ale_linters#bicep#bicep#Handle(buffer, lines) abort @@ -60,4 +60,5 @@ call ale#linter#Define('bicep', { \ 'command': function('ale_linters#bicep#bicep#Command'), \ 'callback': 'ale_linters#bicep#bicep#Handle', \ 'output_stream': 'both', +\ 'lint_file': 1, \}) |