From ed3d129594ff9d25f5258b6678752ad288eef393 Mon Sep 17 00:00:00 2001 From: Lewis Date: Tue, 11 Aug 2026 20:14:26 +0300 Subject: [PATCH] just: clippy over all targets, lint the bsky-off build Lewis: May this revision serve well! --- justfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 0cb9050..ebc8618 100644 --- a/justfile +++ b/justfile @@ -16,12 +16,15 @@ build-release: check: cargo check clippy: - cargo clippy -- -D warnings + cargo clippy --all-targets -- -D warnings +lint-no-bsky: + cargo clippy -p tranquil-server --no-default-features --features frontend,postgres,s3,valkey --all-targets -- -D warnings + cargo clippy -p tranquil-pds --no-default-features --all-targets -- -D warnings fmt: cargo fmt fmt-check: cargo fmt -- --check -lint: fmt-check clippy +lint: fmt-check clippy lint-no-bsky test-store: SQLX_OFFLINE=true cargo nextest run -p tranquil-store --features tranquil-store/test-harness