···1_default:
2 @just --list --unsorted --justfile {{justfile()}}
3004[working-directory: 'frontend']
5-# Perform setup for the frontend using `npm`
6setup-frontend:
7 npm install --no-fund --no-audit
8···10dev:
11 cargo tauri dev
120000013# Connect and run on an Android VM/Physical device
14dev-android:
15 cargo tauri android dev
1617-[working-directory: 'backend']
18# Run a check on the backend
019check-backend:
20 cargo check
21 cargo clippy --fix --allow-dirty --allow-staged -- -D warnings
220023[working-directory: 'frontend']
24-# Run lint on the frontend
25check-frontend:
26 npm run lint
27
···1_default:
2 @just --list --unsorted --justfile {{justfile()}}
34+5+# Perform setup for the frontend using `npm`
6[working-directory: 'frontend']
07setup-frontend:
8 npm install --no-fund --no-audit
9···11dev:
12 cargo tauri dev
1314+# Format everything
15+fmt:
16+ cd backend && cargo fmt
17+ cd frontend && npm run format
18+19# Connect and run on an Android VM/Physical device
20dev-android:
21 cargo tauri android dev
22023# Run a check on the backend
24+[working-directory: 'backend']
25check-backend:
26 cargo check
27 cargo clippy --fix --allow-dirty --allow-staged -- -D warnings
2829+30+# Run lint on the frontend
31[working-directory: 'frontend']
032check-frontend:
33 npm run lint
34