From 96956a797b81f7bb0bd5c1816ab2092d6be2557e Mon Sep 17 00:00:00 2001 From: Zane Staggs Date: Wed, 18 Jun 2025 15:00:27 -0700 Subject: [PATCH 1/2] Added just lint-ui for linting front end code --- Justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Justfile b/Justfile index 4888fcd2b049..bcb31c9ccd9f 100644 --- a/Justfile +++ b/Justfile @@ -151,6 +151,11 @@ run-server: @echo "Running server..." cargo run -p goose-server +# make GUI with latest binary +lint-ui: + @just release-binary + cd ui/desktop && npm run lint:check + # make GUI with latest binary make-ui: @just release-binary From ea9c0bd9cba4c9f20929a8d5476807fb759ce3d0 Mon Sep 17 00:00:00 2001 From: Zane Staggs Date: Wed, 18 Jun 2025 15:01:36 -0700 Subject: [PATCH 2/2] remove copy paste line --- Justfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Justfile b/Justfile index bcb31c9ccd9f..1d06c817fc64 100644 --- a/Justfile +++ b/Justfile @@ -153,7 +153,6 @@ run-server: # make GUI with latest binary lint-ui: - @just release-binary cd ui/desktop && npm run lint:check # make GUI with latest binary