mirror of https://github.com/dense-analysis/ale
Merge pull request #981 from Kazark/fix-elm-win32
Fix Elm linter for Windows (resolves #980)
This commit is contained in:
commit
65aa88a7d5
|
@ -71,11 +71,11 @@ function! ale_linters#elm#make#GetCommand(buffer) abort
|
||||||
|
|
||||||
" The elm-make compiler, at the time of this writing, uses '/dev/null' as
|
" The elm-make compiler, at the time of this writing, uses '/dev/null' as
|
||||||
" a sort of flag to tell the compiler not to generate an output file,
|
" a sort of flag to tell the compiler not to generate an output file,
|
||||||
" which is why this is hard coded here.
|
" which is why this is hard coded here. It does not use NUL on Windows.
|
||||||
" Source: https://github.com/elm-lang/elm-make/blob/master/src/Flags.hs
|
" Source: https://github.com/elm-lang/elm-make/blob/master/src/Flags.hs
|
||||||
let l:elm_cmd = ale#Escape(l:elm_exe)
|
let l:elm_cmd = ale#Escape(l:elm_exe)
|
||||||
\ . ' --report=json'
|
\ . ' --report=json'
|
||||||
\ . ' --output=' . ale#Escape(g:ale#util#nul_file)
|
\ . ' --output=/dev/null'
|
||||||
|
|
||||||
return l:dir_set_cmd . ' ' . l:elm_cmd . ' %t'
|
return l:dir_set_cmd . ' ' . l:elm_cmd . ' %t'
|
||||||
endfunction
|
endfunction
|
||||||
|
|
Loading…
Reference in New Issue