From 64975e5b49a2aca0f6c21929d618ae98f8c92047 Mon Sep 17 00:00:00 2001 From: Wim Looman Date: Sat, 17 May 2025 11:44:13 +0200 Subject: [PATCH] Allow running `just lint-js --fix` --- Justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index bf243dd7f..14016ee71 100644 --- a/Justfile +++ b/Justfile @@ -14,5 +14,5 @@ sqlx-check: lint: cargo clippy --all-features --all-targets --workspace --locked -- -D warnings -lint-js: - deno run -A npm:eslint@9 static templates gui-tests eslint.config.js +lint-js *args: + deno run -A npm:eslint@9 static templates gui-tests eslint.config.js {{ args }}