Fix rust linting with cargo when multiple targets are present

This commit is contained in:
notkild
2017-02-06 09:21:06 +01:00
parent 744d7d789f
commit 0143eb6a53
2 changed files with 10 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ endfunction
call ale#linter#Define('rust', {
\ 'name': 'cargo',
\ 'executable_callback': 'ale_linters#rust#cargo#GetCargoExecutable',
\ 'command': 'cargo rustc -- --error-format=json -Z no-trans',
\ 'command': 'cargo build --message-format=json -q',
\ 'callback': 'ale_linters#rust#rustc#HandleRustcErrors',
\ 'output_stream': 'stderr',
\ 'output_stream': 'stdout',
\})