-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
justfile
45 lines (37 loc) · 1.15 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
_list:
@just --list
# Lint workspace.
clippy:
cargo clippy --workspace --all-targets -- -D warnings
# Lint workspace and watch for changes.
clippy-watch:
cargo watch -- cargo clippy --workspace --all-features
# Apply possible linting fixes in the workspace.
clippy-fix *args:
cargo clippy --workspace --all-features --fix {{ args }}
cargo +nightly fmt
# Test workspace.
test:
cargo test --workspace --all-features
# Document workspace.
doc:
RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --all-features
# Document workspace and watch for changes.
doc-watch:
RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --all-features --open
cargo watch -- RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --all-features
# Check project formatting and lints.
check:
just --unstable --fmt --check
prettier --check $(fd --hidden -e=md -e=yml)
taplo lint
cargo +nightly fmt -- --check
@just clippy
cargo msrv verify
# Format project.
fmt:
just --unstable --fmt
nix fmt
prettier --write $(fd --hidden -e=md -e=yml)
taplo format
cargo +nightly fmt