From 537392589bdc126841fb27a659cc72b389c140f5 Mon Sep 17 00:00:00 2001 From: Yeonsoo Kim Date: Sat, 25 Nov 2017 17:32:46 +0900 Subject: [PATCH] fix check all option by removing --tests --- lib/mode.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mode.coffee b/lib/mode.coffee index e59bc76..ef8df9a 100644 --- a/lib/mode.coffee +++ b/lib/mode.coffee @@ -175,7 +175,7 @@ buildCargoArguments = (linter, cargoManifestPath) -> cargoArgs = switch linter.cargoCommand when 'check' then ['check'] - when 'check all' then ['check', '--all', '--tests'] + when 'check all' then ['check', '--all'] when 'test' then ['test', '--no-run'] when 'rustc' then ['rustc', '--color', 'never'] when 'clippy' then ['clippy']