From bc4121a210af8a2b3d1e6d95b5824316b2422fe3 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Fri, 27 Mar 2026 20:06:15 +0900 Subject: [PATCH] fix: add pnpm install to init and pnpm oxlint to lint in justfile --- justfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/justfile b/justfile index 48f8708b..3974defd 100644 --- a/justfile +++ b/justfile @@ -10,6 +10,7 @@ alias r := ready init: cargo binstall watchexec-cli cargo-insta typos-cli cargo-shear@1.11.1 taplo-cli -y + pnpm install ready: git diff --exit-code --quiet @@ -39,6 +40,7 @@ test: lint: cargo clippy --workspace --all-targets --all-features -- --deny warnings + pnpm oxlint lint-linux: cargo-zigbuild clippy --workspace --all-targets --all-features --target x86_64-unknown-linux-gnu -- --deny warnings