Skip to content

Commit

Permalink
Replace Makefile with justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
yukibtc committed Aug 18, 2024
1 parent 0318a08 commit c98a4c6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 34 deletions.
34 changes: 0 additions & 34 deletions Makefile

This file was deleted.

12 changes: 12 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env just --justfile

precommit:
cargo fmt
cargo clippy
cargo clippy --features blocking

check:
cargo fmt --all -- --config format_code_in_doc_comments=true
cargo check
cargo clippy -- -D warnings
cargo clippy --features blocking -- -D warnings

0 comments on commit c98a4c6

Please sign in to comment.