Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ default:
@just --list

# Runs all ci checks.
ci: fix check lychee
ci: fix check lychee zepter

# Performs lychee checks, installing the lychee command if necessary
lychee:
Expand All @@ -24,7 +24,7 @@ lychee:
check: check-format check-clippy test

# Fixes formatting and clippy issues
fix: fix-format fix-clippy
fix: format-fix clippy-fix zepter-fix

# Runs zepter feature checks, installing zepter if necessary
zepter:
Expand All @@ -51,7 +51,7 @@ check-format:
cargo +nightly fmt --all -- --check

# Fixes any formatting issues
fix-format:
format-fix:
cargo fix --allow-dirty --allow-staged
cargo +nightly fmt --all

Expand All @@ -60,7 +60,7 @@ check-clippy:
cargo clippy --all-targets -- -D warnings

# Fixes any clippy issues
fix-clippy:
clippy-fix:
cargo clippy --all-targets --fix --allow-dirty --allow-staged

# Builds the workspace with release
Expand Down