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
|
cargo install -f cargo-check
|
||||||
|
|
||||||
# everyone's favorite animate paper clip
|
# everyone's favorite animate paper clip
|
||||||
clippy:
|
clippy: lint
|
||||||
rustup run nightly cargo clippy
|
rustup run nightly cargo clippy
|
||||||
|
|
||||||
# count non-empty lines of code
|
# count non-empty lines of code
|
||||||
sloc:
|
sloc:
|
||||||
@cat src/*.rs | sed '/^\s*$/d' | wc -l
|
@cat src/*.rs | sed '/^\s*$/d' | wc -l
|
||||||
|
|
||||||
lint:
|
@lint:
|
||||||
echo Checking for FIXME/TODO...
|
echo Checking for FIXME/TODO...
|
||||||
! grep --color -En 'FIXME|TODO' src/*.rs
|
! grep --color -En 'FIXME|TODO' src/*.rs
|
||||||
echo Checking for long lines...
|
echo Checking for long lines...
|
||||||
|
Loading…
Reference in New Issue
Block a user