mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-03 10:50:31 +08:00
18 lines
392 B
VimL
Vendored
18 lines
392 B
VimL
Vendored
function! ale#fixers#deno#Fix(buffer) abort
|
|
let l:executable = ale#handlers#deno#GetExecutable(a:buffer)
|
|
|
|
if !executable(l:executable)
|
|
return 0
|
|
endif
|
|
|
|
let l:options = ' fmt -'
|
|
|
|
if ale#Var(a:buffer, 'deno_unstable')
|
|
let l:options = l:options . ' --unstable'
|
|
endif
|
|
|
|
return {
|
|
\ 'command': ale#Escape(l:executable) . l:options
|
|
\}
|
|
endfunction
|