2017-01-12 09:33:55 +00:00
|
|
|
" Author: Daniel Schemala <istjanichtzufassen@gmail.com>
|
|
|
|
" Description: rustc invoked by cargo for rust files
|
|
|
|
|
2017-01-22 14:54:57 +00:00
|
|
|
function! ale_linters#rust#cargo#GetCargoExecutable(bufnr) abort
|
2017-01-12 09:33:55 +00:00
|
|
|
if ale#util#FindNearestFile(a:bufnr, 'Cargo.toml') !=# ''
|
|
|
|
return 'cargo'
|
|
|
|
else
|
|
|
|
" if there is no Cargo.toml file, we don't use cargo even if it exists,
|
|
|
|
" so we return '', because executable('') apparently always fails
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('rust', {
|
|
|
|
\ 'name': 'cargo',
|
2017-01-13 09:23:03 +00:00
|
|
|
\ 'executable_callback': 'ale_linters#rust#cargo#GetCargoExecutable',
|
2017-02-06 08:21:06 +00:00
|
|
|
\ 'command': 'cargo build --message-format=json -q',
|
2017-02-07 21:17:03 +00:00
|
|
|
\ 'callback': 'ale#handlers#rust#HandleRustErrors',
|
2017-02-06 08:21:06 +00:00
|
|
|
\ 'output_stream': 'stdout',
|
2017-01-12 09:33:55 +00:00
|
|
|
\})
|