diff --git a/justfile b/justfile index 194f949..d0b12a2 100644 --- a/justfile +++ b/justfile @@ -3,10 +3,15 @@ _default: # run doc, clippy, and test recipies all *args: + just fmt {{args}} just doc {{args}} just clippy {{args}} just test {{args}} +# Format all code +fmt *args: + cargo fmt --all {{args}} + # run tests on all feature combinations test *args: cargo hack test --feature-powerset {{args}}