···6060As you go, please run these `just` commands every-so-often and before you commit:
61616262- `just fmt`: Formats all files in the repo
6363-- `just check-backend`: Check (and fix) potential issues on the backend
6464- (only need to run if you edited the backend)
6363+- `just check-rust`: Check (and fix) potential issues with Rust code
6464+ (only need to run if you edited the backend or signaling)
6565- `just check-frontend`: Check for potential issues on the frontend
6666 (only need to run if you edited the frontend)
6767- `just check-signaling`: Same thing as backend but for the singaling server
+1-8
justfile
···2121 cargo tauri android dev
22222323# Run a check on the backend
2424-[working-directory('backend')]
2525-check-backend:
2626- cargo fmt --check
2727- cargo check
2828- cargo clippy --fix --allow-dirty --allow-staged -- -D warnings
2929-3030-[working-directory('manhunt-signaling')]
3131-check-signaling:
2424+check-rust:
3225 cargo fmt --check
3326 cargo check
3427 cargo clippy --fix --allow-dirty --allow-staged -- -D warnings