Escape JavaScript executables in commands

This commit is contained in:
w0rp
2017-05-07 16:19:40 +01:00
parent 4228c503f4
commit 05bd4f591c
5 changed files with 5 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ function! ale_linters#javascript#xo#GetExecutable(buffer) abort
endfunction
function! ale_linters#javascript#xo#GetCommand(buffer) abort
return ale_linters#javascript#xo#GetExecutable(a:buffer)
return fnameescape(ale_linters#javascript#xo#GetExecutable(a:buffer))
\ . ' ' . ale#Var(a:buffer, 'javascript_xo_options')
\ . ' --reporter unix --stdin --stdin-filename %s'
endfunction