1.PHONY: check test fmt clippy
2all: check
3
4test:
5 cargo test
6
7fmt:
8 cargo fmt --package links --package constellation --package ufos
9 cargo +nightly fmt --package jetstream
10
11clippy:
12 cargo clippy --all-targets --all-features -- -D warnings
13
14check: test fmt clippy