From c8d8fad2944e4c772e9e9400f937301ebb89b4e0 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sun, 13 Nov 2016 00:08:14 -0800 Subject: [PATCH] Update project justfile to take advantage of 0.2.21 (#104) Fixed an error where certain patterns of recipe dependencies were causing a spurious circular dependency error, and added quiet recipes. --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 69af53e..f115d09 100644 --- a/justfile +++ b/justfile @@ -59,14 +59,14 @@ install-dev-deps: cargo install -f cargo-check # everyone's favorite animate paper clip -clippy: +clippy: lint rustup run nightly cargo clippy # count non-empty lines of code sloc: @cat src/*.rs | sed '/^\s*$/d' | wc -l -lint: +@lint: echo Checking for FIXME/TODO... ! grep --color -En 'FIXME|TODO' src/*.rs echo Checking for long lines...