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.
This commit is contained in:
parent
0b950db17d
commit
c8d8fad294
4
justfile
4
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...
|
||||
|
Loading…
Reference in New Issue
Block a user